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

Explosion - MetaTrader 4용 expert

[삭제]
조회수:
9823
평가:
(12)
게시됨:
2019.03.18 11:15
Explosion.mq4 (37.88 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
input double _Lots = 0.01;// Lot
input int _SL = 20;//SL
input int _TP = 10;//TP
input int _MagicNumber = 4425;//Magic
input int _TrailingStop = 0;//Trailing Stop
input int _TrailingStep = 1;//Trailing Step
input string _Comment = "FX BOT";//Comments
input int _Slippage = 3;//Slippage
input bool _OnlyOneOpenedPos = true;//Only one pos per bar
input bool _AutoDigits = true;// Autodigits
//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

// ---
bool op_buy_sig()
{
        if(((e_High() - e_Low()) > ((e_High1() - e_Low1()) * 2)) && (e_Close() > e_Open()))
                return true;
        // ---
        return false;
}
// ---
bool op_sell_sig()
{
        if(((e_High() - e_Low()) > ((e_High1() - e_Low1()) * 2)) && (e_Close() < e_Open()))
                return true;
        // ---
        return false;
}

Testing

The optimal timeframe is 4H. 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.

FiboArc FiboArc

"FiboArc" EA draws Fibonacci Arcs on chart and trades with price breakthrough,has Trailing Stop Loss &Take Profit works with all time frames major forex pairs and stocks NASDAQ.

Daily Chart Trader Daily Chart Trader

This is strictly for daily chart and any symbol with spread low enough for its operation

iTrend_new iTrend_new

iTrend_new is base on iTrend Indicator by MetaQuotes Software Corp. Update and modify by Roberto Jacobs 3rjfx @ 2019/03/18, for MT4 with Signal and Alert and options to display signal on the chart.

ForexCandlestickPatterns ForexCandlestickPatterns

ForexCandlestickPatterns with alert are forex indicators based on Japanese Candlestick Strategies.