I need a very simple indicator, that I mark the open price of 2 candles backwards. I tried to do it, but I still do not handle this language very well.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to create an indicator
Collapse
X
-
Hello heguilar,
Thanks for your post.
What do you mean by "backwards"? It seems like you are you trying to store the open values for two candles and then swap those values. Is this correct?
Please show me the code you have written so far so that I have a better idea of what you are trying to accomplish.
I look forward to your reply.Josh G.NinjaTrader Customer Service
-
Hello heguilar,
Thanks for your note.
You could plot Close[1] with your indicator by doing something similar to the following snippet.
I am including the relevant help guide documentation on how to accomplish this below, for your convenience.Code:protected override void OnStateChange() { if (State == State.SetDefaults) { AddPlot(Brushes.Orange, "MyPlot"); } } protected override void OnBarUpdate() { if (CurrentBar<1) return; Value[0] = Open[1]; }
AddPlot()
https://ninjatrader.com/support/help...s/?addplot.htm
Value
https://ninjatrader.com/support/help...-us/?value.htm
Please let me know if you have any questions.Josh G.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
232 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
149 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
161 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
243 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
198 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment