27评论

0收藏

牛板帮我改一下指标!均线镜像指标

avatar zt1984639 | 7123 人阅读 | 27 人评论 | 2011-11-30

我自己写了一个指标,比如用80,和15均线,以15均做为中轴,在另一边镜像一个80均
  可我写了后不知道代码错在哪,镜像应该和另一边的80均一样的平滑,但我做出来的和15均一样的弯曲!
  
  下面是代码:
  如下图的,黄的是80均,红的为15均,蓝的是镜像出来的,
  怎么镜像出来的就不如原来的平滑呢??


  • //ver 1.0.0.0
  • #property indicator_chart_window
  • #property indicator_buffers 1
  • #property indicator_color1 Aqua  //蓝线
  • extern int ma01=15,ma02=80;
  • extern string string01=\"平均模式:0 SMA, 1 EMA, 2 SMMA, 3 LWMA\";
  • extern int ma_method01=1,ma_method02=1;
  • extern string string02=\"价格模式:0 CLOSE, 1 OPEN, 2 HIGH, 3 LOW, 4 MEDIAN, 5 TYPICAL, 6 WEIGHTED\";
  • extern int applied_price01=0, applied_price02=0;
  • double agpmaline[];

  • //+------------------------------------------------------------------+
  • //| expert initialization function                                   |
  • //+------------------------------------------------------------------+
  • int init()
  •   {
  • //----
  • SetIndexBuffer(0,agpmaline);
  • SetIndexStyle(0,DRAW_LINE,1,2);
  • SetIndexDrawBegin(0,0);
  • IndicatorDigits(Digits);
  • //----
  •    return(0);
  •   }
  • //+------------------------------------------------------------------+
  • //| expert deinitialization function                                 |
  • //+------------------------------------------------------------------+
  • int deinit()
  •   {
  • //----
  •    
  • //----
  •    return(0);
  •   }
  • //+------------------------------------------------------------------+
  • //| expert start function                                            |
  • //+------------------------------------------------------------------+
  • int start()
  •   {
  • //----
  • int limit;
  • int counted_bars=IndicatorCounted();
  • if(counted_bars0) counted_bars--;
  • limit=Bars-counted_bars;
  • double a,b,c;

  • for(int i=limit; i>=0; i--)
  • {
  • a=iMA(NULL,0,ma01,0,ma_method01,applied_price01,i);
  • b=iMA(NULL,0,ma02,0,ma_method02,applied_price02,i);
  • c=a-b;
  • //agpmaline=b + c*2;
  • agpmaline=a + c;
  • }
  •   
  • //----
  •    return(0);
  •   }//+------------------------------------------------------------------+

复制代码



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

评论|共 27 个

where

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

呵呵,找个机会...  

饭盒

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

我感觉雷雨趋势不错,挺好的ea!  

390152937

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

哈哈,看的人少,回一下  

傻蛋的青春

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

我来了~~~~~~~~~ 闪人~~~~~~~~~~~~~~~~  

暗色调

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

都是那么过来的  

iboomer

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

资金量设置的是10000美元啊,  

耳语

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

越办越好~~~~~~~~~`  

q826418559

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

路过,一般是有提供的Ea的平台,有EA社区...  

yoyo33okuy

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

哈哈 瞧你说的~~~  

123下一页
您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则