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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
31 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
17 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment