📅 财经日历 📊 实时波动 📈 大盘云图 📶 行情走势 🆚 投机情绪 🚀 今日热点

    自定义数组求周期最大值【源码】

    2011-11-19 · 5167 阅读

    • //+------------------------------------------------------------------+
    • //| 3均线.mq4 |
    • //| Copyright ?2007, 520FX Corp. |
    • //| http://www.520fx.com |
    • //+------------------------------------------------------------------+
    • #property copyright \"Copyright ?2007, 520FX Corp.\"
    • #property link \"http://www.520fx.com\"

    • #property indicator_separate_window
    • #property indicator_buffers 4
    • #property indicator_color1 Yellow
    • #property indicator_color2 Green
    • #property indicator_color3 Red
    • #property indicator_color4 Red

    • extern int MaPeriod=5;
    • extern int 最高值周期=13;
    • double Ma1[],Ma2[],MaDiff[],MaDiffHigh[];
    • //+------------------------------------------------------------------+
    • //| Custom indicator initialization function |
    • //+------------------------------------------------------------------+
    • int init()
    • {
    • IndicatorBuffers(4);
    • SetIndexStyle(0,DRAW_LINE);
    • SetIndexStyle(1,DRAW_NONE);
    • SetIndexStyle(2,DRAW_NONE);
    • SetIndexStyle(3,DRAW_NONE);
    • SetIndexBuffer(0,MaDiffHigh);
    • SetIndexBuffer(1,Ma1);
    • SetIndexBuffer(2,Ma2);
    • SetIndexBuffer(3,MaDiff);
    • return(0);
    • }

    • int start()
    • {
    • int i;
    • int limit;
    • int counted_bars=IndicatorCounted();
    • if(counted_bars0) counted_bars--;
    • limit=Bars-counted_bars;
    • for (i=limit-1;i>=0;i--)
    • {
    • Ma1=iMA(NULL,0,MaPeriod,0,MODE_EMA,PRICE_HIGH,i);
    • Ma2=iMA(NULL,0,MaPeriod,0,MODE_EMA,PRICE_LOW,i);
    • MaDiff=Ma1-Ma2;
    • }
    • for (i=limit-1;i>=0;i--)
    • {
    • MaDiffHigh=MaDiff[ArrayMaximum(MaDiff,最高值周期,i)];
    • }
    • return(0);
    • }
    • //------------------------------------------------------------

    复制代码
    ""
    还没有人打赏,支持一下
    回复

    举报

     

    回答|共 17 个

    20121 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    这个贴不错!!!!!  

    醉卧花丛 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    鉴定完毕.!  

    hvbib LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    好帖,有才  

    一杯白水 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    小生对楼主之仰慕如滔滔江水连绵不绝,海枯石烂,天崩地裂,永不变心.  

    不要找他 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    我的啦嘿嘿  

    衣冠禽兽 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    我帮你 喝喝  

    问问 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    现在越做月亏啊  

    性欲太强 LV5

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    嘿嘿......哈哈......呵呵.....哟~呼  

    xiaodong LV6

    发表于 2012-11-22 00:28:10 | 显示全部楼层

    我在顶贴~!~  
    12下一页
    您需要登录后才可以回帖 登录 | 注册

    提醒: 禁止引战、谩骂、灌水内容

    微信二维码

    有问题联系客服