Freqtrade is a standalone platform. It supports data acquisition, indicators and expert advisors (strategies). You may use backtest with fixed parameters as well as apply optimization to boost the performance. Spot market as well as derivatives usage has been built in.
Beginners may rely on functional web interface. Advanced users may utilize command line interface.
Check config.json to be configured for futures:
- trading mode
"trading_mode": "futures",
"margin_mode": "isolated",
- exchange pairs
"exchange": {
"name": "binance",
"sandbox": true,
"key": "your_exchange_key",
"secret": "your_exchange_secret",
"password": "",
"log_responses": false,
"ccxt_config": {},
"ccxt_async_config": {},
"pair_whitelist": [
"BTC/USDT",
"ETH/USDT"
],
"outdated_offset": 5,
"markets_refresh_interval": 60
}
Leverage trading requires a custom strategy. For details inspect freqtrade/strategy/interface.py
Read the full article at https://product-development-service.blogspot.com/2022/06/trade-binance-futures-with-freqtrade.html
Top comments (0)