Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Reference to indicator color
Collapse
X
-
Reference to indicator color
I am trying to build a strategy that refers to the plot color because the indicator (and others like it) doesn't output any specific values that can be used as a trigger (not that I can figure anyway), only changes color. I am setting up the formula as shown in picture, plot [0] == blue [0], but that doesn't seem to work, i.e. the sound doesn't play when the color changes to blue. I tried looking at the code of the indicator to see if I could change it so that it output a different number for each color, but no joy at this point. I would appreciate any help. Thank you.Tags: None
-
I get why it's not working now, cause blue, pink, etc. is not the result of plot[0] but separate outputs. Hmmm.
-
So I tried adding this:
Plot1.Set(Value[0] < Close[0] ? 0 : (Value[0] > Close[0] ? 1 : 2));
and this
Plot1.Set(Values[1][0] = Value[0] ? 0 : (Values[2][0] = Value[0] ? 1 : 2));
to the original code (not at the same time), but it did't like either one. It gives me error code CS0103, which says I most likely have a typo, but I don't think that is the problem. Thank you.
Comment
-
-
Figured that part out, but still working on the overall concept, will post if anything worthwhile. Thanks.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
627 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
359 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
562 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
567 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment