Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plotting Pivot Points
Collapse
X
-
Plotting Pivot Points
I have developed a script that plots both the daily pivot points and the pivot midpoints. I have verified the calculations for the new midpoints. I am having a problem with the plots. I cannot seem to get the plots for either the pivots or midpoints to show on the price panel. I have used the original NT Pivots code as a reference, but still no luck. Even the original pivots fail to plot. When I comment out the midpoints, the original pivots appear. Any suggestions?Tags: None
-
Ah, yes.
"Error on plotting indicator 'PivotMidpoints'. Please check the 'Plot'
method: Index was outside the bonds of the array."
I'm new to programming so I'm a bit clueless on this one. I don't see in the code where a plot is called for. My guess is the following code specifies an array that uses the values from the individual variables.
Add(new Plot(Color.Black, "PP"));
Add(new Plot(Color.Blue, "R1"));
Add(new Plot(Color.Red, "S1"));
Add(new Plot(Color.Blue, "R2"));
Add(new Plot(Color.Red, "S2"));
Add(new Plot(Color.Blue, "R3"));
Add(new Plot(Color.Red, "S3"));
Do I need to add my additional variables in the Properties area similar to the following code?
[Browsable(false)]
[XmlIgnore]
public DataSeries R1
{
get { return Values[1]; }
}
///<summary>
///</summary>
[Browsable(false)]
[XmlIgnore]
public DataSeries R2
{
get { return Values[3]; }
}
Comment
-
This post might help - http://www.ninjatrader-support.com/v...ead.php?t=3170RayNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
43 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
29 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
46 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
38 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment