거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Explosion5 - MetaTrader 5용 expert
- 조회수:
- 17254
- 평가:
- 게시됨:
- 2019.03.19 16:15
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
input ushort InpStopLoss = 20; // Stop Loss input ushort InpTakeProfit = 10; // Take Profit input ushort InpTrailingStop = 0; // Trailing Stop input ushort InpTrailingStep = 1; // Trailing Step input double Ratio = 1.6; // Ratio input double InpLots = 0.0; // Lots input double Risk = 3.0; // Risk % //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // Buy if((high-low)>(high1-low1)* Ratio && (close>open)) // Sell if((high-low)>(high1-low1)* Ratio && (close<open))
The optimal timeframe is 4H && Day. The idea of the adviser is extremely simple. The explosive effect of the current price is used (the reasons can be any). It is at this moment that the position is opened, in the direction of the impulse.
This strategy allows you to effectively use the trailing stop to accompany the position. Stop Loss, place no more than 20 points.
Linear Weighted Moving Average
Linear Weighted Moving Average
Exponential moving averageExponential moving average