On Balance Volume

  • This topic has 6 replies, 3 voices, and was last updated 2 years ago by avatarJS.
Viewing 7 posts - 1 through 7 (of 7 total)
  • #198609

    Hello community,

    I have searched the archives for a ProRealCode version of the On Balance Volume indicator which is the same as the one available on TradingView but I have not been able to find one.

    If anyone can help convert the pinescript code to create on, that would be greatly appreciated.

    Here is the code available on TradingView:

    //@version=5
    indicator(title=”On Balance Volume”, shorttitle=”OBV”, format=format.volume, timeframe=””, timeframe_gaps=true)
    var cumVol = 0.
    cumVol += nz(volume)
    if barstate.islast and cumVol == 0
    runtime.error(“No volume is provided by the data vendor.”)
    src = close
    obv = ta.cum(math.sign(ta.change(src)) * volume)
    plot(obv, color=#2962FF, title=”OnBalanceVolume”)

    ma(source, length, type) =>
    switch type
    “SMA” => ta.sma(source, length)
    “EMA” => ta.ema(source, length)
    “SMMA (RMA)” => ta.rma(source, length)
    “WMA” => ta.wma(source, length)
    “VWMA” => ta.vwma(source, length)

    typeMA = input.string(title = “Method”, defval = “SMA”, options=[“SMA”, “EMA”, “SMMA (RMA)”, “WMA”, “VWMA”], group=”Smoothing”)
    smoothingLength = input.int(title = “Length”, defval = 5, minval = 1, maxval = 100, group=”Smoothing”)

    smoothingLine = ma(obv, smoothingLength, typeMA)
    plot(smoothingLine, title=”Smoothing Line”, color=#f37f20, display=display.none)

    Many thanks!

    #198613
    #198615

    Thanks Roberto,

    As above I have tried these links but the results are not consistent with the OBV indicator on trading view, I’ve attached some screenshots so you can see what I mean: both are screenshots of the same stock (OMF:NYSE), daily timeframe, same indicators but different results

    #198618

    I can’t find that one, can you post a link to it?

     

    #198619

    That screenshot is of the built in prorealtime OBV indicator, the other links in the archives give the same results.

     

     

    #198620

    I need a link to the source code.

     

    #198640
    JS

    Hi @quokkasoccer

    The difference lies in the fact that the mentioned links all refer to the OBV Oscillator which fluctuates around the zero line.

    When you use the “normal built-in” function (OBV) you get the same result as in your example graph.

    Your attached code is nothing more than the calculation of the “normal” OBV with the possibility to also draw a certain average (e.g. EMA) in the graph.

     

     

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

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