freqtrade_origin/freqtrade/data/__init__.py
2024-07-03 12:01:22 +02:00

10 lines
185 B
Python

"""
Module to handle data operations for freqtrade
"""
from freqtrade.data import converter
# limit what's imported when using `from freqtrade.data import *`
__all__ = ["converter"]