DEV Community

Cover image for Trade binance futures with freqtrade
Siarhei Siniak
Siarhei Siniak

Posted on

Trade binance futures with freqtrade

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:

  1. trading mode
        "trading_mode": "futures",

        "margin_mode": "isolated",
Enter fullscreen mode Exit fullscreen mode
  1. 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
        }
Enter fullscreen mode Exit fullscreen mode

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

Latest comments (0)