보조지표(Indicators)를 활용한 EA
메타4플랫폼에서는 기술적 분석 보조지표(Technical Indicators)에 대한 코딩과 활용을 지원합니다. 타 프로그래밍 언어를 사용하여 보조지표를 구현한다면, 방대한 작업량과 구현 난이도 때문에 프로그래밍에 대한 사전지식이 없는 독자에게는 불가능한 과제가 될 것입니다. 하지만 mql4에서는 단어 몇 가지가 조합된 한 줄의 코딩으로 하나의 완전한 보조지표를 구현해 냅니다. 이와 같이 mql4언어는 강력한 보조지표 함수기능을 제공합니다.
MA(이동평균선), RSI등과 같이 우리에게 친숙한 보조지표를 비롯해서, 아래와 같이 다양한 보조지표를 함수를 통해 제공합니다.
AC - Bill Williams' Accelerator/Decelerator oscillator
AD - Accumulation/Distribution indicator
ADX - Average Directional Movement Index indicator
Alligator - Alligator indicator
AO - Awesome oscillator
ATR - Average True Range indicator
BearsPower - Bears Power indicator
Bands - Bollinger Bands® indicator
BandsOnArray - Bollinger Bands® indicator
BullsPower - Bulls Power indicator
CCI - Commodity Channel Index indicator
CCIOnArray - Commodity Channel Index indicator
Custom - custom indicator
DeMarker - DeMarker indicator
Envelopes - Envelopes indicator
EnvelopesOnArray - Envelopes indicator on data, stored in array
Force - Force Index indicator
Fractals - Fractals indicator
Gator - Gator oscillator
Ichimoku - Ichimoku Kinko Hyo indicator
BWMFI - Market Facilitation Index indicator
Momentum - Momentum indicator
MomentumOnArray - Momentum indicator on data, stored in array
MFI - Money Flow Index indicator
MA - Moving Average indicator
MAOnArray - Moving Average indicator on data, stored in array
OsMA - Moving Average of Oscillator indicator
MACD - Moving Averages Convergence/Divergence indicator
OBV - On Balance Volume indicator
SAR - Parabolic Stop and Reverse system indicator
RSI - Relative Strength Index indicator
RSIOnArray - Relative Strength Index indicator on data, stored in array
RVI - Relative Vigor Index indicator
StdDev - Standard Deviation indicator
StdDevOnArray - Standard Deviation indicator on data, stored in array
Stochastic - Stochastic Oscillator
WPR - Larry Williams' Percent Range
이 보조지표를 다 외울 필요는 없으며, 본인의 매매성향에 맞는 보조지표를 사용하면 됩니다. 아래에서는 일반적으로 많이 알려진 보조지표인 이동평균선/볼린져밴드/RSI상대강도지수 보조지표에 대한 코딩법과 활용에 대해 알아보겠습니다.
'EA 교육자료' 카테고리의 다른 글
RSI상대강도지수 소스 매매코딩 (0) | 2015.04.17 |
---|---|
RSI상대강도지수 매매코딩 (0) | 2015.04.17 |
볼린져밴드 매매코딩 (0) | 2015.04.17 |
이동평균선 매매코딩 (0) | 2015.04.17 |
OrderModify() 활용 EA실전코딩 (0) | 2015.04.17 |
OrderClose() 활용 EA실전코딩 (0) | 2015.04.17 |
OrderSend()함수 속성 상세설명 EA실전코딩 (0) | 2015.04.17 |
OrderSend()함수 구조 EA실전코딩 (0) | 2015.04.17 |