From 36d5bb6f9939c91510f4721b358aff3568d921a6 Mon Sep 17 00:00:00 2001 From: hroff-1902 Date: Tue, 15 Oct 2019 21:11:41 +0300 Subject: [PATCH] Adjust ADX placement in the comments --- user_data/strategies/sample_strategy.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/user_data/strategies/sample_strategy.py b/user_data/strategies/sample_strategy.py index 6870de190..35ddbdf68 100644 --- a/user_data/strategies/sample_strategy.py +++ b/user_data/strategies/sample_strategy.py @@ -98,15 +98,16 @@ class SampleStrategy(IStrategy): :return: a Dataframe with all mandatory indicators for the strategies """ - # Momentum Indicator + # Momentum Indicators # ------------------------------------ - # ADX - # dataframe['adx'] = ta.ADX(dataframe) - # RSI dataframe['rsi'] = ta.RSI(dataframe) + """ + # ADX + # dataframe['adx'] = ta.ADX(dataframe) + # Awesome oscillator dataframe['ao'] = qtpylib.awesome_oscillator(dataframe) @@ -253,7 +254,7 @@ class SampleStrategy(IStrategy): dataframe['ha_low'] = heikinashi['low'] """ - # Retrieve best bid and best ask + # Retrieve best bid and best ask from the orderbook # ------------------------------------ """ # first check if dataprovider is available