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.
|
|
|
|
"""
|
2022-05-22 22:24:52 +00:00
|
|
|
from freqtrade.commands.analyze_commands import start_analysis_entries_exits
|
2020-01-26 12:41:04 +00:00
|
|
|
from freqtrade.commands.arguments import Arguments
|
2020-01-29 20:28:01 +00:00
|
|
|
from freqtrade.commands.build_config_commands import start_new_config
|
2021-09-29 14:50:05 +00:00
|
|
|
from freqtrade.commands.data_commands import (start_convert_data, start_convert_trades,
|
|
|
|
start_download_data, start_list_data)
|
2022-05-10 05:01:41 +00:00
|
|
|
from freqtrade.commands.db_commands import start_convert_db
|
2021-01-10 12:55:16 +00:00
|
|
|
from freqtrade.commands.deploy_commands import (start_create_userdir, start_install_ui,
|
2021-09-11 06:36:57 +00:00
|
|
|
start_new_strategy)
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.commands.hyperopt_commands import start_hyperopt_list, start_hyperopt_show
|
2022-10-14 16:20:49 +00:00
|
|
|
from freqtrade.commands.list_commands import (start_list_exchanges, start_list_freqAI_models,
|
|
|
|
start_list_markets, start_list_strategies,
|
|
|
|
start_list_timeframes, start_show_trades)
|
2021-10-31 08:55:19 +00:00
|
|
|
from freqtrade.commands.optimize_commands import (start_backtesting, start_backtesting_show,
|
2021-10-30 08:26:05 +00:00
|
|
|
start_edge, start_hyperopt)
|
2020-01-26 12:43:30 +00:00
|
|
|
from freqtrade.commands.pairlist_commands import start_test_pairlist
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.commands.plot_commands import start_plot_dataframe, start_plot_profit
|
2022-12-27 19:14:39 +00:00
|
|
|
from freqtrade.commands.strategy_utils_commands import start_strategy_update
|
2020-01-26 12:33:13 +00:00
|
|
|
from freqtrade.commands.trade_commands import start_trading
|
2021-06-20 13:18:41 +00:00
|
|
|
from freqtrade.commands.webserver_commands import start_webserver
|