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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
30 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
19 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment