FL03
显示星星指标,代码大概是计算过去9根K线的基准价格,幅度,判定上涨或下跌。 #property description "小圆点" #property link "http://ea.kitgain.com/" #property indicator_chart_window #propert...
显示星星指标,代码大概是计算过去9根K线的基准价格,幅度,判定上涨或下跌。 #property description "小圆点" #property link "http://ea.kitgain.com/" #property indicator_chart_window #propert...
又名:神奇通道、星光引路 其特点是,8个指标,1-3用于主图,4-7用于辅图,幅图具有过滤作用, 1号TMA通道,比较平滑,ATR倍数2.6 2号ATR倍数3.0、3.4、3.8、4.2、4.6、5.0,代码与1号相同 3号是小圆点,最近九柱权重算法。 ...
这个指标的原型是TMALine_2_for_Mix.mq4 #property description "TMA bands" #property link "http://ea.kitgain.com/" #property indicator_chart_window #property indicator_buf...
最近用CreateFileMappingA()编程给一个小型结构体OD直接指定128字节大小的内存块, hMap = CreateFileMappingA(INVALID_HANDLE_VALUE,0,PAGE_READWRITE,0,BUF_SIZE,szName); 在模拟盘中运行,发现截取货币对...
EA名称:PZ_ADXTraderEA 曾用名或改编名: 官方网址: EA状态:[源码mq4] [反编译mq4] [无限制ex4] [有限制ex4] EA类型:趋势型 适用货币对:EURUSD 适用周期:H1 初始入金: 手数:[固定手数] [复利] 年均收益: 最...
这个全局变量的访问时间,官方帮助文件指的是The function returns time of last accessing the specified global variable. 也就是说,GlobalVariableGet()一下,也会更新时间,不要误以为只有GlobalVariableSet()才会刷新这个时间。
bool CloseOrder(int Ticket, double Lots, int myOrderType) { bool res; int ErrorCode; double Price; bool Status = false; if(myOrderType == OP_BUYLIMIT |...
bool CloseOrders(int orderMode,string myType) { int OrderCount=0, gle=0; int cnt,mode; int TicketArray[100]; double ClosePrice=0; string stringOrderMo...
这用于void fun(int & a)这种函数体上,其用途是做“引用传递”,将实参A(比如主函数里调用fun(A);)引用传递给a这个形参,同时a变化了,会修改A的值。 如果不想修改A的值,那么使用void fun(const int &a)进行定义,const用于保护实参。 最常用的void f...
if(OrderType() == OP_BUY) { dSl=OrderStopLoss(); if( dSl == 0 ) if( dInitialSL != 0) dSl = dnAsk - dIni...