RSI to price
It yields the price at which the anticipated RSI value will be attained.
Relative Strenth Index (RSI) to price
Last updated
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:
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
Last updated