Print(PriorDayOHLC().PriorLow[1]);
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
PriorDayOHLC
Collapse
X
-
Hello cay7man,
Thank you for your post.
What is your input series for this script? Please see this forum post that explains indexing for PriorDayOHLC():
Creating an intraday strategy (10 min bars): Does PriorDayOHLC.PriorClose[0] (index 0) give the close of the last intraday bar while PriorDayOHLC.PriorClose[1] gives the close of the last session? Also, I notice that PriorDayOHLC.PriorClose and PriorDayOHLC.PriorOpen does not give the same values as the Open and Close of a
Your code will print the prior session's low according to 1 bar ago.
From the Help Guide:
// Prints the value of the prior session low
double value = PriorDayOHLC().PriorLow[0];
Try providing 0 for the barsAgo (the current bar processing). Are you still getting an incorrect value?
I look forward to your response.
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
217 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
133 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
147 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
233 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
192 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
Comment