inglor38

Results 4 comments of inglor38

def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: # RSI dataframe["rsi"] = ta.RSI(dataframe, timeperiod=14) # SMA dataframe["sma"] = ta.SMA(dataframe["rsi"], timeperiod=14) I wrote as above, it gives an error. 31 Eki...

Can't control outputs. After writing all the positive data in this way, it turns negative. It seems that rsi cannot take the sma when I examine it in detail. 31...

from freqtrade.strategy import IStrategy from pandas import DataFrame import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib from technical.util import resample_to_interval, resampled_merge from freqtrade.strategy import CategoricalParameter, DecimalParameter, IntParameter class cingene(IStrategy): INTERFACE_VERSION:...

But i need rsisma compare rsi 31 Eki 2022 Pzt 17:14 tarihinde Alexander Trufanov ***@***.***> şunu yazdı: > compare RSI, not SMA > > — > Reply to this email...