Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Get # of Sessions
Collapse
X
-
Get # of Sessions
Hi guys, Is there a way to get the # of sessions that have occurred since a backtest started? My primary series is BetterRenko 4, but I want to test how many days have passed during the backtest for my primary series.Tags: None
-
Thanks, one other question, I want to get the close of two sessions ago, like PriorDayOHLC().PriorClose[x] but how do you get it to look back two sessions and not just 1?
Thanks
Comment
-
Hello elitetradernyc,
This is something also that would have to be calculated if you want to use the PriorDayOHCL() indicator as well.
Since you are checking for the start of a session you can save the bar that new session starts on so that you can reference it later inside of the PirorDayOHLC().PriorClose[x] so since you know what bar the session started on you can use the "CurrentBar" minus the variable that has the variable that is storing what bar the session you want to access it from.
Let me know if you have any questions.JCNinjaTrader Customer Service
Comment
-
You merely need to make sure that your reference bar is the day before.Originally posted by elitetradernyc View PostThanks, one other question, I want to get the close of two sessions ago, like PriorDayOHLC().PriorClose[x] but how do you get it to look back two sessions and not just 1?
Thanks
Code:PriorDayOHLC().PriorClose[GetBar(Time[0].AddDays(-1))]
Comment
-
Thanks, I was adding an array to store all the previous values and that really slowed down my backtests, perhaps ill try doing it another way.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
602 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
559 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
559 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment