[MT4指标]请教高手怎么把指标源码做成MT4用的指标?
教高手怎么把指标源码做成MT4用的指标?怎么区分那些是智能交易系统?那些是指标?
如下:是一个ADX的 +ID和 -ID上穿ADX线自动报警指标的源码 秃鹫老师编的 要怎么放到MT4里呢?
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 LightSeaGreen
#property indicator_color2 DeepPink
#property indicator_color3 Wheat
extern int ADX_Period=14;
double ADX0;
double ADX1;
double ADX2;
datetime preTime=0;
void init() {
SetIndexBuffer(0, ADX0);
SetIndexBuffer(1, ADX1);
SetIndexBuffer(2, ADX2);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,0);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,0);
SetIndexStyle(2,DRAW_LINE,STYLE_DOT,0);
}
void start() {
int limit;
int counted_bars=IndicatorCounted();
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
for(int t=0; tpreTime ) {
if(ADX1[0]>=ADX0[0] && ADX1[1]=ADX0[0] && ADX2[1]
发表于:2016-12-07 08:07只看该作者
3楼
感谢分享
韬客社区www.talkfx.co
发表于:2016-12-07 14:32只看该作者
4楼
感谢分享
韬客社区www.talkfx.co