Trailing Stop And Take
This professional-grade solution for MetaTrader 5 helps traders achieve greater efficiency in their daily workflow. This Expert Advisor serves as automated trading software. It is utilized to monitor financial markets and execute trades based on predefined algorithmic rules, enabling precise position management without the need for constant manual oversight.
How to Setup and Use Trailing Stop And Take
1. Installation: Open the "File" menu, select "Open Data Folder," navigate to MQL/Experts, paste your file, and restart the terminal.
2. Activation: Drag the EA from the Navigator onto a chart, ensure "Allow live trading" is checked in the Common tab, and verify the AutoTrading button is green.
3. Optimization: Right-click your chart, choose "Expert List," click "Properties" to adjust inputs, and save your preferred setup as a set file for future use.
4. Maintenance: Regularly check the "Experts" tab in the terminal window to monitor trade logs and potential execution errors.
Frequently Asked Questions
Q: Why is my EA not opening trades? A: Check the "AutoTrading" button, ensure "Allow live trading" is enabled, and verify your broker allows automated trading on your account type.
Q: Can I run multiple EAs on one chart? A: No, each chart can only host one active EA; however, you can open multiple charts for different currency pairs to run several EAs.
Q: What does the "smiley face" icon mean? A: A smiley face in the top-right corner of the chart indicates the EA is successfully running; a frowny face means it is disabled.
Description & Settings
This non-trading Expert Advisor is designed for the simple trailing of stop loss and take profit orders of open positions.
The EA only works on hedging accounts.
Principle of operation: when a new position is opened, the EA checks its stop-orders. If a stop order is not found, the EA sets one at the distance specified in the EA parameters. Then the EA starts to move the position take profit and/or stop loss, if the price moves farther than the distance specified in the settings.
You can set position type - any/buy/sell, the position symbol (any or the specified one), the magic number (any or the specified one) or the position ticket (any or the specified one). It is also possible to set trailing in the losing area - if this mode is not selected, stop orders will not be trailed in the losing area. The breakeven value can be specified in the EA parameters.
To check the trailing operation in all modes, the EA can open positions on each new bar. This mode can only be applied in the Strategy Tester.
The EA has 12 input parameters:
Initial StopLoss size in points (0 - no stop)
- if a position does not have a stop loss, then a stop loss order with the specified value will be added immediately after position opening. If the parameter is equal to 0, stop loss will not be placed;
Initial TakeProfit size in points (0 - no take)
- if a position does not have a take profit, then a take profit order of the specified size will be added immediately after position opening. If the parameter is equal to 0, take profit will not be placed;
TrailingStop size in points (0 - no trail)
- trailing parameter, stop loss distance from the price. If the parameter is equal to 0, stop loss will not be trailed;
TrailingTake size in points (0 - no trail)
- trailing parameter, take profit distance from the price. If the parameter is equal to 0, take profit will not be trailed;
Positions type
- the type of positions to trail;
Positions symbol ("" - any symbol)
- the symbol of positions to trail (an empty value means all symbols);
Positions magic number (0 - any magic)
- the magic number of positions to trail;
Position ticket (0 - all tickets)
- the ticket of positions to trail;
Trailing Step
- trailing step. If the price moves away from the stop order at a distance greater than the step, the stop order will be modified so as to have the size specified in appropriate settings
TrailingStop size in points
and/or
TrailingTake size in points
;
Trailing in the unprofitable zone
- enable or disable trailing in the losing area. If disabled, stop orders will not be set in the loss zone;
Breakeven in points
- breakeven value. A losing area starts below this value;
Spread multiplier
- spread multiplier for calculating a correct distance for stop orders. For Stop Loss and Take Profit orders (as well as pending orders), there is a minimum allowed distance for placing such orders -
StopLevel
. I.e. Stop Loss and Take Profit (as well as pending orders) cannot be placed closer than this distance to the price. If
StopLevel
is zero, it does not mean its absence, it only means that
StopLevel
is floating. In this case, the minimum distance is usually equal to spread*, but sometimes even the double spread is not enough. So, this parameter allows specifying a custom multiplier for the spread used to calculate the minimum distance for placing stop orders.
Fig.1 Initial StopLoss=600, initial TakeProfit=1200, TrailingStop=300, take profit trailing is disabled, trailing in the loss area is disabled.