당사 팬 페이지에 가입하십시오
Brandy - MetaTrader 5용 expert
- 게시자:
- Vladimir Karputov
- 조회수:
- 2819
- 평가:
- 게시됨:
- 2018.06.16 10:03
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Idea by: Sergey.
MQL5 code by: Vladimir Karputov.
The EA uses two Moving Average indicators, those being the signals on the intersection of two MAs: Here, the slow indicator (MA "Open") is used for opening positions, and the fast one (MA "Close") is used for closing positions. The EA only operates when a new bar appears, the number of positions is not limited. Position trailing is possible.
Inputs
- Lots - the volume of the position to be opened;
- Stop Loss (in pips) - Stop Loss;
- Take Profit (in pips) - Take Profit;
- Trailing Stop (in pips) - trailing;
- Trailing Step (in pips) - trailing step;
- MA "Close": averaging period - MA "Close" averaging period;
- MA "Close": horizontal shift - MA "Close" horizontal shift;
- MA "Close": smoothing type - MA "Close" averaging type;
- MA "Close": type of price - MA "Close" price type;
- MA "Close": bar closing position - MA "Close" bar number, from which the closing signal is taken;
- MA "Open": averaging period - MA "Open" averaging period;
- MA "Open": horizontal shift - MA "Open" horizontal shift;
- MA "Open": smoothing type - MA "Open" averaging type;
- MA "Open": type of price - MA "Open" price type;
- MA "Open": bar opening position - MA "Open" bar number, from which the closing signal is taken;
- magic number - unique identifier for the EA.
Testing for several symbols on the H1 timeframe from 2018.01.01 to 2018.04.22, the default EA parameters:
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/20548
An Expert Advisor based on two indicators: iMAs (Moving Average, MA) and iMomentum (Momentum).
FX-CHAOS_SCALPThe FX-CHAOS_SCALP trading strategy.
The EA trades on the iMA (Moving Average, MA) indicator. At the same time, there is a parameter of the indicator indent from price, set in percents.
Generic_IndexGeneric Index Indicator.