Boost Your Trading Strategy with the Exp_ReOpenPositions EA for MetaTrader 5

Mike 2017.01.20 01:59 19 0 0
Attachments

If you're looking to enhance your trading game, the Exp_ReOpenPositions Expert Advisor (EA) for MetaTrader 5 could be just what you need. This EA is designed to increase the volume of an open position whenever the profit from your last trade crosses a set threshold.

The details of these additional trades are neatly stored in a string comment, formatted as follows: number of addings/last trade price/last trade volume.

What's cool about this EA is that trades are executed when a new bar appears, giving you timely opportunities to capitalize on market movements.

//+----------------------------------------------+
//| Input parameters of the EA indicator         |
//+----------------------------------------------+
input double MM=0.1; // Share of deposit in the added deal
input MarginMode MMMode=LOT; // Method for detecting lot value
input uint OldProfit=300; // Profit of the previous trade in points for adding
input uint PosTotal=10; // Total number of added trades
input uint StopLoss_=1000; // Stop loss in points
input uint TakeProfit_=2000; // Take profit in points
input int Deviation_=10; // Max price deviation in points
//+----------------------------------------------+

Fig. 1. Examples of trades on the chart

Fig. 1. Examples of trades on the chart

List
Comments 0