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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
332 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment