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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
649 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 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
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment