Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
plots problem
Collapse
X
-
plots problem
I'm having a strange problem where I am adding 4 Plots to my code but one more Plot inserted at 0 place not from my code scope. When I debug the code the additional Plot is not from my code at all. Any idea where to start to solve the problem?Tags: None
-
sorry don't undestand: I what to have 4 plots as follows in Initialize() :
Add(new Plot(Color.Blue, "Plot1"));
Add(new Plot(Color.Orange, "Plot2"));
Add(new Plot(Color.DarkViolet, "Plot3"));
Add(new Plot(Color.DarkViolet, "Plot4"));
in the graph I have 5 plots including additional "PLOT" which is located in Values[0].
Overlay = true;
Comment
-
/// <summary>
/// Lower band of Standard Error
/// </summary>
[Browsable(false)]
[XmlIgnore]
public Data.DataSeries Plot1
{
get { return Values[0]; }
}
[Browsable(false)]
[XmlIgnore]
public Data.DataSeries Plot2
{
get { return Values[1]; }
}
[Browsable(false)]
[XmlIgnore]
public Data.DataSeries Plot3
{
get { return Values[2]; }
}
/// <summary>
/// Upper band of Standard Error
/// </summary>
[Browsable(false)]
[XmlIgnore]
public Data.DataSeries Plot4
{
get { return Values[3]; }
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
173 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
129 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
208 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment