protected override void Initialize()
{
Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "CIndy1"));
Add(new Line(Color.FromKnownColor(KnownColor.Lavender), 0.0, "Line"));
CalculateOnBarClose = true;
Overlay = false;
PriceTypeSupported = true;
}
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
if (CurrentBar<(2*periodMax)) return;
double[] AMDMR = new double[periodMax-periodMin+1];
double sum = 0;
for (int i=1;i<periodMax-PeriodMin+1;i++)
{
AMDMR[i]=Math.Abs(Momentum(Input,i)[0]/(MAX(High,i)[0]-MIN(Low,i)[0]));
sum=sum+AMDMR[i]/(periodMax-periodMin);
Print("AMDMR["+(i+periodMin)+"]="+AMDMR[i]);
Print(sum);
}
Print(sum);
CIndy1.Set(sum);
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
trouble with indicator error
Collapse
X
-
trouble with indicator error
log says there is an overflow with the plot method
Code:Tags: None
-
the problem seems to only pertain to the sum bit
it went away when i added other code
or set the indicator to close[0]
i had print() in there from the start it always printed fine, but the plot would only show on the first few days of the chart then disappear when you scrolled to the right.
once it disappeared you had to reload the scripts on the chart (after you scrolled left) for them to show again.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment