found customer indicator for changing color of EMA line when slope changes . . . any way to also change [dash styel]->solid . . . to . . . [dash style]->DashDotDot also depending on up-slope vs dn-slope ? ? ?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how to change EMA from [dash style]->solid . . . to . . . [dash style]->DashDotDot?
Collapse
X
-
how to change EMA from [dash style]->solid . . . to . . . [dash style]->DashDotDot?
. . . . . . DashStyleHelper.DashDotDot ? ? ?
found customer indicator for changing color of EMA line when slope changes . . . any way to also change [dash styel]->solid . . . to . . . [dash style]->DashDotDot also depending on up-slope vs dn-slope ? ? ?
Tags: None
-
Hello slingonce,
Thanks for your post.
No, a plot can only have one dashstyle, just like it can only have one plotstyle and one width for the entire plot.
If an alternating pattern is needed/desired, an alternative would be to use two separate plots and only plot one or the other at any point to achieve the effect you are looking for. For example:
if (some condition for dots)
{
PlotDots[0] = some value; // where PlotDots would created as a plot with dashstyle dots
}
else
{
PlotSolid[0] = some value; // where PlotSolid was created as a plot with a dashstyle of solid
}
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
256 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
166 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
170 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
253 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
203 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment