- Search Forex Factory
- 126 Results (6 Threads , 120 Replies )
- hanzov replied Oct 21, 2016
You would have..but quality of the converted code is very low. What do you want to achieve with conversion mgl to Java?
Can you convert an EA (mt4) into java code?
- hanzov replied Oct 20, 2016
What means convert... You can convert logic, but not interaction with MT4.
Can you convert an EA (mt4) into java code?
- hanzov replied Oct 14, 2016
something like int opened_orders =0; String symbol = "......."; // put here tour symbol for(int i = 0; i<OrdersTotal() ; i++) { if( OrderSelect(i, SELECT_BY_POS, MODE_TRADES) && OrderSymbol() == symbol) { opened_orders++; } } if ( opened_orders < ...
Limiting EA to 2 open orders per pair
- hanzov replied Sep 21, 2016
Why you need this conversion? mql is a simplified C++ version. It has not sense to convert mql., because you lost ability to work inside MT platform. It has sense to use C++ or Java.( not delphi) if you are creating the autonomous software working ...
Good backtesting software
- hanzov replied Jul 5, 2016
Are you speaking on "Market Bridge between MQL4 and C++."? url
C++ MQL4 Forex Harvester
- hanzov replied Jul 3, 2016
My country is inside 5-th or 6-th category at this world , may be, it is a reason , MQ doesnot supply backtester with long-period history data )
Tiger EA
- hanzov replied Jul 2, 2016
As a rule, examples from the MQL5 free robots section and other free resources are so far from perfect results. But it is on;y warning, I did not test thsi EA.
Tiger EA
- hanzov replied Jun 24, 2016
ye, you are out of loop after break; if(OrderType()==OP_BUY) { if (((OE4<CE4 && OE3<CE3 && OE2>CE2 && OE1>CE1) || (OE5<CE5 && OE4>CE4 && OE3<CE3 && OE2>CE2 && OE1>CE1)) || CEX!=EMPTY_VALUE) { ClosedF=OrderClose(OrderTicket(), OrderLots(), Bid, 2, ...
Problem With EA
- hanzov replied Jun 24, 2016
Possible to call OrderSend through wrapper. You have add imports for functions from dll inside mql script I did the same in my frozen project, url It is like you want, but it is prototype fot web access to MT$.
C++ MQL4 Forex Harvester
- hanzov replied Jun 23, 2016
For example, you can do it ClosedF=OrderClose(OrderTicket(), OrderLots(), Ask, 2, clrWhite); if (!ClosedF) Print("OrderClose error ",GetLastError()); but better find example of the script. MT4 has the same script as example.
Problem With EA
- hanzov replied Jun 23, 2016
That's answer url What means "even better from outside"? From web?
C++ MQL4 Forex Harvester
- hanzov replied Jun 23, 2016
Print("OrderClose error ",GetLastError()); put getlasterror code or message from MT4 journal. ClosedF=OrderClose(OrderTicket(), OrderLots(), Ask, 2, clrWhite); if(!OrderClose(OrderTicket(),OrderLots(),Ask,2,clrWhite)) Print("OrderClose error ...
Problem With EA
- hanzov replied Jun 23, 2016
Pascalx, I read url But I still not recognize why you started development under C++/ C++ is a great challenge and your strategy should really require C++ opportunities to be used..
C++ MQL4 Forex Harvester
- hanzov replied Jun 22, 2016
Hmm.. may be, it is their limit. May be, it is your comp resources limit.. Check on different computers. But why you need 32+ instances?
Launching 32+ MT4 instances
- hanzov replied Jun 5, 2016
Ok, send it. I have analyze information before any decision, can I help or no.
Need some advice/information or even a developer for FIX API
- hanzov replied Jun 5, 2016
Hello, Traderyo do you have description how EXANTE allows trading via FIX API? I am looked url and there is no direct reference for this option. If they allow, May be, it is possible to realize strategy inside ATP's plugin? If you have the same ...
Need some advice/information or even a developer for FIX API
- hanzov replied May 31, 2016
But are u looking to use it as an indicator or EA? in second case u need different coding.
Using Gaps as S&R
- hanzov replied May 22, 2016
OK Be sure to enter valid data for SpecifiedBid, SpecifiedAsk on EA's startup.
Small EA Fix Request