Conversion of indicator: Kalman Filter from Tradingview

Forums ProRealTime English forum ProBuilder support Conversion of indicator: Kalman Filter from Tradingview

Viewing 5 posts - 1 through 5 (of 5 total)
  • #196839

    Indicator Kalman Filter. It allows efficiently smoothing the noise, extracting the main trend from it.

    Kalman Filter is a variety of recursive filters. To assess the system status as of the current operation tact, it needs a status assessment (as the system status assessment and the error assessment of defining this status) at the preceding operation tact, and measuring at the current tact. This property distinguishes it from packet filters requiring to know at the current operation tact the history of measurements and/or assessments.

    More about Kalman Filter.

    The indicator has three input parameters:

    • K – Kalman factor;
    • Sharpness – factor for calculating the error minimization;
    • Applied price – price used for calculations.

    Calculations:

    where:

    //@version=5
    indicator(‘Kalman Filter [Loxx]’, overlay = true, shorttitle=”KF [Loxx]”, timeframe=””, timeframe_gaps=true)

    src = input(ohlc4)
    Sharpness = input.float(1.0)
    K = input.float(1.0)

    greencolor = color.lime
    redcolor = color.red

    velocity = 0.0
    kfilt = 0.0

    Distance = src – nz(kfilt[1], src)
    Error = nz(kfilt[1], src) + Distance * math.sqrt(Sharpness*K/ 100)
    velocity := nz(velocity[1], 0) + Distance*K / 100
    kfilt := Error + velocity

    plot(kfilt, color=velocity > 0 ? greencolor : redcolor, linewidth = 2)

    #196841

    Screenshot:

    Screenshot-2022-07-06-173955

    #196844

    Code is attached. Thank you

    #196854

    You can find 3 versions of the Kalman Filter in the code attached to this topic (huge indicator with 67 different type of moving averages):

    https://www.prorealcode.com/topic/indicateur-afr-average-filter-regression/#post-36039

    #196913

    Thank you Nicolas.

Viewing 5 posts - 1 through 5 (of 5 total)

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