diff --git a/freqtrade/strategy/__init__.py b/freqtrade/strategy/__init__.py index d5fb9b7ae..e99473b4e 100644 --- a/freqtrade/strategy/__init__.py +++ b/freqtrade/strategy/__init__.py @@ -1,5 +1,4 @@ # flake8: noqa: F401 - from freqtrade.exchange import ( timeframe_to_minutes, timeframe_to_msecs, @@ -26,20 +25,21 @@ from freqtrade.strategy.strategy_helper import ( # Imports to be used for `from freqtrade.strategy import *` __all__ = [ - "timeframe_to_minutes", - "timeframe_to_next_date", - "timeframe_to_prev_date", - "informative", "IStrategy", "Trade", "Order", "PairLocks", + "informative", # Parameters "BooleanParameter", "CategoricalParameter", "DecimalParameter", "IntParameter", "RealParameter", + # timeframe helpers + "timeframe_to_minutes", + "timeframe_to_next_date", + "timeframe_to_prev_date", # Strategy helper functions "merge_informative_pair", "stoploss_from_absolute",