Shows time when selected session will start.
SYNTAX
public TimeSpan GetBeginTime (DayOfWeek dayOfWeek,bool isShortedDay)
PARAMETERS
dayOfWeek — DayOfWeek
The name of the day of the week.
isShortedDay — bool
True if selected day is short end day.
RETURN
TimeSpan A System.TimeSpan whose value is the time when selected session will start.
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace TradingSessionClassExamples { public class TradingSessionClassExamples : NETStrategy { public override void OnQuote() { TradingSession[] ts; Instrument inst = Instruments.Current; ts=inst.GetTradingSessions(); for(int i=0;ts.Length-1>i;i++) { //Methods in TradingSession Class Print(ts[i].GetBeginTime(DayOfWeek.Monday,false)); Print(ts[i].GetEndTime(DayOfWeek.Friday,false)); //Properties in TradingSession Class Print(ts[i].IsIntraday); Print(ts[i].Name); Print(ts[i].Type); } } } }