RSI to price

rsi_to_price(candles: List[[Candle]], rsi_expected: float, period: int = 14, column="close") -> Decimal

  • Parametres:

    List of candles

    • rsi_expected: float

    70 typically signals that an asset is overbought, below 30 suggests it is oversold.

    • period: int, default 14

    Period of RSI ema

    • column: str, default 'close'

    OHLC - Open high low close.

  • Returns:

    • Price

Example

Last updated