거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

Explosion5 - MetaTrader 5용 expert

[삭제]
조회수:
16873
평가:
(36)
게시됨:
2019.03.19 16:15
Explosion.mq5 (45.86 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
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))

Testing


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.

Simple moving average Simple moving average

Simple moving average

Vortex 2 Vortex 2

Vortex 2

Linear Weighted Moving Average Linear Weighted Moving Average

Linear Weighted Moving Average

Exponential moving average Exponential moving average

Exponential moving average