DEV Community

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

Posted on

2 1

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

Image of Datadog

The Essential Toolkit for Front-end Developers

Take a user-centric approach to front-end monitoring that evolves alongside increasingly complex frameworks and single-page applications.

Get The Kit

Top comments (0)

Billboard image

Try REST API Generation for MS SQL Server.

DevOps for Private APIs. With DreamFactory API Generation, you get:

  • Auto-generated live APIs mapped from database schema
  • Interactive Swagger API documentation
  • Scripting engine to customize your API
  • Built-in role-based access control

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay