Mql5官网 Renko Bars 3in1 外汇EA

Mql5官网 Renko Bars 3in1 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
Mql5官网 Renko Bars 3in1 外汇EA
此内容为免费资源,请登录后查看
0积分
免费资源

如果免费资源下载的文件为TXT文档

请联系站长更新!站长微信:Lv596999  Telegram:@eapoj

“Mql5官网”板块的EA基本都有,大部分是无限制NODLL版,NODLL版本MT1420升级,大多数不可用!这些EA来源为国外花钱买过来的

有需要,请联系站长!

“EA测评”板块资源全部现有,看见不错的,可以联系站长看EA在确定是否收费

“无限制EA”板块,大部分免费,下载文件全部存在,都可以免费下载

站长硬盘EA太多,因大部分时间做交易,做风控,没太多时间更新下载地址,请谅解!

需要更新下载文件,请联系站长微信!国外朋友请联系Telegram。


The Renko_Bars_3in1 is designed for plotting 3 types of Offline Renko charts.

  1. Standard Renko Bar (the reversal bar is twice the size of the bar).
  2. Renko Range Bar (the size of all bars is the same).
  3. Renko Bars with the ability to adjust the size of the reversal bar.

Attention: The demo version for review and testing can be downloaded here.

Note. A chart with the M1 period is necessary to build an offline chart. When the indicator is attached to a chart, the offline chart is opened automatically. When closing the terminal, also close the offline chart, because another offline chart will be opened at the next start of the terminal. If this situation occurs, close the offline charts and restart the indicator.

A chart built using Renko_Bars_3in1 does not redraw the value of Open on the current bar and value of Close on the previous bar, which is important for fully functional operation of indicators and Expert Advisors. The indicator also implements the ability to test indicators and experts in the tester.

In the comments, in post # 8, there is a sound signal indicator for Renko charts.

To run your experts on an offline chart, create a copy of your expert, then insert or replace the OnInit() function with the one below. You can also use the refreshchart_and_tiks (https://www.mql5.com/en/code/19673) script to run experts on offline charts (preferred, does not require the replacement of functions in experts).

//+------------------------------------------------------------------+
void OnInit()
 {
     double prev_bid;
     prev_bid=Bid;
     while(!IsStopped())
    {
     RefreshRates();
     if(prev_bid!=Bid) 
     {
      prev_bid=Bid;
      OnTick();
     }
      Sleep(200);
    }
  }
//+------------------------------------------------------------------+

Indicator parameters

  • CandleSize – candle body size in pips.
  • RevSize – multiplier for the reversal bars.
  • TimeFrame – timeframe to display the offline chart (M2, M3, M4, M6, M7, M8, M9 or M10).
  • PriceforChart –  The price used to plot the chart.Close or (Ask + Bid) / 2.
  • ShowWicks – show the candle wicks (true/false).
  • StrangeSymbolName – set true, if your broker’s pair name is different from the standard pair name.
  • Test – false; set True if the chart is opened for testing.
  • DateStart – chart calculation start date.

See the video for instructions on how to install the indicator and how to test your indicators.

图片[1]-Mql5官网 Renko Bars 3in1 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
图片[2]-Mql5官网 Renko Bars 3in1 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
图片[3]-Mql5官网 Renko Bars 3in1 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
相关推荐