small cleanup

This commit is contained in:
robcaulk
2022-05-25 14:42:46 +02:00
parent b79d4e8876
commit 7593339c14
2 changed files with 1 additions and 2 deletions

View File

@@ -110,7 +110,7 @@ by prepending indicators with `%`:
```python
def populate_any_indicators(self, metadata, pair, df, tf, informative=None, coin=""):
informative['%-''%-' + coin + "rsi"] = ta.RSI(informative, timeperiod=14)
informative['%-' + coin + "rsi"] = ta.RSI(informative, timeperiod=14)
informative['%-' + coin + "mfi"] = ta.MFI(informative, timeperiod=25)
informative['%-' + coin + "adx"] = ta.ADX(informative, window=20)
bollinger = qtpylib.bollinger_bands(qtpylib.typical_price(informative), window=14, stds=2.2)