Mql5官网 GS trendS 外汇EA

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

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

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

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

有需要,请联系站长!

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

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

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

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


GS trendS is a trend indicator that can be used for any Forex financial instrument.

The indicator does not redraw and does not lag. Recommended timeframe H1.

It is possible to select the trend algorithm settings {Only Open, Average Open/Close, Average High/Low}

The color indicates the direction of the trend:

  • yellow – direction can be SELL or BUY (S_B)
  • blue – uptrend (BUY)
  • red – downward trend (SELL)

The indicator panel displays trend values of 5 timeframes for the current price level.

The value of the trend is fixed by the indicator at the opening of the next candle.

    GS smart advisor uses the indicator’s algorithm to determine the direction of the trend.

      Using

      1. For visual control of the trend and setting the parameters of advisers or making a decision to open orders manually.
      2. For use in your own advisors as one of the criteria for making a decision to open an order

      An example of the text of an Expert Advisor testing access to an indicator:
      #property description “GS test v1.0 – Expert Advisor”
      #property description “This EA use for test”
      #property strict
      #resource “\\Indicators\\GS_trendS.ex4”

      extern string Version__ = “————-GS test v1.0 ————-“;
      input int NN=10;//Limit

      //+——————————————————————+
      //| Expert initialization function                                   |
      //+——————————————————————+
      int OnInit()
      {
      //————Timer
         EventSetTimer(1);   
         return(INIT_SUCCEEDED);
        }
      //+——————————————————————+
      //| Expert Timer function                                            |
      //+——————————————————————+
      void OnTimer()
      { static int i=0;
        if (i>NN) return;
        double r=iCustom(NULL,0,”::Indicators\\GS_trendS.ex4″,3,i);
        Alert(“i=”+(string)i+”: GS trendS Signal = “+DoubleToString(r,5)+((r==1)?” (SELL_BUY)”:(r==2)?” BUY”:” SELL”));
        i++;
       }

      The Expert Advisor displays the indicator values every second, corresponding to the history from the current candle to the previous ones (the amount is set by the Limit parameter)

      Index 3 of the indicator returns values:

      1 – SELL or BUY
      2 – BUY
      3 – SELL

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

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