天泓评测

天泓评测
投资也是一种修行~

指标

MT4的指标或者模板、系统

指标

ATR SMA复合指标2

阅读(1108)评论(0)

这个指标的特点是不同周期使用不同的均化个数,避免了千篇一律 #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 Blue #property indicator_color2 Yellow int ...

指标

Multi EMA

阅读(1266)评论(0)

多重EMA的意义,我还没想通,感觉没啥用。 //---- indicator settings #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Red #property indicator_c...

指标

iIchimoku的使用示范

阅读(1220)评论(0)

这里的例子使用了A>B>C,实际不推荐,会出问题 int start() { // double tenkan, kijun, tenkan2, kijun2; //you don't need these... // double senkouspanA, senkouspanB; //you don't ne...

指标

Firebird HMA

阅读(1547)评论(0)

#property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Blue #property indicator_color2 Red SetIndexStyle( 1,0,0, 1, Blue); SetIndex...

指标

1_Fish指标

阅读(1223)评论(0)

因为采用了Log(1+A)/(1-A),所以保留该指标,可参见《DS指标解析》 #property indicator_separate_window #property indicator_buffers 3 #property indicator_color1 Black #property indicator_color2 ...

指标

ATR SMA复合指标

阅读(1486)评论(0)

把ATR进行SMA,这属于复合指标 #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 Blue #property indicator_color2 Red extern int PeriodNu...

指标

2MA_RSI.mq5

阅读(1398)评论(0)

#include <OnTesterFunctions.mqh> #include <Martingail.mqh> //--- input parameters input double DML=1000; input int Ud=1; input int Stop=500; input int...

指标

ForexTrend V2

阅读(1566)评论(0)

#property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 DeepSkyBlue #property indicator_color2 Red extern int SSP = 7; extern double Kma...

指标

一个均线指标

阅读(1561)评论(0)

#property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 clrDodgerBlue #property indicator_color2 clrDodgerBlue #property indicator_color3 clrD...

指标

3_Level_ZZ_Semafor

阅读(1641)评论(0)

#property indicator_chart_window #property indicator_buffers 6 #property indicator_color1 Chocolate #property indicator_color2 Chocolate #property indicator_color3 MediumVio...