Alert("Volume Alert", NinjaTrader.Cbi.Priority.High,Instrument.FullName+": Volume above threshold", "Alert1.wav", 10, Color.White, Color.Yellow);
if (Open[0]<=Close[0])
DrawArrowDown("tag_"+CurrentBar.ToString(), true, 0, High[0]+1*TickSize, Color.Red);
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
plot an oscillator on a signal
Collapse
X
-
plot an oscillator on a signal
I have an indicator that plots buy/sell signals How can i plot oscillator on a signals over time? the values of the oscillator can simply be 1 for buys and -1 for sells ... so basically an indicator on an indiocator....the code looks something like thisCode:Tags: None
-
Hello,
Thank you for the question.
I wanted to clarify this question, I will explain how I have understood the question, can you provide details to let me know if my thinking is correct?
I understand this as you have an indicator that is drawing arrows when your condition is true. You are trying to plot a line based on this indicators arrows or the more specifically the condition that causes the arrow. Is this correct?
I look forward to being of further assistance.
-
Hello,
For a 1 or 0 a bar generally is the easiest to see, for this the best example would be the VOL indicator that comes with NinjaTrader.
Looking at the code you will see 2 sections of code that contribute to plotting a value.
This creates a Plot that can be used.Code:protected override void Initialize() { Add(new Plot(new Pen(Color.Blue, 2), PlotStyle.Bar, "Volume")); Add(new Line(Color.DarkGray, 0, "Zero line")); }
Value would be the default name for the first or single plot in an indicator, please see the following link for more information;Code:protected override void OnBarUpdate() { Value.Set(Volume[0]); }
You could simply set the value when the condition becomes true to 1 and that would make a 1 value bar plotted.
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
315 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
253 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
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment