stable/freqtrade/main.py

61 lines
1.4 KiB
Python
Raw Normal View History

2017-11-07 16:54:44 +00:00
#!/usr/bin/env python3
"""
Main Freqtrade bot script.
Read the documentation to know what cli arguments you need.
"""
2017-05-12 17:11:56 +00:00
import logging
2017-11-17 16:18:31 +00:00
import sys
from argparse import Namespace
2019-03-25 14:45:03 +00:00
from typing import List
2018-03-17 21:44:47 +00:00
2019-03-25 14:45:03 +00:00
from freqtrade import OperationalException
from freqtrade.arguments import Arguments
2019-03-25 14:45:03 +00:00
from freqtrade.configuration import set_loggers
from freqtrade.worker import Worker
2018-03-25 19:37:14 +00:00
logger = logging.getLogger('freqtrade')
2018-01-15 08:35:11 +00:00
2018-03-17 23:02:02 +00:00
def main(sysargv: List[str]) -> None:
2017-05-12 17:11:56 +00:00
"""
This function will initiate the bot and start the trading loop.
:return: None
"""
arguments = Arguments(
sysargv,
2019-01-03 13:38:38 +00:00
'Free, open source crypto trading bot'
)
2019-03-25 14:45:03 +00:00
args: Namespace = arguments.get_parsed_arg()
# A subcommand has been issued.
# Means if Backtesting or Hyperopt have been called we exit the bot
if hasattr(args, 'func'):
args.func(args)
return
2017-11-08 20:17:51 +00:00
2019-03-22 20:41:48 +00:00
worker = None
return_code = 1
try:
2019-03-22 17:16:54 +00:00
# Load and run worker
worker = Worker(args)
worker.run()
except KeyboardInterrupt:
2018-02-24 16:33:08 +00:00
logger.info('SIGINT received, aborting ...')
return_code = 0
2018-06-07 19:35:57 +00:00
except OperationalException as e:
logger.error(str(e))
return_code = 2
except BaseException:
2018-02-24 16:33:08 +00:00
logger.exception('Fatal exception!')
finally:
2019-03-22 20:41:48 +00:00
if worker:
2019-03-22 17:16:54 +00:00
worker.exit()
sys.exit(return_code)
2017-09-28 21:47:51 +00:00
if __name__ == '__main__':
set_loggers()
main(sys.argv[1:])