// The session template's timezone
Print("The session time zone is: " + Bars.Session.TimeZoneInfo.Id)
// On the start of a new session, get the next session's begin and end times
if (Bars.SessionBreak)
Bars.Session.GetNextBeginEnd(Time[0], out sessionBegin, out sessionEnd);
Print("Next Session Start: " + sessionBegin + " Next Session End: " + sessionEnd);
Please clarify (and update the help). Thanks!

Comment