TradingSession CLASS

IsIntraday PROPERTY (bool)
Return true if the selected session is intraday; otherwise, false. False mean overnight period. SYNTAX public bool IsIntraday { get; } EXAMPLE ...
Sun, May 6, 2018 at 12:53 PM
Name PROPERTY (string)
Name of the session. SYNTAX public string Name { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generic; us...
Sun, May 6, 2018 at 12:58 PM
Period PROPERTY (DayPeriod)
Type of the session. SYNTAX public DayPeriod Period { get; } EXAMPLE using System; using System.Collections; using System.Collections.Generi...
Sun, May 6, 2018 at 12:59 PM
GetBeginTime (DayOfWeek dayOfWeek, bool isShortedDay) METHOD (Return: TimeSpan)
Shows time when selected session will start. SYNTAX public TimeSpan GetBeginTime (DayOfWeek dayOfWeek,bool isShortedDay) PARAMETERS dayOfWee...
Sun, May 6, 2018 at 1:00 PM
GetEndTime (DayOfWeek dayOfWeek, bool isShortedDay) METHOD (Return: TimeSpan)
Shows time when selected session will end. SYNTAX public TimeSpan GetEndTime (DayOfWeek dayOfWeek,bool isShortedDay) PARAMETERS dayOfWeek — ...
Sun, May 6, 2018 at 1:02 PM