客服热线:18391752892
当前位置: 首页 » 外汇EA商城 » 智能交易 »在MetaTrader市场购买MetaTrader 4的'Range Bars' 技术指标

在MetaTrader市场购买MetaTrader 4的'Range Bars' 技术指标

品牌:
顺水的鱼外汇EA
起批 1-30000件 30001件以上
价格 3988.00 10.00
评分:
人气( 232 )  共有 0 条评价 ( 销量:0件 )

手机扫购有惊喜
物流:
:3988.00  
数量:
   
(当前库存 888888 件)
  • 收藏商品(0)
  • 告诉好友
  • 举 报
  • 顺水的鱼外汇EA

    发 货 地:
    默认地区
    全网同类推荐
    • ¥1100.00
    • ¥3988.00
    • ¥3988.00
    • ¥3988.00
    • ¥3988.00
    • ¥3988.00

    店长精品橱窗推荐

    本店商品分类

    • -暂无分类

    本店商品排行

    • 概述
    • 评论 (2)
    • 评论 (47)
    • 新特性

    Range Bars

    The robust charting solution that enables creating custom live range bar charts on the metaTrader 4 trading platform.

    You can apply all of the standard and custom indicators and technical studies directly to the range bar charts and you can run EAs directly on these charts as well* (for details see text below the input summary).

    To create a range bar chart you need to attach the Range Bar indicator to a standard time frame (1 minute is recommended) and use the indicator's settings to generate a live custom chart that will be displayed on an offline chart of your choice. All of the available settings are described below:

    Bar type definition

    • Candle size (in pips for Forex pairs and in points for others).

    Display settings

    • Display on offline chart (M2, M3, M4, M6, M7, M8, M9 or M10).
    • Apply template to offline chart (name of the template to apply to the range bars chart)
    • Automatically open offline chart (true/false)
    • Build history for number of days.
    • Reset Open on each trading day.
    • Override start of trading day.
    • Re-calculate chart on history updates.
    • Minimum chart update interval (defined in milliseconds).

    ATR based bar size calculation

    • Enabled (true/false).
    • Daily ATR period.
    • Percentage of ATR to calculate candle size (high to low).

    alerts and Info

    • Sound signal on new bar (true/false).
    • only signal reversal bars (true/false).
    • Use alert Window to display signal (true/false).
    • Sound file to play on bullish bar.
    • Sound file to play on bearish bar.
    • Color of High threshold indicator.
    • Color of Low threshold indicator.
    • Color of an inactive threshold indicator.

    * EAs can be used directly on the offline chart, however, a small tweak is required, so you need to have access to your EA source code. Below is an EA skeleton example that is capable of running directly on the offline chart:

    #property strict
    //+------------------------------------------------------------------+
    //| Expert initialization function                                   |
    //+------------------------------------------------------------------+
    int OnInit()
    {
       // You need to initialize a time to call the onTimer event.
       // It is used to call onTick whenever the Bid price changes.
       // The check is made every 250 ms, which should be sufficient.
       
       EventSetMillisecondTimer(250);
          
       //---
       
       return(INIT_SUCCEEDED);
    }
    //+------------------------------------------------------------------+
    //| Expert deinitialization function                                 |
    //+------------------------------------------------------------------+
    void OnDeinit(const int reason)
    {
       // Remember to destroy timer in the onDeinit event.
       
       EventKillTimer();
    
       //---      
    }
    //+------------------------------------------------------------------+
    //| Expert tick function                                             |
    //+------------------------------------------------------------------+
    void OnTick()
    {
       //
       // This is where all of your EA trading logic resides.
       // I just write to the log in this example...
       //
       
       Print("onTick function call - bid = "+(string)Bid);
    }
    //+------------------------------------------------------------------+
    //| The onTimer function is used to call onTick()                    |
    //| whenever the Bid price changes.                                  |
    //+------------------------------------------------------------------+
    void OnTimer()
    {
       RefreshRates();
       static double prevBid = 0; 
       
       if(Bid != prevBid)
       {
          prevBid = Bid;
          OnTick();
       }         
    }
    //+------------------------------------------------------------------+
    ta itemprop="image" content="https://c.mql5.com/31/197/range-bars-screen-7990.png" />

    因厂家更改商品包装、场地、附配件等不做提前通知,且每位咨询者购买、提问时间等不同。为此,客服给到的回复仅对提问者3天内有效,其他网友仅供参考!给您带来的不变还请谅解,谢谢!

     
    • 18391752892

      网站客服

      法定工作日

      8:30-17:30

    • 了解更多外汇信息

      微信扫描关注

    • 用户反馈