Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Adding Indicator to Chart Question
Collapse
X
-
Adding Indicator to Chart Question
I know you can add an indicator to a chart in a strategy. Can you also stipulate the color and width of the lines? For example, if I wanted to add SMA to my chart, in my strategy, under the protected override void Initialize() section, I can simply put "Add(SMA(5)); ........ but can I add something to this line to make in a color of red with a width of 3?Tags: None
-
Hello edgeliner,
Yes, you can do it.
For example if you are adding an SMA then you can set the color and the width using the below code
Please let me know if I can assist you any further.Code:protected override void Initialize() { SMA(14).Plots[0].Pen.Color = Color.Green; SMA(14).Plots[0].Pen.Width = 3; Add(SMA(14)); //rest of the code }JoydeepNinjaTrader Customer Service
-
Hello edgeliner,
You have to use the appropriate plot index to do it. Please use the below code to do it
Please let me know if I can assist you any further.Code:this.Bollinger(2,14).Plots[2].Pen.Color = Color.Black; this.Bollinger(2,14).Plots[1].Pen.Color = Color.Black; this.Bollinger(2,14).Plots[0].Pen.Color = Color.Red; Add(this.Bollinger(2,14));
JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
23 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
115 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
222 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
406 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|

Comment