Delta Moving Average Conversion

Forums ProRealTime English forum ProBuilder support Delta Moving Average Conversion

Viewing 2 posts - 1 through 2 (of 2 total)
  • #128875

     

    All Looking for conversion of below pine editor

    study(title=”Delta Moving Average”, shorttitle=”DeltaMA”)
    ema_len = input(21, minval=1, title=”EMA len”)
    roc_len = input(5, minval=1, title=”ROC len”)
    src = close

    smooth = ema(src, ema_len)
    ema_roc = 100 * (smooth – smooth[roc_len])/smooth[roc_len]
    color = ema_roc > ema_roc[roc_len] ? green : red
    plot(ema_roc, color=color, title=”EMA ROC”, style=line)
    hline(0)

    Please help me in getting this setup

    #128879

    nitinvijayrane – Welcome to the forums.

    When asking for a free code conversion please follow the instructions found here:

    https://www.prorealcode.com/free-code-conversion/

    Please add any missing information to this topic rather than start a new one.

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