交易危机

 找回密码
 快捷注册(禁q号)

QQ登录

只需一步,快速开始

搜索
广告位
查看: 1076|回复: 3
打印 上一主题 下一主题

[连载] ChandelierExit 通道指标

[复制链接]

824

主题

27万

积分

28

精华

大型投行

金钱
273475 美元
权重
2293
跳转到指定楼层
楼主
发表于 2014-10-14 20:16 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
图示:

代码: ChandelierExit 通道指标.zip (907 Bytes, 下载次数: 1)

  1. //+------------------------------------------------------------------+
  2. //|                                               ChandelierExit.mq4 |
  3. //|                                                       MQLService |
  4. //+------------------------------------------------------------------+
  5. #property copyright "MQLService"
  6. #property indicator_chart_window
  7. #property indicator_buffers 4
  8. //#property indicator_color1 Blue
  9. //#property indicator_color2 Red
  10. #property indicator_color3 Orange
  11. #property indicator_color4 Magenta
  12. //---- input parameters
  13. extern int       Range=15;
  14. extern int       Shift=1;
  15. extern int       ATRPeriod=14;
  16. extern int       MultipleATR=4;
  17. //---- buffers
  18. double ExtMapBuffer1[];
  19. double ExtMapBuffer2[];
  20. double ExtMapBuffer3[];
  21. double ExtMapBuffer4[];
  22. int direction=1;
  23. double ATRvalue;
  24. //+------------------------------------------------------------------+
  25. //| Custom indicator initialization function                         |
  26. //+------------------------------------------------------------------+
  27. int init()
  28.   {
  29. //---- indicators
  30.    //SetIndexStyle(0,DRAW_LINE);
  31.    SetIndexBuffer(0,ExtMapBuffer1);
  32.    //SetIndexStyle(1,DRAW_LINE);
  33.    SetIndexBuffer(1,ExtMapBuffer2);
  34.    SetIndexStyle(2,DRAW_LINE);
  35.    SetIndexBuffer(2,ExtMapBuffer3);
  36.    SetIndexEmptyValue(2,0.0);
  37.    SetIndexStyle(3,DRAW_LINE);
  38.    SetIndexBuffer(3,ExtMapBuffer4);
  39.    SetIndexEmptyValue(3,0.0);
  40. //----
  41.    return(0);
  42.   }
  43. //+------------------------------------------------------------------+
  44. //| Custor indicator deinitialization function                       |
  45. //+------------------------------------------------------------------+
  46. int deinit()
  47.   {
  48. //----
  49.    
  50. //----
  51.    return(0);
  52.   }
  53. //+------------------------------------------------------------------+
  54. //| Custom indicator iteration function                              |
  55. //+------------------------------------------------------------------+
  56. int start()
  57.   {
  58.    int limit;
  59.    int counted_bars=IndicatorCounted();
  60.    if(counted_bars<0) counted_bars=0;
  61.    if(counted_bars>0) counted_bars--;
  62.    limit=Bars-counted_bars;
  63.    for(int i=limit; i>=0; i--)
  64.       {
  65.          ATRvalue=iATR(NULL,0,ATRPeriod,0)*MultipleATR;
  66.          ExtMapBuffer1[i]=High[Highest(NULL,0,MODE_HIGH,Range,i+Shift)]-ATRvalue;
  67.          ExtMapBuffer2[i]=Low[Lowest(NULL,0,MODE_LOW,Range,i+Shift)]+ATRvalue;
  68.          if(direction==1)
  69.            {
  70.             if(Close[i+1]<ExtMapBuffer1[i+1])
  71.                {
  72.                   direction=-1;
  73.                   ExtMapBuffer3[i]=ExtMapBuffer2[i];
  74.                }
  75.             else
  76.                   ExtMapBuffer3[i]=ExtMapBuffer1[i];   
  77.            }
  78.          if(direction==-1)
  79.            {
  80.             if(Close[i+1]>ExtMapBuffer2[i+1])
  81.                {
  82.                   direction=1;
  83.                   ExtMapBuffer4[i]=ExtMapBuffer1[i];
  84.                }
  85.             else
  86.                   ExtMapBuffer4[i]=ExtMapBuffer2[i];   
  87.            }
  88.       }   
  89.    return(0);
  90.   }
  91. //+------------------------------------------------------------------+
复制代码

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 转播转播 分享分享 分享淘帖 支持支持 保留保留

122

主题

3万

积分

23

精华

地佐更接地气

大型投行

金钱
30818 美元
权重
870
沙发
发表于 2015-12-26 19:41 | 只看该作者
沙发消灭零回复。
如果你认为看懂了市场,那你一定是误解了市场。

市场从来不在乎你、我或任何专家,从不会按照你认为发生什么就应该要发生什么那样。

在市场中赚钱并不容易,但是有可能的,只有把资金、技术、心理这三者和谐地融汇贯通去指导行为,将会走向更加有利可图的交易之路!

0

主题

26

积分

0

精华

外汇入门

金钱
26 美元
权重
0
板凳
发表于 2016-10-13 10:45 | 只看该作者
如果能微调下就更好了

点评

感觉有点宽范……  发表于 2016-11-3 08:48
您需要登录后才可以回帖 登录 | 快捷注册(禁q号)

本版积分规则

QQ|黄金吧|黄金论坛|手机版|指标下载|非农|目录|交易危机

版权所有: ©2014-2021 fx3q.com Powered by Discuz! X3
皖ICP备: 2024050410号-2

风险提示:杠杆风险高,交易要谨慎 声明:坛友发言和回复均为个人观点,不代表论坛立场。
若有侵权请联系fx3q@qq.com删除

快速回复 返回顶部 返回列表