GetEndTime (DayOfWeek dayOfWeek, bool isShortedDay)
method
Shows time when selected session will end.
Syntax
public TimeSpan GetEndTime (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 end.
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);
}
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.