Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
ADR indicator
Collapse
X
-
I found several indicators when searching the forums that may be useful for you. Please browse the first few pages of the search for 'average range' below to see if any of these indicators meet your needs:
If you find the NinjaTrader 7 indicator you were using but not a comparable NinjaTrader 8 version, can you provide the link to the NinjaTrader 7 indicator so I better understand exactly what you're seeking?
-
I assume your response implies that looking through my search and searching yourself did not result in any comparable indicators for what you're seeking?
I was able to create an analogous plot of what you're describing by adding the built in 'ATR' indicator to a daily chart. Here is an example:
World's leading screen capture + recorder from Snagit + Screencast by Techsmith. Capture, edit and share professional-quality content seamlessly.
Is this what you're looking for?
Comment
-
Sorry for delay in replying, had some personal issues to take care of.
For an idea of what I mean, take a look at the following;
Comment
-
Hello,
The product referenced in the video can be found from a NinjaTrader Ecosystem vendor at the following link: https://www.indicatorwarehouse.com/n...or/day-ranger/
Originally posted by falcs View PostSorry for delay in replying, had some personal issues to take care of.
For an idea of what I mean, take a look at the following;
Jared M.NinjaTrader Customer Service
Comment
-
This is an ADR indicator for ninjatrader 8 and it even sends notifications when the ADR is reached, also notifies of high reversal probabilities: https://trading2society.com/t2ssmartadrLast edited by kmlneo; 03-12-2019, 03:35 AM.
Comment
-
Hi,
Here is a free one for version 8. I think it's ok but this is the first time I ever wrote something for Ninjatrader. I didn't care to export it, just paste the code here below.
------------
namespace NinjaTrader.NinjaScript.Indicators
{
public class ADR : Indicator
{
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = @"Enter the description for your new custom Indicator here.";
Name = "ADR";
Calculate = Calculate.OnBarClose;
IsOverlay = false;
DisplayInDataBox = true;
DrawOnPricePanel = true;
DrawHorizontalGridLines = true;
DrawVerticalGridLines = true;
PaintPriceMarkers = true;
ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
//Disable this property if your indicator requires custom values that cumulate with each new market data event.
//See Help Guide for additional information.
IsSuspendedWhileInactive = true;
Lookback = 20;
AddPlot(Brushes.Green, "Value");
}
else if (State == State.Configure)
{
}
}
protected override void OnBarUpdate()
{
if (CurrentBar < Lookback)
return;
else
{
double sum = 0;
for (int i=0; i<Lookback; i++)
sum = sum + (High[i]/Low[i]);
Value[0] = 100*((sum/Lookback)-1);
}
}
#region Properties
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name="Lookback", Order=1, GroupName="Parameters")]
public int Lookback
{ get; set; }
#endregion
}
}
Comment
-
#falcs
See attached
I believe it does what you're wanting.
Have been using it a long time without problems
KRAttached Files
Comment
-
Hi all why doesn't NT8 have a built in ADR=Average Daily Range indicator?
Does anyone have one to share that will plot the ADR High and Low on the price chart?
Thanks in advance
I want to have the ADR High and Low plotted on the chart, like this(I manually put these lines on the chart) for the example
Last edited by sonia0101; 05-16-2022, 05:38 PM.
Comment
-
#sonia0101
See attached,. Not simply what you want, but may be helpful.
Not mine, never used it, publicly available on that other well-known repository of such things. You might want to check out the Notes there if you're minded to use it.
Alternatively pop over to the coding part of the forum along with Cory's I posted above and ask someone to help you add painting a couple of lines to that one - can't be that hard, albeit above my pay grade.
LizardIndicators also have an indicator that draws ADR & noise projections etc. Pay Lizard a small fee. or join FIO Elite to download.
I have no affiliations to anything or one, just spreading the love.
Best,Attached FilesLast edited by brucerobinson; 05-17-2022, 02:18 PM.
- Likes 1
Comment
-
Hello brucerobinson,
I downloaded a file you posted on the forum the coryadr file and i cant seem to get it to plot anything on the charts? also I cant get it to pull up on the ninja script editor to delete. would you have any idea how i could use or delete the file?? thanks.
Comment
-
whatever you do, don't pay for an ADR indicator. If there is a machine ID change they will undoubtedly make you pay to change the license. Lizardindicators has a free version which works as it should. Not only that it gives you yesterdays High and Low and other useful info for day trading.Originally posted by kmlneo View PostThis is an ADR indicator for ninjatrader 8 and it even sends notifications when the ADR is reached, also notifies of high reversal probabilities: https://trading2society.com/t2ssmartadr
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
649 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment