당사 팬 페이지에 가입하십시오
Exp_MA_Rounding_Candle_MMRec - MetaTrader 5용 expert
- 조회수:
- 2335
- 평가:
- 게시됨:
- 2018.10.25 14:58
- 업데이트됨:
- 2023.03.29 13:48
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
The trading system based on the MA_Rounding_Candle indicator signals with an ability to change the volume of a forthcoming trade depending on the results of the previous trades for this trading system. Trading signals are formed when a bar closes if a trend has changed (which is displayed by candles changing their color).
The block of input EA variables is added for managing volumes of opened positions:
input uint BuyTotalMMTriger=5; // The number of the last Buy deals to calculate stop loss input uint BuyLossMMTriger=3; // The number of losing Buy deals to reduce MM input uint SellTotalMMTriger=5;// The number of the last Sell deals to calculate stop loss input uint SellLossMMTriger=3; // The number of losing Sell deals to reduce MM input double SmallMM_=0.01; // Share of a deposit in a deal in case of loss input double MM=0.1; // Share of a deposit in a deal during normal trading input MarginMode MMMode=LOT; // Lot value determining method
In case of such inputs and when selecting from the last five trades, three of which are loss-making in a single direction, the EA opens the next trade in the same direction having the volume of 0.01 lot. If there are less than three loss-making trades out of the last five ones, the position volume is 0.1.
For the generated EA to operate correctly, the compiled files of indicators MA_Rounding.ex5 and MA_Rounding_Candle.ex5 should be present in the <terminal_data_directory>\MQL5\Indicators folder.
Default Expert Advisor's input parameters with stops have been used during tests shown below.
Fig. 1. Examples of trades on the chart
GBPJPY H1 testing results over the year of 2017:
Fig. 2. Test results chart
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/22116
Exp_XHullTrend_Digit is based on signals generated by XHullTrend_Digit indicator
Exp_SSL_NRTR_Tm_PlusThe trading system based on SSL_NRTR indicator signals with the possibility to set a fixed position holding time