EURUSD breakout v0.20 伦敦突破
// \\|// +-+-+-+-+-+-+-+-+-+-+-+ \\|// // ( o o ) |T|r|a|d|e|r|S|e|v|e|n| ( o o ) // ~~~~oOOo~(_)~oOOo~~~~ ...
// \\|// +-+-+-+-+-+-+-+-+-+-+-+ \\|// // ( o o ) |T|r|a|d|e|r|S|e|v|e|n| ( o o ) // ~~~~oOOo~(_)~oOOo~~~~ ...
麻雀虽小,五脏俱全。 本EA好坏位置,但趋势头皮是重点方向。 extern double TP = 10.0; extern double SL = 37.0; extern int bars = 15; extern bool testLot = FALSE; extern double MaxRisk = 1.0; ...
这个写法的特点是根据最近一个区间的最高点/最低点,进行止损设置,我认为是非常英明的。 extern int BarsNum = 5; extern int PipDistance = 1; double LTS, STS, Spread; int start() { int count = 0; ...
因为采用了Log(1+A)/(1-A),所以保留该指标,可参见《DS指标解析》 #property indicator_separate_window #property indicator_buffers 3 #property indicator_color1 Black #property indicator_color2 ...
把ATR进行SMA,这属于复合指标 #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 Blue #property indicator_color2 Red extern int PeriodNu...
顾名思义,应该是MD5加密用的库 md5hash.mqh
这个看起来是图像处理类的库 canvas2.mqh
#include <OnTesterFunctions.mqh> #include <Martingail.mqh> //--- input parameters input double DML=1000; input int Ud=1; input int Stop=500; input int...
#property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 DeepSkyBlue #property indicator_color2 Red extern int SSP = 7; extern double Kma...
int start() { int angle=0; int index=0; double price; int k=1; //---- price=Low[index]; ObjectCreate("rotating_text", OBJ_TEXT, 0, Time[index],...