diff --git a/freqtrade/data/__init__.py b/freqtrade/data/__init__.py index f716abfc5..492155031 100644 --- a/freqtrade/data/__init__.py +++ b/freqtrade/data/__init__.py @@ -2,5 +2,8 @@ Module to handle data operations for freqtrade """ +from freqtrade.data import converter + + # limit what's imported when using `from freqtrade.data import *` __all__ = ["converter"]