stable/freqtrade/commands/__init__.py

29 lines
1.6 KiB
Python
Raw Normal View History

2020-01-26 12:33:13 +00:00
# flake8: noqa: F401
2020-01-26 12:45:37 +00:00
"""
Commands module.
Contains all start-commands, subcommands and CLI Interface creation.
2020-01-26 12:33:13 +00:00
2020-01-26 12:45:37 +00:00
Note: Be careful with file-scoped imports in these subfiles.
as they are parsed on startup, nothing containing optional modules should be loaded.
"""
from freqtrade.commands.arguments import Arguments
from freqtrade.commands.build_config_commands import start_new_config
from freqtrade.commands.data_commands import (start_convert_data,
start_download_data)
2020-01-26 12:33:13 +00:00
from freqtrade.commands.deploy_commands import (start_create_userdir,
start_new_hyperopt,
start_new_strategy)
from freqtrade.commands.hyperopt_commands import (start_hyperopt_list,
start_hyperopt_show)
from freqtrade.commands.list_commands import (start_list_exchanges,
2020-02-02 15:48:29 +00:00
start_list_hyperopts,
2020-01-26 12:33:13 +00:00
start_list_markets,
start_list_strategies,
start_list_timeframes)
from freqtrade.commands.optimize_commands import (start_backtesting,
start_edge, start_hyperopt)
2020-01-26 12:43:30 +00:00
from freqtrade.commands.pairlist_commands import start_test_pairlist
2020-01-26 12:33:13 +00:00
from freqtrade.commands.plot_commands import (start_plot_dataframe,
start_plot_profit)
from freqtrade.commands.trade_commands import start_trading