Gold follower
The trading strategy used by this EA product comes from the traditional and effective PASR strategy, which includes candle pattern judgment, support pressure level judgment, trend judgment under the currently loaded time frame, and weekly and monthly time frames; the product contains An automated trading system with functions such as multi-currency pairs, trends, trend reversals, etc., no Martin, no grid, no hedging, no scalping; it has a clear stop loss level, and the stop loss method is based on the last closing candle price of the current time frame. Judging whether it is closed, the take profit point is determined by default according to whether the EA detects a reverse signal. Of course, you can also set the target profit pips or set trailing stop loss, but it is strongly recommended that you use the default take profit method and clearly set the target. Taking profit in pips or setting a trailing stop will cost you a potentially larger profit. In addition, because EA's judgment cannot be 100% at present, it can manually intervene to close profit orders if necessary, which will not affect the operation of EA.
Supported time frame: H1 H4 D1
Default settings run recommended XAUUSD H1
Here is the list of input parameters:
input string EAComment = "RTNV"; //EA name is used for remarks
input int MAGICMA = 891; //EA opens the order ID
input int CheckCandleNum = 5; //Checked the number of candlesticks
input bool EnableMaxStoplessPips = true; //Whether to enable fixed stop loss
input int MaxStoplessPips = 70; //Fixed stop loss pips
input bool EnableTailStopless = true; //Whether to enable trailing stop loss
input double TailStoplessPips = 30; //Number of trailing stop pips
input bool EnableTargetProfitPips = true; //Whether to enable target profit pips
input double TargetProfitPips = 150; //Target number of profit pips
input double FixedLotSize = 0.1; //Fixed lot size for opening orders
input bool EnableDynamicLotSize = false; //Whether to enable dynamic calculation of lot size
input int LotSizeMultiplier = 200; //Lot size superposition calculation amount interval, 200 means: if the account balance is superimposed 200$, then the order lot size superposition is 0.01
input int MaxPositionOrders = 5; //Maximum number of open orders
input bool EnableTimeFilter = false; //Whether to enable time filtering
input string StartTime = "4:00"; //Daily start time
input string StopTime = "24:00"; //End of day running time
input int FastEmaPeriod = 20; //Fast EMA Period
input int SlowEmaPeriod = 75; //Slow EMA Period
input double ResidualFact = 0.1; //Algorithm error factor