Facebook Sharer
选择您要替换的背景颜色:
【农历新年】背景图片:
个性化设定
 注册  找回密码
查看: 731|回复: 0
打印 上一主题 下一主题

MQL4 的问题,不能循环,类似C++语言

[复制链接]

102

主题

1

好友

6230

积分

百变名嘴

Rank: 13Rank: 13Rank: 13Rank: 13

跳转到指定楼层
1#
发表于 2015-8-15 02:26 PM |只看该作者 |倒序浏览

  1. #define  SH_BUY   1
  2. #define  SH_SELL  -1


  3. extern int     Otstup=30;
  4. extern double  Per=9;
  5. int            SH,NB,i,UD;
  6. double         R,SHMax,SHMin;
  7. double         BufD[];
  8. double         BufU[];


  9. int init()
  10. {
  11.    if (Bars<AllBars+Per || AllBars==0) NB=Bars-Per; else NB=AllBars;
  12.    IndicatorBuffers(2);
  13.    IndicatorShortName("SHI_SilverTrendSig");
  14.    SetIndexStyle(0,DRAW_ARROW,0,1);
  15.    SetIndexStyle(1,DRAW_ARROW,0,1);
  16.    SetIndexArrow(0,159);
  17.    SetIndexArrow(1,159);
  18.    SetIndexBuffer(0,BufU);
  19.    SetIndexBuffer(1,BufD);
  20.    SetIndexDrawBegin(0,Bars-NB);
  21.    SetIndexDrawBegin(1,Bars-NB);
  22.    Print("NB:", NB);
  23.    return(0);
  24. }


  25. int start()
  26. {
  27.    int CB=IndicatorCounted();
  28.    
  29.    if(CB<0) return(-1); else if(NB>Bars-CB) NB=Bars-CB;
  30.       for (SH=1;SH<NB;SH++)
  31.    {
  32.       for (R=0,i=SH;i<SH+10;i++) {R+=(10+SH-i)*(High[i]-Low[i]);}      R/=55;

  33.       SHMax = High[Highest(NULL,0,MODE_HIGH,Per,SH)];
  34.       SHMin = Low[Lowest(NULL,0,MODE_LOW,Per,SH)];
  35.       if (Close[SH]<SHMin+(SHMax-SHMin)*Otstup/100 && UD!=SH_SELL) { BufU[SH]=Low[SH]-R*0.5; UD=SH_SELL; }
  36.       if (Close[SH]>SHMax-(SHMax-SHMin)*Otstup/100 && UD!=SH_BUY) { BufD[SH]=High[SH]+R*0.5; UD=SH_BUY; }
  37.    }
  38.    return(0);
  39. }
复制代码
没办法循环
是不是哪里弄错了?




收藏收藏0
您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2024-12-26 03:02 PM , Processed in 0.106632 second(s), 23 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

Ultra High-performance Dedicated Server powered by iCore Technology Sdn. Bhd.
Domain Registration | Web Hosting | Email Hosting | Forum Hosting | ECShop Hosting | Dedicated Server | Colocation Services
本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved
合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部