Lipi Reference Lipi

Functions

talib.lowest()

The lowest value `source` reached in the last `length` bars. It is the counterpart of `talib.highest` and takes the same two arguments.

Syntax

                talib.lowest(series float source, series int length) → series float
              

Arguments

source required series float The series to search.
length required series int How many bars the search covers.

Return Type

series float

Example


          //@version=5
indicator("Lowest Low", overlay=true)
length = input(20, "Length")
lowestLow = talib.lowest(low, length)
plot(lowestLow, color=color.red, title="Lowest Low")