Trading Articles
Article Categories
Article Tools
Relative Volume Indicator
Updated March 25, 2019
Top Posters
looks_one
Fat Tails
with 47 posts (252 thanks)
looks_two
soulartist
with 13 posts (6 thanks)
looks_3
Cachevary
with 8 posts (0 thanks)
looks_4
Big Mike
with 5 posts (5 thanks)
Best Posters
looks_one
Fat Tails
with 5.4 thanks per post
looks_two
Silvester17
with 4 thanks per post
looks_3
Big Mike
with 1 thanks per post
looks_4
soulartist
with 0.5 thanks per post
trending_up
64,628 views
thumb_up
277 thanks given
group
51 followers
forum
106 posts
attach_file
15 attachments
Welcome to futures io: the largest futures trading community on the planet, with well over 125,000 members
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to
register in order to view the content of the threads and start contributing to our community.
It's free and simple.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Relative Volume Indicator
(login for full post details)
#101 (permalink )
Market Wizard
Berlin, Europe
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,855 since Mar 2010
Thanks: 4,238 given,
26,728
received
mgregor
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.
The following 6 users say Thank You to Fat Tails for this post:
(login for full post details)
#102 (permalink )
calgary canada
Experience: Advanced
Platform: ninja trader
Trading: CL, GC, ES
Posts: 21 since Oct 2012
Thanks: 34 given,
16
received
Fat Tails
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?
(login for full post details)
#103 (permalink )
Market Wizard
Berlin, Europe
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,855 since Mar 2010
Thanks: 4,238 given,
26,728
received
daytrader07
Any idea when you will be uploading this?
I have posted it in the download section two weeks ago.
The following 4 users say Thank You to Fat Tails for this post:
(login for full post details)
#104 (permalink )
Atlanta, GA, USA
Experience: Advanced
Platform: MC and Jigsaw
Trading: ES, MES
Posts: 1,834 since Mar 2013
Thanks: 3,000 given,
2,153
received
Fat Tails
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.
(login for full post details)
#105 (permalink )
Market Wizard
Berlin, Europe
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,855 since Mar 2010
Thanks: 4,238 given,
26,728
received
bmtrading9
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.
The following user says Thank You to Fat Tails for this post:
(login for full post details)
#106 (permalink )
prague, czech republic
Experience: Advanced
Platform: NinjaTrader
Trading: NQ
Posts: 158 since May 2012
Thanks: 46 given,
71
received
Fat Tails
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
(login for full post details)
#107 (permalink )
Market Wizard
Berlin, Europe
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,855 since Mar 2010
Thanks: 4,238 given,
26,728
received
emun
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.
Last Updated on March 25, 2019
Right now
Ongoing
Right now
March
Register to Attend
Elite only
Coming soon
April