Mql5官网 Corridor BARs MT4 外汇EA

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

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

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

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

有需要,请联系站长!

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

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

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

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


The indicator shows the upper, middle and lower price limits for a certain period of time.

Also, two Moving Averages (MAs) are displayed.

Parameters

  • CTType: corridor basis. _Hour: hours, _Day: days, _Bars: bars
  • CTPrice: price type, by bars. OpenClose: Open/Close prices, HighLow: High/Low prices
  • CTShift: corridor shift
  • CTNum: how much to consider for building a corridor, min 2
  • CTPeriodFast: Fast period, min 2
  • CTShiftFast: Fast MA shift
  • CTMethodFast: Fast averaging method
  • CTPeriodSlow: Slow period, min 2
  • CTShiftSlow: Slow MA shift
  • CTMethodSlow: Slow averaging method

Clipboard

  • 0: Corridor top
  • 1: Corridor bottom
  • 2: Corridor average
  • 3: Fast MA
  • 4: Slow MA

Fully autonomous. No need for extra indicators.

Sample indicator call:

input int            CTType       = 2, // 0 hours, 1 days, 2 bars
                     CTPrice      = 0, // 0 Open/Close, 1 High/Low
                     CTNum        = 50,
                     CTPeriodFast = 9,
                     CTShiftFast  = 0;
input ENUM_MA_METHOD CTMethodFast = MODE_SMA;
input int            CTPeriodSlow = 15,
                     CTShiftSlow  = 0;
input ENUM_MA_METHOD CTMethodSlow = MODE_SMA;

void OnTick()
{
     Comment(  "Top: ",    DoubleToString(iCustom(_Symbol, 0, "CorridorTrade", CTType, CTPrice, 0, CTNum, CTPeriodFast, 0, CTMethodFast, CTPeriodSlow, 0, CTMethodSlow, 0, 0), _Digits),
               "\n",
               "Bottom: ", DoubleToString(iCustom(_Symbol, 0, "CorridorTrade", CTType, CTPrice, 0, CTNum, CTPeriodFast, 0, CTMethodFast, CTPeriodSlow, 0, CTMethodSlow, 1, 0), _Digits),
               "\n",
               "Medium: ", DoubleToString(iCustom(_Symbol, 0, "CorridorTrade", CTType, CTPrice, 0, CTNum, CTPeriodFast, 0, CTMethodFast, CTPeriodSlow, 0, CTMethodSlow, 2, 0), _Digits),
               "\n",
               "Fast: ",   DoubleToString(iCustom(_Symbol, 0, "CorridorTrade", CTType, CTPrice, 0, CTNum, CTPeriodFast, 0, CTMethodFast, CTPeriodSlow, 0, CTMethodSlow, 3, 0), _Digits),
               "\n",
               "Slow: ",   DoubleToString(iCustom(_Symbol, 0, "CorridorTrade", CTType, CTPrice, 0, CTNum, CTPeriodFast, 0, CTMethodFast, CTPeriodSlow, 0, CTMethodSlow, 4, 0), _Digits)
            );
}

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