Skip to content

Home

freqtrade

Freqtrade CI DOI Coverage Status Maintainability

Star Fork Download

Introduction

Freqtrade is a free and open source crypto trading bot written in Python. It is designed to support all major exchanges and be controlled via Telegram or webUI. It contains backtesting, plotting and money management tools as well as strategy optimization by machine learning.

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.

freqtrade screenshot

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 WebUI (start/stop the bot, show profit/loss, daily summary, current open trades results, etc.).
  • Analyze: 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.

Supported Futures Exchanges (experimental)

Please make sure to read the exchange specific notes, as well as the trading with leverage documentation before diving in.

Community tested

Exchanges confirmed working by the community:

Community showcase

This section will highlight a few projects from members of the community.

Note

The projects below are for the most part not maintained by the freqtrade , therefore use your own caution before using them.

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.9+
  • 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.