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,141 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!

  #221 (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

Hi kavklov,

Astute observation, would you please tell me which indicator you use to monitor the buy/sell % of the volume bars?
I know the Buy Sell Pessure Indicator will do the job.

TIA,
RF

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
What broker to use for trading palladium futures
Commodities
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Cheap historycal L1 data for stocks
Stocks and ETFs
ZombieSqueeze
Platforms and Indicators
REcommedations for programming help
Sierra Chart
 
  #222 (permalink)
kavklov
curitiba
 
Posts: 34 since Aug 2012
Thanks Given: 2
Thanks Received: 7


Royal Flush View Post
Hi kavklov,

Astute observation, would you please tell me which indicator you use to monitor the buy/sell % of the volume bars?

TIA,
RF

Hi RF

I use buy/sell volume indicator. The indicator does not give the % , I have to calculate it manually.

Reply With Quote
  #223 (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



kavklov View Post
Hi RF

I use buy/sell volume indicator. The indicator does not give the % , I have to calculate it manually.

There is an indicator called Buy Sell Pressure which will do the calculation for you.

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


Royal Flush View Post
There is an indicator called Buy Sell Pressure which will do the calculation for you.

Buy Sell pressure does not get the correct volume amount. If you compare that one with Volume Up Down and Cory's indicator you will see the difference.

Rgds.

Kavklov

Reply With Quote
  #225 (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,

I am a big fan of this indicator. I trade ES and German index. I would like to know if it is possible to have a version that it will show when a volume bar has more of 65% buy or sell.
I.E.: If a 5 minutes chart has a volume bar that sell > than buy, it will give an alert and vice versa for buy.
Why I am asking that? I notice that when the indicator gives an alert and the volume bar has more than 65% buy/sell the signal is more reliable.
Best rgds,

Kavklov

@kavklov where do you get that indi I can take a look.

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


cory View Post
@kavklov where do you get that indi I can take a look.

Hi Cory,

Please see attached the code for Volume Up Down.
Thks

Attached Files
Elite Membership required to download: Volume Up Down.txt
Reply With Quote
Thanked by:
  #227 (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,

Please see attached the code for Volume Up Down.
Thks

@kavklov the buy/sell volume color comes from this code;


Quoting 
if (Close[0] >= Open[0])
{
Values[0].Set(Volume[0]);
Values[1].Reset();
}
else
{
Values[1].Set(Volume[0]);
Values[0].Reset();
}

it just colors volume red or lime depending on whether price bar close >= open or close < open
the volume color will change when price bar is still forming.

here is the indi.

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


cory View Post
@kavklov the buy/sell volume color comes from this code;


it just colors volume red or lime depending on whether price bar close >= open or close < open
the volume color will change when price bar is still forming.

here is the indi.

Hi Cory,

I had this indi and it does not do what I want.
Take a look in the DAX print screen

Box 1: I am using Buy Sell Volume, even though it does not compute all the volume correctly. You can notice that the buy sell volume indi has a 460 bar, in which 268 (58%) sell and 192 (42%) buy. Even though there is more sell the Volume up down shows a green bar.

Box 2: Buy sell volume indi has a 324 bar, in which 215 (67%) sell and 195 (33%) buy. So the sell ratio is > 60%
The Volume up down bar is red and the price went down.

Box 3: Buy sell volume indi has a 181 bar, in which 57 (33%) sell and 124 (67%) buy. Your indi gave alert and Volume up down was green.
So this is the ideal situation. Buy / sell ratio > 60% (if you could change this setting it will be good) and your indi gave the alert.
Basically I think we need an indi that will get the correct amount of volume from the instrument, calculate the buy /sell ratio and give an alert. A bonus would be to have an option to increase ratio from 60% to 65%, 70% and so on.
Thanks a lot

Kavklov

Attached Thumbnails
Click image for larger version

Name:	DAX.png
Views:	445
Size:	80.5 KB
ID:	99691  
Reply With Quote
Thanked by:
  #229 (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

I see then the code you attached is not buysellvolume indi code.

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



cory View Post
I see then the code you attached is not buysellvolume indi code.

No, that one was from Volume up down, the one that gets the correct volume amount.

The buy sell volume I am attaching it now.

thks

Attached Files
Elite Membership required to download: Buysellvolume.txt
Reply With Quote
Thanked by:




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