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

在MetaTrader市场购买MetaTrader 4的'Murray Math Levels several oktavs' 技术指标

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

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

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

    店长精品橱窗推荐

    本店商品分类

    • -暂无分类

    本店商品排行

    • 概述
    • 评论
    • 评论

    Murray Math Levels several oktavs

    This indicator calculates and displays Murrey Math Lines on the chart. 

    The differences from the free version:

    It allows you to plot up to 4 octaves, inclusive (this restriction has to do with the limit imposed on the number of indicator buffers in МТ4), using data from different time frames, which enables you to assess the correlation between trends and investment horizons of different lengths.

    It produces the results on historical data. A publicly available free version with modifications introduced by different authors, draws the results on history as calculated on the current bar, which prevents it from being used for accurate analysis of the price movement in the past and complicates determination of the possible direction of the price at the current price range. There are versions that show values based on history but I don't know how accurate they are.

    The calculated values can be obtained from indicator buffers using the iCustom() function:

    • indicator line with 0 index contains line 4/8 of the octave set by the Р0 variable value selected on a time frame set by the baseTF_P0 variable with the selection criterion specified by the baseMGTD_P0 variable.
      Obtaining the value of this level on the zero bar: double p0_4_8 = iCustom(NULL,0,"ivgMMLevls",..list of parameters..,0,0);
      On the previous bar (number N): double p0_4_8_prev = iCustom(NULL,0,"ivgMMLevls",..list of parameters..,0,N); 
    • indicator line with index 1 contains the grid step of the same octave.
      Obtaining the value of this level on the zero bar: double p0_step = iCustom("ivgMMLevls",..list of parameters..,1,0); 
      On the previous bar (number N):  double p0_step_prev = iCustom("ivgMMLevls",..list of parameters..,1,N);   

    A similar approach is used to access data of the other octaves:

    • indicator line with index 2 - line 4/8, for octave Р1
    • indicator line with index 3 - grid step, for octave Р1
    • indicator line with index 4 - line 4/8, for octave Р2
    • indicator line with index 5 - grid step, for octave Р2
    • indicator line with index 6 - line 4/8, for octave Р3
    • indicator line with index 7 - grid step, for octave Р3

    This is for those who want to use these levels in Expert Advisors.

    An example of the script that obtains data for octave Р0 on the zero bar:

    input string s0="Latest Bar Number to calculate >= 0 ";
    input int StepBack = 0;
    input string s01="Culc Oktavs Count - max 4";
    input int _pCNT =  4;
    input string s1="History Bars Count";
    input int BarsCNT =  150;
    input string s2 = "Parameters group for configuring";
    input string s20 = "Murray Math Diapazone new search algorithm";
    input string s21 = "!!! If you are unsure, do not change these settings !";
    input int P0 =    8;
    input int P1 =   16;
    input int P2 =   32;
    input int P3 =  128;
    input int baseTF_P0    = 60;
    input int baseTF_P1    = 60;
    input int baseTF_P2    = 60;
    input int baseTF_P3    = 60;
    input int baseMGTD_P0 =  1;
    input int baseMGTD_P1 =  1;
    input int baseMGTD_P2 =  1;
    input int baseMGTD_P3 =  1;
    input string s22 = "**** End Of Parameters group for configuring *** ";
    input string s3 = "Line Colors adjustment";    
    input color  mml_clr_m_2_8 = White;       // [-2]/8
    input color  mml_clr_m_1_8 = White;       // [-1]/8
    input color  mml_clr_0_8   = Aqua;        //  [0]/8
    input color  mml_clr_1_8   = Yellow;      //  [1]/8
    input color  mml_clr_2_8   = Red;         //  [2]/8
    input color  mml_clr_3_8   = Green;       //  [3]/8
    input color  mml_clr_4_8   = Blue;        //  [4]/8
    input color  mml_clr_5_8   = Green;       //  [5]/8
    input color  mml_clr_6_8   = Red;         //  [6]/8
    input color  mml_clr_7_8   = Yellow;      //  [7]/8
    input color  mml_clr_8_8   = Aqua;        //  [8]/8
    input color  mml_clr_p_1_8 = White;       // [+1]/8
    input color  mml_clr_p_2_8 = White;       // [+2]/8
    input string s4 = "Line thickness adjustment";  
    input int    mml_wdth_m_2_8 = 2;        // [-2]/8
    input int    mml_wdth_m_1_8 = 1;        // [-1]/8
    input int    mml_wdth_0_8   = 2;        //  [0]/8
    input int    mml_wdth_1_8   = 1;        //  [1]/8
    input int    mml_wdth_2_8   = 1;        //  [2]/8
    input int    mml_wdth_3_8   = 1;        //  [3]/8
    input int    mml_wdth_4_8   = 2;        //  [4]/8
    input int    mml_wdth_5_8   = 1;        //  [5]/8
    input int    mml_wdth_6_8   = 1;        //  [6]/8
    input int    mml_wdth_7_8   = 1;        //  [7]/8
    input int    mml_wdth_8_8   = 2;        //  [8]/8
    input int    mml_wdth_p_1_8 = 1;        // [+1]/8
    input int    mml_wdth_p_2_8 = 2;        // [+2]/8
    input string s5 = "Font adjustment";  
    input int    dT = 7;
    input int    fntSize  =  7;
    input string s6 = "Latest Bar Marker adjustment";  
    input color  MarkColor   = Blue;
    input int    MarkNumber  = 217;
    
    int start()
    {
        double p0_4_8 = iCustom(NULL,0,"ivgMMLevls",
        s0,StepBack,s01,_pCNT,s1,BarsCNT,
        s2,s20,s21,P0,P1,P2,P3,baseTF_P0,baseTF_P1,baseTF_P2,baseTF_P3,
        baseMGTD_P0,baseMGTD_P1,baseMGTD_P2,baseMGTD_P3,s22,
        s3,
        mml_clr_m_2_8,mml_clr_m_1_8,mml_clr_0_8,mml_clr_1_8,mml_clr_2_8,mml_clr_3_8,
        mml_clr_4_8,
        mml_clr_5_8,mml_clr_6_8,mml_clr_7_8,mml_clr_8_8,mml_clr_p_1_8,mml_clr_p_2_8,
        s4,
        mml_wdth_m_2_8,mml_wdth_m_1_8,mml_wdth_0_8,mml_wdth_1_8,mml_wdth_2_8,mml_wdth_3_8,
        mml_wdth_4_8,
        mml_wdth_5_8,mml_wdth_6_8,mml_wdth_7_8,mml_wdth_8_8,mml_wdth_p_1_8,mml_wdth_p_2_8,
        s5,dT,fntSize,s6,MarkColor,MarkNumber,
        0,0); 
        double p0_step = iCustom(NULL,0,"ivgMMLevls",
        s0,StepBack,s01,_pCNT,s1,BarsCNT,
        s2,s20,s21,P0,P1,P2,P3,baseTF_P0,baseTF_P1,baseTF_P2,baseTF_P3,
        baseMGTD_P0,baseMGTD_P1,baseMGTD_P2,baseMGTD_P3,s22,
        s3,
        mml_clr_m_2_8,mml_clr_m_1_8,mml_clr_0_8,mml_clr_1_8,mml_clr_2_8,mml_clr_3_8,
        mml_clr_4_8,
        mml_clr_5_8,mml_clr_6_8,mml_clr_7_8,mml_clr_8_8,mml_clr_p_1_8,mml_clr_p_2_8,
        s4,
        mml_wdth_m_2_8,mml_wdth_m_1_8,mml_wdth_0_8,mml_wdth_1_8,mml_wdth_2_8,mml_wdth_3_8,
        mml_wdth_4_8,
        mml_wdth_5_8,mml_wdth_6_8,mml_wdth_7_8,mml_wdth_8_8,mml_wdth_p_1_8,mml_wdth_p_2_8,
        s5,dT,fntSize,s6,MarkColor,MarkNumber,
        1,0); 
        Print("p0_4_8 = ",DoubleToStr(p0_4_8)," | p0_step = ",DoubleToStr(p0_step));
        return(0);
    }

    To simplify the operation of the indicator, the number of bars of history is limited - the BarsCNT parameter.

     To analyze the behavior of the indicator over the history in the manual mode, there is a shift parameter StepBack, which allows you to draw the specified number of indicator values not only from the current bar (with 0 number).

    ta itemprop="image" content="https://c.mql5.com/31/19/murray-math-levels-several-oktavs-screen-2122.png" />

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

     
    • 18391752892

      网站客服

      法定工作日

      8:30-17:30

    • 了解更多外汇信息

      微信扫描关注

    • 用户反馈