It is just working the days in which the 4 Range chart has a 07 o'clock bar.
Is this the correct syntax?:
protected override void Initialize()
{
Add(PeriodType.Minute, 1);
}
protected override void OnBarUpdate()
{
if (BarsInProgress==1)
{
return;
}
if (ToTime(Times[1][0])==70000)
{
"Place Stop Orders..."
}
}
Thanks

Comment