Skip to content

Home

freqtrade

Freqtrade CI Coverage Status Maintainability

Star Fork Download

Introduction

Freqtrade is a crypto-currency algorithmic trading software developed in python (3.7+) and supported on Windows, macOS and Linux.

DISCLAIMER

This software is for educational purposes only. Do not risk money which you are afraid to lose. USE THE SOFTWARE AT YOUR OWN RISK. THE AUTHORS AND ALL AFFILIATES ASSUME NO RESPONSIBILITY FOR YOUR TRADING RESULTS.

Always start by running a trading bot in Dry-run and do not engage money before you understand how it works and what profit/loss you should expect.

We strongly recommend you to have basic coding skills and Python knowledge. Do not hesitate to read the source code and understand the mechanisms of this bot, algorithms and techniques implemented in it.

Features

  • Develop your Strategy: Write your strategy in python, using pandas. Example strategies to inspire you are available in the strategy repository.
  • Download market data: Download historical data of the exchange and the markets your may want to trade with.
  • Backtest: Test your strategy on downloaded historical data.
  • Optimize: Find the best parameters for your strategy using hyperoptimization which employs machining learning methods. You can optimize buy, sell, take profit (ROI), stop-loss and trailing stop-loss parameters for your strategy.
  • Select markets: Create your static list or use an automatic one based on top traded volumes and/or prices (not available during backtesting). You can also explicitly blacklist markets you don't want to trade.
  • Run: Test your strategy with simulated money (Dry-Run mode) or deploy it with real money (Live-Trade mode).
  • Run using Edge (optional module): The concept is to find the best historical trade expectancy by markets based on variation of the stop-loss and then allow/reject markets to trade. The sizing of the trade is based on a risk of a percentage of your capital.
  • Control/Monitor: Use Telegram or a REST API (start/stop the bot, show profit/loss, daily summary, current open trades results, etc.).
  • Analyse: Further analysis can be performed on either Backtesting data or Freqtrade trading history (SQL database), including automated standard plots, and methods to load the data into interactive environments.

Supported exchange marketplaces

Please read the exchange specific notes to learn about eventual, special configurations needed for each exchange.

Community tested

Exchanges confirmed working by the community:

Requirements

Hardware requirements

To run this bot we recommend you a linux cloud instance with a minimum of:

  • 2GB RAM
  • 1GB disk space
  • 2vCPU

Software requirements

  • Docker (Recommended)

Alternatively

  • Python 3.7+
  • pip (pip3)
  • git
  • TA-Lib
  • virtualenv (Recommended)

Support

Help / Discord

For any questions not covered by the documentation or for further information about the bot, or to simply engage with like-minded individuals, we encourage you to join the Freqtrade discord server.

Ready to try?

Begin by reading the installation guide for docker (recommended), or for installation without docker.