found a quick and dirty hack. Placing a file in your jesse project
content
from jesse.config import config
config['app']['trading_mode'] = 'import-candles'
from jesse.services import db
from jesse.modes import import_candles_mode
symbols = ['your','symbols']
for symbol in symbols:
import_candles_mode.run('Binance', symbol + 'USDT', '2020-01-01',skip_confirmation=True)
db.close_connection()
if someone got a better way please post