Functions
talib.percentile_linear_interpolation()
The requested `percentile` of `source` over `length` bars, interpolating between the two values that straddle the rank. Because it interpolates, the result need not be a value that actually occurred in the window.
Syntax
talib.percentile_linear_interpolation(series float source, series int length, series float percentile) → series float
Arguments
source required series float The series to take the percentile of. length required series int How many bars the window covers. percentile required series float The percentile wanted. Int or float. Return Type
series float