For the complete documentation index, see llms.txt. This page is also available as Markdown.

RSI to price

It yields the price at which the anticipated RSI value will be attained.

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

Relative Strenth Index (RSI) to price

Last updated