Please test the indicator on 6B or other FX futures on a 30min chart.
And the document didn't explain the includesEndTimeStamp quite clearly, I thoutht the mothod code would be like this:
{
if (time >= sessionBeginTime && time <= sessionEndTime)
return true;
...
}
else
{
if (time >= sessionBeginTime && time < sessionEndTime)
return true;
...
}

Comment