17 lines
495 B
Python
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')),
|
|
]
|