scott / Publications
Forum
Constant Declaration
Where withing mql5 are the chart timeframes declared? I want to add custom timeframes to use in my EA, but cant' find where I can add in new constants for Period_M**
Relearn MQL when moving from 4 to 5?
Hello! I used to write in mql4 and now coming back I'm having a very hard time getting my ea to work using mql5. One example, in the past I've been able to use something like this: for(int i=0;i<10;i++) { variable[i] = iMA(Symbol(),0,13,8,MODE_SMA,PRICE_MEDIAN,i); } This was great! I understand it
Understanding ObjectCreate() function.
if (iRSI5 <= 10 ) { //Up Arrow; bool ObjectCreate ( NULL , "Buy Arrow" , OBJ_ARROW_BUY , 0 ,Close[ 1 ],Low[ 1 ]); } I'm having trouble getting this to work. I am very new to programming and would love some guidance in terms of understanding the ObjectCreate()