hotindicatorrr for mt4

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #236436 quote
    AmirmafiAmirmafi
    Participant
    New
    //@نسخه=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 quote
    PeterStPeterSt
    Participant
    Master

    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)

    robertogozzi thanked this post
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

hotindicatorrr for mt4


ProBuilder: Indicators & Custom Tools

New Reply
Author
author-avatar
Amirmafi @amirmafi Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by PeterStPeterSt
2 years, 1 month ago.

Topic Details
Forum: ProBuilder: Indicators & Custom Tools
Language: English
Started: 08/16/2024
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...