Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
[NT8] SMA with color based on slope.
Collapse
X
-
Hello Drtro,
Thank you for your inquiry.
You would be able to utilize the Slope() method call, and based on the return value, change the color of your plots.
We have a reference sample on our support forum that details multi-colored plots: http://ninjatrader.com/support/forum...ead.php?t=3227
As an example:
Please, let us know if we may be of further assistance.Code:// if the slope of the line of a 20 period SMA in the last 10 bars is more than 0.5, change the plot to black if (Slope(SMA(20), 10, 0) > 0.5) PlotBrushes[0][0] = Brushes.Black;Zachary G.NinjaTrader Customer Service
-
It works. How do I make the colors variable to be able to change in the indicator settings?Originally posted by NinjaTrader_ZacharyG View PostHello Drtro,
Thank you for your inquiry.
You would be able to utilize the Slope() method call, and based on the return value, change the color of your plots.
We have a reference sample on our support forum that details multi-colored plots: http://ninjatrader.com/support/forum...ead.php?t=3227
As an example:
Please, let us know if we may be of further assistance.Code:// if the slope of the line of a 20 period SMA in the last 10 bars is more than 0.5, change the plot to black if (Slope(SMA(20), 10, 0) > 0.5) PlotBrushes[0][0] = Brushes.Black;
Comment
-
Hello Drtro,
We do have a post on our Tips section that provides information on how to allow a Brush to be a user defined input: http://ninjatrader.com/support/forum...43&postcount=2
Please, let us know if we may be of further assistance.Zachary G.NinjaTrader Customer Service
Comment
-
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
129 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
74 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
117 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
111 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
89 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment