天泓评测

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

EA

WalkByTrend趋势短线

阅读(1711)评论(0)

麻雀虽小,五脏俱全。 本EA好坏位置,但趋势头皮是重点方向。 extern double TP = 10.0; extern double SL = 37.0; extern int bars = 15; extern bool testLot = FALSE; extern double MaxRisk = 1.0; ...

函数

一种移动止损写法

阅读(1554)评论(0)

这个写法的特点是根据最近一个区间的最高点/最低点,进行止损设置,我认为是非常英明的。 extern int BarsNum = 5; extern int PipDistance = 1; double LTS, STS, Spread; int start() { int count = 0; ...

指标

1_Fish指标

阅读(1219)评论(0)

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

指标

ATR SMA复合指标

阅读(1482)评论(0)

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

函数

md5 hash

阅读(1334)评论(0)

顾名思义,应该是MD5加密用的库 md5hash.mqh

函数

Canvas.mqh

阅读(1394)评论(0)

这个看起来是图像处理类的库 canvas2.mqh

指标

2MA_RSI.mq5

阅读(1393)评论(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

阅读(1560)评论(0)

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

函数

翻转文本

阅读(1569)评论(0)

int start() { int angle=0; int index=0; double price; int k=1; //---- price=Low[index]; ObjectCreate("rotating_text", OBJ_TEXT, 0, Time[index],...