Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator using mixed colors
Collapse
X
-
Indicator using mixed colors
I am using an indicator which draws multiple chart lines (in this case a Bollinger) and need to set the draw properties (color, thickness, etc.) different for one part of the indicator (the Bollinger Middle) from the other parts. I have found how to do this modifing the properties of the indicator on the chart but I need to do it using Ninjascript in my strategy. How could I do this?Tags: None
-
You can try something like the following in the Initialize() method.
Code:Bollinger myBollinger = Bollinger(2, 14); // Assign the indicator to a temp variable myBollinger.Plots[1].Pen = new Pen(Color.Red, 2); // Change the pen of the middle plot to a color of red and width of 2 Add(myBollinger); // Add the indicator to the chart for display
RayNinjaTrader Customer Service
-
So we can make commands that modify individual indicator's properties. Can we also make commands that modify the overall chart properties? For instance, I am not use to seeing dates as dd.mm.yyyy on the x-axis and would like to be able to change it to mm.dd.yyyy
Better yet, is there a way I can change the default settings for this so I don't have to do it manually every time?Josh P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
58 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
143 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
161 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
97 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
276 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment