FreqTrade | How to replicate BOTS FAST! Plus! .ENV variables in Docker Stack Deploy? Yes you can!

Поделиться
HTML-код
  • Опубликовано: 29 дек 2024

Комментарии • 40

  • @pacholoamit4408
    @pacholoamit4408 3 года назад +6

    Hey, Thanks for posting your tutorials... I discovered your channel yesterday since freqtrade tutorials on yt are fairly scarce. Just when I asked myself how I'd redeploy multiple bots with different strats, you came up with this masterpiece. Thanks!

  • @lightning_dynamics
    @lightning_dynamics 3 года назад +2

    your channel helped me a lot to improof my freqtrade here and there....thanks for sharing mate !!!

  • @avocadogreen4682
    @avocadogreen4682 3 года назад +1

    Simply fantastic, I was able to see the entire video, subscribe and like, greetings from Venezuela

  • @brycejianchen2795
    @brycejianchen2795 3 года назад +1

    Thank you this is very helpful! I'm new to docker, neve heard of portainer, been confused by the overwhelming docker commands, and thank you for the video

    • @OMGTheCloud
      @OMGTheCloud  3 года назад

      Glad it was helpful! Portainer is a docker container itself, but provides a nice Web UI to manage your containers and stacks. It’s very helpful for beginners and experienced docker users alike! Check out my video on how to set up Portainer, I think it will help!

  • @adnandehghani7325
    @adnandehghani7325 3 года назад +1

    Thank you for sharing, today I just realized that i haven't enabled notification from your channel, but from now on I will watch your videos as soon as they are uploaded.
    I think that would be great if you upload some content about strategies that you have been using recently with good results

  • @l.i.2185
    @l.i.2185 3 года назад +1

    Thank you for the video and for the code. Having one strategy on dry-run and optimizing it on the same machine using docker is not that easy. It is good to know faced the same challenge, being now a few steps ahead.

  • @maletico
    @maletico 3 года назад +1

    Thanks for posting your tutorials

  • @akunabalaja6435
    @akunabalaja6435 2 года назад +1

    Thank you for the clear tutorial... Great channel. Subscribed!

  • @amazingvg6311
    @amazingvg6311 2 года назад

    17:23 it's true, you answer ! i've seen it. Please tell me I want close price in japanese candle but I dont know how, I found this example dataframe['ha_close'] = heikinashi['close']

  • @585_arishanwarsamad6
    @585_arishanwarsamad6 3 года назад +1

    keep going man !

  • @kologniale
    @kologniale 3 года назад +1

    This video helped me a lot, thks!

  • @jurajdurej
    @jurajdurej 2 года назад +1

    thank you my friend

  • @bibinvarghesethekkan5674
    @bibinvarghesethekkan5674 3 года назад +1

    Gr8 video! can you do a video or blog starting from scrach and using local host. creating trafeik docker stacks from start

    • @OMGTheCloud
      @OMGTheCloud  3 года назад

      Just so happens I have made that video already! Check out “Traefik 2 with Lets Encrypt” in my channel 👍

  • @k00a7
    @k00a7 3 года назад +1

    Thank you for taking time for the video's. Have a question, Is there a preference of using docker swarm vs K8s.

    • @OMGTheCloud
      @OMGTheCloud  3 года назад +1

      That's a great question. Personally, I have been working in the background with K8s and K3s, and (completely personal opinion) Docker Swarm is far easier with far more documentation and example configs. I really want to use Kubernetes for a few specific features, but have yet to get it working to my satisfaction. I'm always learning too!

  • @jeronpng116
    @jeronpng116 10 месяцев назад

    in the docker-compose.yml, i saw the directory still pointing to /freqtrade/user_data, /freqtrade/user_data/logs etc. Since you creating a different folder for different bot, shouldnt the "freqtrade" replace by the bot folder name?

  • @iTTiRiTzz
    @iTTiRiTzz Год назад

    Thank you for your video. How to replicate bot as a multi user? Everyone use the same bot but individual key, is it possible?

  • @superdubb
    @superdubb 3 года назад

    Thanks much! Does one of your videos explain the differences between docker-compose vs docker stack deploy using freqtrade?

    • @OMGTheCloud
      @OMGTheCloud  3 года назад

      Great question! In this series, I don’t go in to depth on those differences, however in my upcoming Docker series, releasing soon, I do discuss at length when you would choose Docker swarm vs Docker Compose. There’s advantages to both and they’re closely related

    • @superdubb
      @superdubb 3 года назад +1

      @@OMGTheCloud Thanks! I looked up the difference just now between stack and compose. Seems very in depth and I'm really not sure how it applies to freqtrade. Definitely curious on your take! TY!

    • @OMGTheCloud
      @OMGTheCloud  3 года назад

      The very short version as it applies to FreqTrade is this: with Docker Swarm, you can deploy your bots to a cluster of Worker nodes, and let Swarm decide where it should be deployed based on availability of resources. If a node were to crash or get overloaded, Swarm would re-deploy it on another Worker node. In this video, I teach you how to do something a bit more advanced: use .ENV variables with Swarm, which normally you cannot do; you usually have to use Compose for that. This lets you keep your docker-compose.yml file as generic as possible for rapid FreqTrade deployments and strategy testing, packing all those details in to the .ENV file instead. Teaching this principal in the context of FreqTrade helps people to understand the "yeah, but why?" of why we would want to do such a thing. Hope this helps, and thank you for your support!!

    • @superdubb
      @superdubb 3 года назад +1

      @@OMGTheCloud NO! The thanks go to you and your generosity. I mean it! Beers on me!

    • @superdubb
      @superdubb 3 года назад

      @@OMGTheCloud I like how you've kept each strategy in it's own folder. Seems very clean and organized. Normally, I use one docker-compose.yml file with pointing to each strategy file but all the strategy files and config are stored all in the same folders which can get very messy if you've got lots of bots running. Can this be done with docker-compose?

  • @TradingBantai
    @TradingBantai 2 года назад

    Can freqtrade developers access the strategy that we create.

    • @OMGTheCloud
      @OMGTheCloud  2 года назад

      No. FreqTrade runs locally on your server, it is not a cloud-based service. Your strategy file is not sent or shared to anyone.

    • @TradingBantai
      @TradingBantai 2 года назад +1

      @@OMGTheCloud Thank you

  • @mayhemtracks7530
    @mayhemtracks7530 2 года назад

    Yo Omg…can you help me with doing the docker stack deploy to gcloud

    • @OMGTheCloud
      @OMGTheCloud  2 года назад

      Hey there! I wish I could help. I have not personally used GCP before, but if you are able to deploy generic Debian virtual machines, then it should be just the same. Let me know how it goes!

    • @mayhemtracks7530
      @mayhemtracks7530 2 года назад

      @@OMGTheCloud im having trouble getting it set up even on server. im willing to compensate for the help

  • @nishu4288
    @nishu4288 2 года назад

    Are You Still Runnning Those BOT?

    • @OMGTheCloud
      @OMGTheCloud  2 года назад

      I sure am! Crypto has been doing extremely well the last several weeks, so they're performing very well

  • @RealElwood1
    @RealElwood1 2 года назад

    Instead of separate catalogues, can't you just start docker-compose -f {docker-compose-custom.yml}. Having one custom file for each strategy? Would it be the same result?

    • @OMGTheCloud
      @OMGTheCloud  2 года назад

      That should work too, as long as you have all your variables properly defined in your .env so the bots dont conflict