namespace NinjaTrader.NinjaScript.Indicators
{
public class PlotNotShowing : Indicator
{
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = "Test Indicator";
Name = "PlotNotShowing";
Calculate = Calculate.OnBarClose;
DrawOnPricePanel = false;
IsOverlay = false;
DisplayInDataBox = true;
PaintPriceMarkers = true;
AddPlot(new Stroke(Brushes.DarkCyan,2), PlotStyle.Bar,"MyVolume");
}
}
protected override void OnBarUpdate()
{
MyVolume[0] = Volume[0];
}
#region Properties
[Browsable(false)]
[XmlIgnore]
public Series<double> MyVolume
{
get { return Values[0]; }
}
#endregion
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plot not Showing up
Collapse
X
-
Plot not Showing up
This is a simple Indicator and the Plot seems to not show consistently. See screenshot attached:
Code:Tags: None
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
252 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
161 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
165 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
251 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
203 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment