NexusFi: Find Your Edge


Home Menu

 





Relative Volume Indicator


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Fat Tails with 47 posts (253 thanks)
    2. looks_two soulartist with 13 posts (6 thanks)
    3. looks_3 Cachevary with 8 posts (0 thanks)
    4. looks_4 Big Mike with 5 posts (5 thanks)
      Best Posters
    1. looks_one Fat Tails with 5.4 thanks per post
    2. looks_two Silvester17 with 4 thanks per post
    3. looks_3 Big Mike with 1 thanks per post
    4. looks_4 soulartist with 0.5 thanks per post
    1. trending_up 87,693 views
    2. thumb_up 278 thanks given
    3. group 50 followers
    1. forum 106 posts
    2. attach_file 15 attachments




 
Search this Thread

Relative Volume Indicator

  #101 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


mgregor View Post
I recently added anaRelativeVolumeV23 to my NT8 chart. Maybe since your conversion something has changed in NT8, but I find it having some issues.
1. When I restart NT8, this indicator is no longer present on my chart and I have to add it again.
2. I think there might be a memory leak or something else. At times my system hangs/freezes. When I remove the indicator, then the problem doesn't happen.
3. I know of one other trader who is also experiencing these problems.

I know @Fat Tails is working on updating many of the ana indicators, is this going to be part of the update? Any new date on when it might come out?

Mark are you experiencing these problems? Can you take a look at it?

I am running with the latest and greatest version of NT8.

Any help will be greatly appreciated.


I have seen the anaRelativeVolumeV23 for NinjaTrader 8. It has a number of bugs. I kindly ask the author not to use the prefix "ana" for any of his indicators. NinjaTrader best coding practices specify that the prefix should be used to identify the author of an indicator or strategy. Please feel free to copy my indicators whenever you feel like it, but do not use the same prefix. :-)

I have already converted the Relative Volume and Relative Ranges indicator to NinjaTrader 8 and will post them in the download section of this forum. I haven't started to do so, because I am still updating the indicators. Mostly testing them for Renko bars and tick replay.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Better Renko Gaps
The Elite Circle
REcommedations for programming help
Sierra Chart
Quant vue
Trading Reviews and Vendors
How to apply profiles
Traders Hideout
 
  #102 (permalink)
 
daytrader07's Avatar
 daytrader07 
calgary canada
 
Experience: Advanced
Platform: ninja trader
Trading: CL, GC, ES
Posts: 21 since Oct 2012
Thanks Given: 34
Thanks Received: 16


Fat Tails View Post
I have seen the anaRelativeVolumeV23 for NinjaTrader 8. It has a number of bugs. I kindly ask the author not to use the prefix "ana" for any of his indicators. NinjaTrader best coding practices specify that the prefix should be used to identify the author of an indicator or strategy. Please feel free to copy my indicators whenever you feel like it, but do not use the same prefix. :-)

I have already converted the Relative Volume and Relative Ranges indicator to NinjaTrader 8 and will post them in the download section of this forum. I haven't started to do so, because I am still updating the indicators. Mostly testing them for Renko bars and tick replay.

Any idea when you will be uploading this?

Reply With Quote
  #103 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103



daytrader07 View Post
Any idea when you will be uploading this?

I have posted it in the download section two weeks ago.

Reply With Quote
  #104 (permalink)
 bmtrading9 
Atlanta, GA, USA
Market Wizard
 
Experience: Advanced
Platform: MC and Jigsaw
Trading: ES, MES
Posts: 1,833 since Mar 2013
Thanks Given: 3,001
Thanks Received: 2,159


Fat Tails View Post
I have posted it in the download section two weeks ago.

Do you have similar one for easy language? I use Multicharts and not able to find something similar.

Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #105 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


bmtrading9 View Post
Do you have similar one for easy language? I use Multicharts and not able to find something similar.

I am not coding any Easy Language indicators.

Reply With Quote
Thanked by:
  #106 (permalink)
 emun 
prague, czech republic
 
Experience: Advanced
Platform: NinjaTrader
Trading: NQ
Posts: 165 since May 2012
Thanks Given: 49
Thanks Received: 74


Fat Tails View Post
I have posted it in the download section two weeks ago.

Hello @Fat Tails,

your indicator amaRelativeVolume works fine, but it seems that bool variable showRelativeVolume makes nothing… There is missing something in the script. I would suggest something like this (it is from line 674 of the script) /changes are bold/:

if(referenceVolume.IsValidDataPoint(0))
{
RelativeVolume[0] = 100 * Volume[0] / referenceVolume[0];

if(showRelativeVolume == true)
{
if(RelativeVolume[0] > upperThreshold)
PlotBrushes[0][0] = highVolumeBrush;
else if(RelativeVolume[0] < lowerThreshold)
PlotBrushes[0][0] = lowVolumeBrush;
else
PlotBrushes[0][0] = mediumVolumeBrush;
}
if(showRelativeVolume == false)
{
PlotBrushes[0][0] = Brushes.Transparent;
}


What do you think about it…?
Thank you
emun

Reply With Quote
  #107 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


emun View Post
Hello @Fat Tails,

your indicator amaRelativeVolume works fine, but it seems that bool variable showRelativeVolume makes nothing… There is missing something in the script. I would suggest something like this (it is from line 674 of the script) /changes are bold/:

if(referenceVolume.IsValidDataPoint(0))
{
RelativeVolume[0] = 100 * Volume[0] / referenceVolume[0];

if(showRelativeVolume == true)
{
if(RelativeVolume[0] > upperThreshold)
PlotBrushes[0][0] = highVolumeBrush;
else if(RelativeVolume[0] < lowerThreshold)
PlotBrushes[0][0] = lowVolumeBrush;
else
PlotBrushes[0][0] = mediumVolumeBrush;
}
if(showRelativeVolume == false)
{
PlotBrushes[0][0] = Brushes.Transparent;
}


What do you think about it…?
Thank you
emun


You are correct. I have made an update and will post it.

Reply With Quote




Last Updated on March 25, 2019


© 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