NexusFi: Find Your Edge


Home Menu

 





Cory's VolumeStopV3 (and now V4) - Worth A Look!


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one cory with 173 posts (430 thanks)
    2. looks_two kavklov with 34 posts (7 thanks)
    3. looks_3 Royal Flush with 32 posts (10 thanks)
    4. looks_4 Silvester17 with 16 posts (42 thanks)
      Best Posters
    1. looks_one Fat Tails with 6 thanks per post
    2. looks_two Silvester17 with 2.6 thanks per post
    3. looks_3 cory with 2.5 thanks per post
    4. looks_4 supermht with 1.7 thanks per post
    1. trending_up 233,233 views
    2. thumb_up 663 thanks given
    3. group 166 followers
    1. forum 473 posts
    2. attach_file 110 attachments




 
Search this Thread

Cory's VolumeStopV3 (and now V4) - Worth A Look!

  #271 (permalink)
 
Royal Flush's Avatar
 Royal Flush 
Stanstead, Quebec, Canada
 
Experience: Intermediate
Platform: NinjaTrader
Trading: CL
Posts: 122 since Dec 2010
Thanks Given: 71
Thanks Received: 64


cory View Post
BSellVolTriangle shows color triangle on live bar only, white color if it is historical bar or not meeting ratio criteria.

Thanks Cory, given VolumeStop calculates on bar close and it's triangle has the same offset as BSellVolTriangle, which does not calculate on bar close, their triangles are superimposed, with VolumeStop on top when a good signal is produced. A possible resolution may be to adjust the offfset of the BSellVolTraingle.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
REcommedations for programming help
Sierra Chart
MC PL editor upgrade
MultiCharts
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
 
  #272 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

you can adjust the distance of triangle by changing all code from
1*TickSize
to
2*TickSize
or
3*TickSize etc..

----------------------------------------------
if (ratio >= maxRatio )
{
DrawTriangleUp("Stop"+CurrentBar ,true, 0, Low[0] - 1*TickSize, Color.Blue);
}
else
if (ratio2 >= maxRatio )
{
DrawTriangleDown("Stop" +CurrentBar,true, 0, High[0] + 1*TickSize, Color.Red);
}
else
DrawTriangleDown("Stop" +CurrentBar,true, 0, High[0] + 1*TickSize, Color.White);
}

Reply With Quote
  #273 (permalink)
 
Royal Flush's Avatar
 Royal Flush 
Stanstead, Quebec, Canada
 
Experience: Intermediate
Platform: NinjaTrader
Trading: CL
Posts: 122 since Dec 2010
Thanks Given: 71
Thanks Received: 64



cory View Post
you can adjust the distance of triangle by changing all code from
1*TickSize
to
2*TickSize
or
3*TickSize etc..

----------------------------------------------
if (ratio >= maxRatio )
{
DrawTriangleUp("Stop"+CurrentBar ,true, 0, Low[0] - 1*TickSize, Color.Blue);
}
else
if (ratio2 >= maxRatio )
{
DrawTriangleDown("Stop" +CurrentBar,true, 0, High[0] + 1*TickSize, Color.Red);
}
else
DrawTriangleDown("Stop" +CurrentBar,true, 0, High[0] + 1*TickSize, Color.White);
}

I could then adjust the TickSize to 0 and have the VolStop triangles on the same level as the subsequent dots?

Reply With Quote
  #274 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


Royal Flush View Post
I could then adjust the TickSize to 0 and have the VolStop triangles on the same level as the subsequent dots?

0*TickSize will plot triangle right at high or low of a bar.

Reply With Quote
Thanked by:
  #275 (permalink)
 
Royal Flush's Avatar
 Royal Flush 
Stanstead, Quebec, Canada
 
Experience: Intermediate
Platform: NinjaTrader
Trading: CL
Posts: 122 since Dec 2010
Thanks Given: 71
Thanks Received: 64


cory View Post
0*TickSize will plot triangle right at high or low of a bar.

I changed the triangle offset to 0 on all triangle plots on VolStop, then compiled and saved it. It continues to plot with the same off set as before. I then applied the indicators on each individual chart and the triangle now prints with the dots, thanks Cory.

Reply With Quote
  #276 (permalink)
kavklov
curitiba
 
Posts: 34 since Aug 2012
Thanks Given: 2
Thanks Received: 7

HI Cory,

The second BSellVolume indicator is working well, this was the one that you made from volume Up and Down.
I would like to know if you could do a signaling indi like the BSellVolTriangle.
I am attaching the code.
Since the Triangle is mixing with the VolStop (your indi) triangle, maybe it will be better to find another way to put a signal. What do you think of a color bar in the candle? or changing the candle color?
Thanks a lot

Kavklov

Attached Files
Elite Membership required to download: BSellVol2.txt
Reply With Quote
  #277 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


kavklov View Post
HI Cory,

The second BSellVolume indicator is working well, this was the one that you made from volume Up and Down.
I would like to know if you could do a signaling indi like the BSellVolTriangle.
I am attaching the code.
Since the Triangle is mixing with the VolStop (your indi) triangle, maybe it will be better to find another way to put a signal. What do you think of a color bar in the candle? or changing the candle color?
Thanks a lot

Kavklov

more advance version of buy/sell total volume it can save data so you can even see history plotting. However it requires GOM indicator installation. GOM installation is not that easy for some.

Reply With Quote
  #278 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

A quick fix, plot dots on bar instead of triangles to avoid volstop signal confusion.

Attached Files
Elite Membership required to download: BSellVolDot.zip
Reply With Quote
Thanked by:
  #279 (permalink)
kavklov
curitiba
 
Posts: 34 since Aug 2012
Thanks Given: 2
Thanks Received: 7


cory View Post
A quick fix, plot dots on bar instead of triangles to avoid volstop signal confusion.

Hi Cory,

Thanks a lot. I guess this is the 1st Sellvol, right?

Reply With Quote
  #280 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090



kavklov View Post
Hi Cory,

Thanks a lot. I guess this is the 1st Sellvol, right?

the logic is; if buy or sell > set % plot a dot

Reply With Quote




Last Updated on February 18, 2024


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts