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 cmoran13, 04-16-2026, 01:02 PM
|
0 responses
43 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
25 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
163 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
158 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment