Recently, the MT5's toolbox has a new item, "economic calendar".
Are there functions that could handle the "economic calendar"?
Any information will be appreciated.
There aren't at this moment.
There aren't at this moment.
ok, thanks
Are there functions that could handle the "economic calendar" now?
NOW?
There aren't.
But you can get all objects OBJ_EVENT on the chart and try to find some information from name of object and description. It might be helpful.
void OnStart() { long cid=ChartID(); int ot=ObjectsTotal(cid,0,OBJ_EVENT); Print(ot," objects found."); for(int i=0;i<ot;i++) { string name=ObjectName(cid,i,0,OBJ_EVENT); Print(name,": ",ObjectGetString(cid,name,OBJPROP_TEXT)); } }
There aren't.
But you can get all objects OBJ_EVENT on the chart and try to find some information from name of object and description. It might be helpful.
I have asked this question several times, with no result so far.
There aren't.
But you can get all objects OBJ_EVENT on the chart and try to find some information from name of object and description. It might be helpful.
This is useful. However, we did need direct access ...

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Recently, the MT5's toolbox has a new item, "economic calendar".
Are there functions that could handle the "economic calendar"?
Any information will be appreciated.