RSI to price
rsi_to_price
(candles: List[[Candle]], rsi_expected: float, period: int = 14, column="close") -> Decimal
Parametres:
candles: List[[Candle]]
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
Relative Strenth Index (RSI) to price
Last updated