Skip to content

csulit/freqtrade-hyperopt-running-in-cloud-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Freqtrade Hyperopt running in cloud example

Quick example for optimizing an existing strategy and running in cloud

In this example we will take an existing strategy, Strategy004 and we will use Hyperopt Parameters to find more optimal settings with recent trading data. We will run our experiment in the cloud.

There is a screencast available to right here. Enjoy!

Setting up Freqtrade on your local machine

In order to install and setup Freqtrade, I recommend following the instructions in the Optimize trading strategy using Freqtrade repo first.

Run this demo

Assuming you have already installed freqtrade as shown above and are running using Docker, you can do the following to run this demo:

  1. Clone this repo
  2. Start Bot in Dry Run as a quick check using docker-compose upand check the log output to confirm it is correctly using Strategy004 and using the expected parameters.
  3. Stop the Bot using docker-compose down
  4. Run the hyperopt locally with just 2 epochs as a quick check that the Hyperopt is working
  5. Start up a new instance, that has at least 4 CPU cores using the cloud provbider of your choice such as AWS, Digital Ocean or other
  6. Install Docker and other dependencies on your new cloud instance
  7. Run the bot hyperopt on the machine using 4000 epochs.

How to setup from scratch

  1. Download docker compose curl https://raw.githubusercontent.com/freqtrade/freqtrade/stable/docker-compose.yml -o docker-compose.yml and pull down the image dc pull
  2. Run scaffold dcr freqtrade create-userdir --userdir user_data
  3. Run config generator dcr freqtrade new-config --config user_data/config.json
  4. Update config pairs with the pairs you want to use
  5. Copy Strategy004 (or the strategy you want to use)
  6. Update docker-compose.yml strategy using --strategy Strategy004
  7. Run dry run check docker-compose up
  8. Update the strategy with a few Hyperopt params to begin with so that you can test you have everything wired up.
  9. Download Data for Hyperopt, for example 5m candles: dcr freqtrade download-data --exchange binance -t 5m
  10. Run Hyperopt tool to check with just 2 epochs dcr freqtrade hyperopt --hyperopt-loss SharpeHyperOptLoss --strategy Strategy004 -i 5m -e 2
  11. Deploy to cloud git clone https://github.com/devbootstrap/freqtrade-hyperopt-running-in-cloud-example.git (assumes cloud instance already setup with git, docker and so on installed). cd freqtrade-hyperopt-running-in-cloud-example/ft_userdata
  12. Pull image onto the cloud instance dc pull (assumes you are in the correct directory and have aliased the command dc to docker-compose)
  13. Run hyperopt 3000 (or more if you like) epochs dcr freqtrade hyperopt --hyperopt-loss SharpeHyperOptLoss --strategy Strategy004 -i 5m -e 3000
  14. End hyperopt and update strategy with results by updating the default values in the strategy hyperopt params.
  15. Run dry run again and maybe go live.

About

An example of optimizing an existing strategy using Freqtrade Hyperopt Parameters

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 78.6%
  • Jupyter Notebook 21.4%