Close Orders By Target or Cut Loss – EA MetaTrader 4

Close Orders By Target or Cut Loss - expert for MetaTrader 4
We use this EA as a trading tool. There are 3 inputs required, as follows: Profit Target Cut Loss Magic Number extern    double         inTargetProfitMoney     = 10;       //Target Profit ($) extern    double         inCutLossMoney          = 0.0;      //Cut Loss ($) extern    int            inMagicNumber           = 0;        //Magic Number When this EA is executed, it will first call the OnInit () function. Where we will verify the … Read more

Close All and Support Multi Curencies EA – EA MetaTrader 5

imf1
Single Currency or Manual orders Closing or deleting sections are very easy to understand but if you have a question you leave it at comment section. The code check for Comment to detect the Orders to close or delete for multi currencies EA in case the input EAComment is empty It will close according to … Read more

Percentage of CLose and iMA prices – indicator MetaTrader 5

Percentage of CLose and iMA prices
The idea of the indicator The indicator counts (in percentage) how many times the ‘Close’ price has been above or below the ‘iMA’ indicator. The calculation period is equal to the indicator averaging period. Please note: the ‘iMA’ indicator has been added to the main window manually for visualization purposes. Rice. 1. Percentage of CLose and … Read more

Trailing Activate Close All – EA MetaTrader 5

Trailing Activate Close All
Assistant This assistant is designed to assist in manual trading. Works only on the current symbol, no restrictions on Magic number. For trailing, a new parameter ‘Trailing activate if profit is >= ‘ is used – this is essentially a breakeven for trailing. Trailing activates only after the position reaches profit in ‘Trailing activate if profit is … Read more