hotindicatorrr for mt4

Forums ProRealTime English forum ProBuilder support hotindicatorrr for mt4

Viewing 2 posts - 1 through 2 (of 2 total)
  • #236436
    //@نسخه=3
    // @author LazyBear
    //و اورینگان
    مطالعه (عنوان “در نوسانگر حجم تعادل”، shorttitle=”OBV OSC 0.1”)
    src = بستن
    طول = ورودی (20)
    obv(src) => cum(change(src) > 0 ? volume : change(src) < 0 ? -volume : 0*volume)
    os=obv(src)
    //obv_osc = (os – sma(os،طول))
    obv_osc = (os – ema(os، طول))
    obc_color=obv_osc > 0 ? سبز: قرمز
    طرح (obv_osc، color=obc_color، style=line,title=”OBV-Points”، linewidth=2)
    طرح (obv_osc، color=silver، transp=70، title=”OBV”، style=area)
    hline (0)
    ma_len = ورودی (14)
    o_ma = rma(obv_osc، ma_len)
    o_ma_s = sma(o_ma، round(pow(ma_len,0.5)))
    ma_col = o_ma > o_ma_s ? آبی: نارنجی
    lw=3
    o_ma := o_ma * pow(ma_len، 0.15)
    طرح (o_ma، color=ma_col، linewidth=2، style= دایره ها)
    #236444

    For those who like to read it.


    /@version=3
    // @author LazyBear
    //And Oringan
    Study (title “On Balance Volume Oscillator”, shorttitle=”OBV OSC 0.1″)
    src = close
    length = input(20)
    obv(src) => cum(change(src) > 0 ? volume : change(src) < 0 ? -volume : 0*volume)
    os=obv(src)
    //obv_osc = (os – sma(os, length))
    obv_osc = (os – ema(os, length))
    obc_color=obv_osc > 0 ? Green: Red
    Layout (obv_osc, color=obc_color, style=line, title=”OBV-Points”, linewidth=2)
    Design (obv_osc, color=silver, transp=70, title=”OBV”, style=area)
    line (0)
    ma_len = input(14)
    o_ma = rma(obv_osc, ma_len)
    o_ma_s = sma(o_ma, round(pow(ma_len,0.5)))
    ma_col = o_ma > o_ma_s ? Blue: Orange
    lw=3
    o_ma := o_ma * pow(ma_len, 0.15)
    layout (o_ma, color=ma_col, linewidth=2, style=circles)

    1 user thanked author for this post.
Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login