jojocash / Publications
Forum
BROKER GMT+2
Which broker's Time zone was GMT+2?Like MT5 Demo account . Thank you
History Profit in MQL5 ?
How can I get History Profit in MQL5 ? This is MT4 code... Have any example ? Thank you. double Profit() { double pp; for ( int i= OrdersHistoryTotal ()- 1 ; i>= 0 ; i--) { if ( OrderSelect (i, SELECT_BY_POS , MODE_HISTORY )== true ) { if ( OrderSymbol ()== Symbol ()
Forex strategy e-magazine
Have any talk about Forex strategy e-magazine that can recommend me ? I live Asia, and very few that information here. Thank you
MT5 backtesting spread
Hello, How can I set fixed spreads in MT5 backtesting ? It's always floating? Thank you
Can I draw trailing stop line in MT5 EA?
If I buy this bar, and setting stop at low-20 point. Can I draw the line as trailing stop line in MT5 EA ? When the low higher that move trailing stop line. Have any example for this case can let me study? Thank you. Like this picture.
Open & Close button
Can I work Open & Close button EA in Strategy Tester Visualization ? Please help me use Open & Close button in in Strategy Tester Visualization. Thank you
HELP ME mt4 to mt5
I use MT4 this code was work well, but it can't work on MT5. Please teach me. Thank you. I just get MagicNumber. int MN() { int Maggic; for ( int i= 0 ;i< OrdersTotal ();i++) { if (! OrderSelect (i, SELECT_BY_POS , MODE_TRADES )) continue ; if ( OrderSymbol ()== Symbol
Please help me to fix this code
Hi, I want to get High & Low,like London Breakout strategy. But when MT4 up to Build 600, my code can't run. How can I fix it, Please help me, thx int startN1,endN1,i; extern int startN= 7 ,endN= 8 ; i= 1 ; while (TimeHour(iTime( 0 , 0 ,i))>endN) i++; endN1=i; if (startN== 0