
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
I use this code as Trading Times filter . But I need to add Minute section like 09:15 ...
Any suggestion ?
------------------------------------
extern bool UseHourTrade = True;
extern int FromHourTrade = 9;
extern int ToHourTrade = 11;
if (UseHourTrade){
if((Hour()>=FromHourTrade)&&(Hour()<=ToHourTrade))
Comment("Trading Hours");
else
{
Comment("Non-trading Hours");
return(0);
}
}