non-standard time-frames work in Live Market? or it only for Offline chart?

Hello,

Article URL : https://docs.mql4.com/constants/chartconstants/enum_timeframes






These timeframe only work with offline start or it also work with live market?


MQL4:
if(iRSI(NULL,PERIOD_M1,14,PRICE_CLOSE,0)>overbought)
   OrderSend(x,x,x,x);

This works fine. But these additional time-frame will work for live market?


MQL4:
if(iRSI(NULL,PERIOD_M2,14,PRICE_CLOSE,0)>overbought)
OrderSend(x,x,x,x);
No, they don't. I'm not even sure you can use them for offline charts in MT4. Those timeframe constants are included for the code compatibility purpose.
 
  • 👍
Reactions: shanmugapradeep