Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
initialize and onstarup
Collapse
X
-
initialize and onstarup
I am using the indicator OHLC to get yesterdays values. On Initialize the strategy will not activate and if I call the OHLC on onstartup method i get zero values. It will work in on bar update. I just need to get the values once not every bar. what do I do?Tags: None
-
Hello ballboy, and thank you for your question. It sounds like you are trying to get at this indicator's data before it has data in it. You may need to tweak this code sample to fit your code, but I believe this will resolve your query.
Please let us know if it does not, or if there are any other ways we can help.Code:[FONT=Courier New] protected override void OnBarUpdate() { foreach(int CurrentBarForSeries in CurrentBars) { if (CurrentBarForSeries < 1) { return; } } // the rest of your OnBarUpdate code goes here }[/FONT]Jessica P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
72 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
39 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
63 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
63 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment