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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
44 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
56 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
35 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
95 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
57 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment