2022-04-01 07:51:35:888|3|4|Indicator 'SupportandResistanceDetection': Error on calling 'CalculateMinMax' method on bar 6032: Index was outside the bounds of the array.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
A Min/Max error
Collapse
X
-
A Min/Max error
For the first time, I am attempting to assign Close[0] and a price to two signals in an indicator to pass to a Strategy rather than just -0- or -1-. I was hoping to get an answer from the Strategy Builder as to how to solve this problem but it didn't work. Can you help me resolve this error?
2022-04-01 07:51:35:888|3|4|Indicator 'SupportandResistanceDetection': Error on calling 'CalculateMinMax' method on bar 6032: Index was outside the bounds of the array.Tags: None
-
Chris,
I had assumed that it would be as simple as a change in the property declaration. A message that I received while exporting says that it can only be imported to a PC where a third party vendor indicator is loaded and I seriously doubt you will have that IT indicator so I am gong to copy a typical entry from the indicator and my Property declaration.
AddPlot(new Stroke(Brushes.Transparent, 2), PlotStyle.Bar, "SandRSignal");
AddPlot(new Stroke(Brushes.Transparent, 2), PlotStyle.Bar, "PivotSignal");
else if (Close[0] <= (IT_FTreset1.S2[0] + (Zone * TickSize)) && (Close[0] >= (IT_FTreset1.S2[0])))
{
SandRSignal[0] = Close[0];
PivotSignal[0] = IT_FTreset1.S2[0] ;
}
[Browsable(false)]
[XmlIgnore]
public Series<double> SandRSignal
{
get { return Values[0]; }
}
[Browsable(false)]
[XmlIgnore]
public Series<double> PivotSignal
{
get { return Values[1]; }
}Attached Files
Comment
-
Hi galsermil, thanks for posting that. I can not test this for myself because of the custom indicator being used, but I would have to guess the OnCalculateMinMax error is coming from one of these custom indicators. You will need to reduce the strategy, taking out one indicator at a time to see which one is throwing this error. You can also change around the parameters you are sending to each of these indicators to see if you can avoid this error. Once you find the indicator causing the issue, ask the developer what could be wrong here as they are the only ones that have the source ocde.
Kind regards,
-ChrisL
Comment
-
Chris,
I can be as wrong as I can be but I believe that it is my indicator causing the error as I have used the same signals for the past two or three weeks but I was assigning values of either 1 or 0 so what has changed is the size of the value being assigned.
Comment
-
Hi galsermil, your strategy is not overriding OnCalculateMinMax, so it's one of the custom indicators. You should reduce the strategy one indicator at a time to confirm this. If you do not want to change the original file, right-click the code>Save As>give it a new name. This will make a copy of it so you can change it without changing the original file.
Comment
-
Hi galsermil, I am not seeing this SupportandResistanceDetection indicator being used anywhere in the strategy or in the other OBOS indicator. Where is this being used? The good part of this is that the SupportandResistanceDetection is open source, so you can reduce this one as well. Does this same issue happen if you simply remove the use of the IT_FTreset indicator from that indicator?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
52 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
70 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment