트레이딩
트레이딩봇 개발일기 2
freewizard
2022. 6. 3. 16:51
docker-compose run --rm freqtrade download-data --pairs ETH/BTC --exchange binance --days 5 -t 1h
// download data
docker-compose run --rm freqtrade download-data --days 999 -t 5m 15m 30m 1h 2h 4h 1d 1w
// run backtest
docker-compose run --rm freqtrade backtesting --strategy SampleStrategy
freqtrade installed by docker has to be run by the command
docker-compose run --rm freqtrade
it makes an container to run the command then terminates the instance.