Files
jesse-trading/jesse/services/project_maker/project_template/routes.py
2021-01-01 17:08:43 +01:00

17 lines
495 B
Python

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Make sure to read the docs about routes if you haven't already:
# https://docs.jesse.trade/docs/routes.html
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
from jesse.utils import anchor_timeframe
# trading routes
routes = [
('Binance', 'BTC-USDT', '4h', 'ExampleStrategy'),
]
# in case your strategy requires extra candles, timeframes, ...
extra_candles = [
('Binance', 'BTC-USDT', anchor_timeframe('4h')),
]