CryptoCurrency / Docker · October 14, 2021

FreqTrade: Manage a fleet of Crypto-Bots!

Hey there! In this tutorial, I’ll teach you how to consolidate all your FreqTrade instances (you do have more than a couple, right?!) in to a single dashboard, so you can easily see how your strategies are performing in a single, cohesive dashboard! By the way, this is all NATIVE to FreqTrade!

Also, if you’re looking for a great machine to run your fleet of FreqTrade bots on, I highly recommend this small form-factor Intel NUC – this is an amazing price on a rock-solid piece of hardware, in a compact, silent, power-efficient format! Please note this is an affiliate link and I may receive a commission from your purchase. Clicking this link and completing your regular Amazon purchases is an easy no-cost way to support the channel!

If you haven’t already seen the video, do check it out:

https://youtu.be/09NeF22yrkQ?t=1

I’m guessing you came here for the example code. Here’s what you need in your user_data/config.json file

"api_server": {
        "enabled": true,
        "enable_openapi": true,
        "listen_ip_address": "0.0.0.0",
        "listen_port": 8080,
        "verbosity": "info",
        "jwt_secret_key": "somethingrandom",
        "CORS_origins": ["https://freqtrade.dmz.bunnitrade.com"],
        "username": "api",
        "password": "api"
    },

The key there is the CORS entry: This should be the fully-qualified URL of your primary “dashboard” FreqTrade instance. You’ll use this same entry on all your bots.

Do let me know if you have questions! Comment on the YouTube video, or hit me up on Twitter @OMGTheCloud

Thanks!