&& (Times[3][0].TimeOfDay != EndTimeSet.TimeOfDay))
I am starting a plot calculation with a set TimeOfDay
This is or could be an extended Hours chart and has secondary dataseries ie Times[3][0]
The below starts the Plot as expected time
if (Times[3][0].TimeOfDay == TimeSet1.TimeOfDay)
Looking for way to end the Plot at the end of the session so that Plot is not shown into the next session prior to reset
THIS did not work with != EndTimeSet.TimeOfDay or with < EndTimeSet.TimeOfDay THE EndTimeSet is set to 4:10 PM ie 16:10
if ((Times[3][0].TimeOfDay == TimeSet1.TimeOfDay)
&& (Times[3][0].TimeOfDay != EndTimeSet.TimeOfDay))
Thanks

Comment