Didi_Index

Didi_Index

开心版无广告156

更新日期:2022-02-22分类标签: 语言:中文平台:没限制

4 人已下载 手机查看

Didi_Index

//+——————————————————————+
//| Didi Index.mq4 |
//| Rudinei Felipetto |
//| http://www.conttinua.com |
//+——————————————————————+
#property copyright “Rudinei Felipetto”
#property link “http://www.conttinua.com”
#property version “1.00”
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_plots 3

//— plot Curta
#property indicator_label1 “Curta”
#property indicator_type1 DRAW_LINE
#property indicator_color1 clrLime
#property indicator_style1 STYLE_SOLID
#property indicator_width1 1
//— plot Media
#property indicator_label2 “Media”
#property indicator_type2 DRAW_LINE
#property indicator_color2 clrWhite
#property indicator_style2 STYLE_SOLID
#property indicator_width2 1
//— plot Longa
#property indicator_label3 “Longa”
#property indicator_type3 DRAW_LINE
#property indicator_color3 clrYellow
#property indicator_style3 STYLE_SOLID
#property indicator_width3 1
//— input parameters
extern int Curta=3;
extern ENUM_APPLIED_PRICE CurtaAppliedPrice = PRICE_CLOSE;
extern ENUM_MA_METHOD CurtaMethod = MODE_SMA;

extern int Media=8;
extern ENUM_APPLIED_PRICE MediaAppliedPrice = PRICE_CLOSE;
extern ENUM_MA_METHOD MediaMethod = MODE_SMA;

extern int Longa=20;
extern ENUM_APPLIED_PRICE LongaAppliedPrice = PRICE_CLOSE;
extern ENUM_MA_METHOD LongaMethod = MODE_SMA;

//— indicator buffers
double CurtaBuffer[];
double MediaBuffer[];
double LongaBuffer[];

int init()
{
SetIndexBuffer(0, CurtaBuffer, INDICATOR_DATA);
SetIndexBuffer(1, MediaBuffer, INDICATOR_DATA);
SetIndexBuffer(2, LongaBuffer, INDICATOR_DATA);

return(0);
}

int start()
{
if(Bars<=Longa) return(0);

CalculateDidiIndex();

return(0);
}
//+——————————————————————+
void CalculateDidiIndex()
{
for(int i = 1; i <= Bars; i++)
{
CurtaBuffer[i] = iMA(_Symbol, 0, Curta, 0, CurtaMethod, CurtaAppliedPrice, i);
MediaBuffer[i] = iMA(_Symbol, 0, Media, 0, MediaMethod, MediaAppliedPrice, i);
LongaBuffer[i] = iMA(_Symbol, 0, Longa, 0, LongaMethod, LongaAppliedPrice, i);

CurtaBuffer[i] /= MediaBuffer[i];
LongaBuffer[i] /= MediaBuffer[i];
MediaBuffer[i] = 1;
}
}
//+——————————————————————+

如果你对文件有了解,请帮助投票!

If you are familiar with the file, please help vote!

平均评分 0 / 5. 投票数: 0

到目前为止还没有投票!成为第一位投票人。

相关资源

暂无评论

暂无评论...
Ads Blocker Image Powered by Code Help Pro

检测到广告拦截程序!!!Ads Blocker Detected!!!

我们检测到您正在使用扩展来屏蔽广告。请通过禁用这些广告屏蔽程序或者把网站加入白名单来支持我们。

We have detected that you are using an extension to block advertisements. Please support us by disabling these advertising blocking programs or adding the website to the whitelist.