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 462,295 views
    2. thumb_up 664 thanks given
    3. group 166 followers
    1. forum 474 posts
    2. attach_file 110 attachments




 
Search this Thread
  #371 (permalink)
 SK4949 
Houston
 
Experience: Intermediate
Platform: Ninja
Trading: Stocks
Posts: 13 since Jul 2013
Thanks Given: 4
Thanks Received: 2


Beljevina View Post
It goes into the \Indicator subdirectory. Then, bring up it or any other indicator in the editor, right click to compile, and all indicators - including the one you just placed there - will be recompiled, and it shall be in your indicator list.


Thanks got it. I loaded on a chart but nothing appears on the panel.


Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
400 Million Barrels to Address Middle East Supply Disruption
Commodities
The Week Ahead -- CPI Wednesday With Oil Past $90, PPI L …
Traders Hideout
The May 31 Binary: 60% Trump Declares Iran Ops Over, Onl …
Prediction Markets & Event Contracts
One Wallet Made $200K in Hours: AP Probes Polymarket Cea …
Prediction Markets & Event Contracts
Warsh Confirmed 54-45 on PPI Day -- 97% Say He Holds in …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
21 thanks
2026 Jlab journal
10 thanks
Trying to learn Volume and price action correlation
8 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Hello Im new here
5 thanks
  #372 (permalink)
 
Beljevina's Avatar
 Beljevina 
Toronto, Canada
 
Experience: Advanced
Platform: NinjaTrader, SierraCharts
Broker: Amp/CQG, IB
Trading: CL, GC, 6E, ES, RTY, EURUSD, GBPJPY, AUDUSD
Posts: 352 since Sep 2010


SK4949 View Post
Thanks got it. I loaded on a chart but nothing appears on the panel.

To have those red and blue boxed values appear, when the indicator is set to BINARY, it depends on GOM *.DAT files having been recorded via another GOM indicator that is writing/creating them. If you are not writing *.DAT files, you should be able to get reasonably accurate red and blue boxed values if you set the indicator's setting to NINJATICKFILE.


Follow me on X Reply With Quote
  #373 (permalink)
 
sudhirc's Avatar
 sudhirc 
detroit,mi
sc
 
Experience: Intermediate
Platform: NT
Broker: NT
Trading: ES
Frequency: Every few months
Duration: Hours
Posts: 417 since Sep 2011
Thanks Given: 1,709
Thanks Received: 473



cory View Post
tips:
5m chart
-yes, you can expand it to see the harsh marks better.
-track the harsh marks closely when they switch from - to + to feel the market mood.


@cory,

is it possible to have the hash (delta) to be colored. i.e Delta[0]>Delta[1], Color the hash as green else red.

i tried to insert here, but it did not work.

if (sells > 0 && buys > 0 )
{

if (!useBidAsk)
ratio = buys / prv ;
else
ratio = buys / (sells+buys);

deltaVol = prv * (ratio - .5);
Delta.Set(deltaVol);

//added the following lines
if(Delta[0]>Delta[1]) PlotColors[4][0] = Color.Lime;
else PlotColors[5][0] = Color.Red;

}

Thank you,
Sudhir


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


sudhirc View Post
...

is it possible to have the hash (delta) to be colored. i.e Delta[0]>Delta[1], Color the hash as green else red.

right after this line:

Delta.Set(deltaVol);

add:

if (Delta[0]>0)
PlotColors[4][0] = Color.Lime;
else
PlotColors[4][0] = Color.Red;


Reply With Quote
Thanked by:
  #375 (permalink)
 
Silvester17's Avatar
 Silvester17 
Columbus, OH
Market Wizard
 
Experience: None
Platform: NT 8, TOS
Trading: ES
Posts: 3,603 since Aug 2009
Thanks Given: 5,139
Thanks Received: 11,531

since those 2 indicators (price/volume and delta divergence) are using the same inputs, I think I'm going to pack them in one single indicator, with the option to choose either one.

maybe a good idea is to use it combined with a footprint chart. that way you got all the necessary data visible (delta, volume, etc)

so far it looks like this:


Reply With Quote
  #376 (permalink)
 chartman 
ottawa ontario canada
 
Experience: Intermediate
Platform: ninja trader
Broker: ninja trader brokerage
Trading: es
Posts: 100 since Sep 2009
Thanks Given: 17
Thanks Received: 23


Silvester17 View Post
since those 2 indicators (price/volume and delta divergence) are using the same inputs, I think I'm going to pack them in one single indicator, with the option to choose either one.

maybe a good idea is to use it combined with a footprint chart. that way you got all the necessary data visible (delta, volume, etc)

so far it looks like this:


this look good silvester will you be posting it for download
thanks


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

450T notes;


Reply With Quote
  #378 (permalink)
 yunakhan1 
ny ny
 
Posts: 4 since Oct 2009

Cory is it possible to post a script where you highlight background of your indicator for HH green and LL red? Thank you in advance.


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


yunakhan1 View Post
Cory is it possible to post a script where you highlight background of your indicator for HH green and LL red? Thank you in advance.

it is colored by RSIColoredv3, also my comments cover up the time of PV bars, here is the original chart with time on it, NY time.


Attached Thumbnails
Click image for larger version

Name:	2015-05-13_1544.png
Views:	442
Size:	11.5 KB
ID:	182682  
Attached Files
Elite Membership required to download: RSIColoredv3.cs
Reply With Quote
Thanked by:
  #380 (permalink)
 
cory's Avatar
 cory 
virginia
the coin hunter
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,093


Note that I use ninjatick file so you don't even have to wait for Gom file. The only diff between top panel and bottom panel is bottom panel also includes price action. Other than that they tell an identical story in their own way.


Attached Thumbnails
Click image for larger version

Name:	2015-05-15_1123.png
Views:	537
Size:	24.0 KB
ID:	182726  
Reply With Quote
Thanked by:




Last Updated on May 15, 2026


© 2026 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 - Downloads - Top
no new posts