stable/docs/index.md

66 lines
4.2 KiB
Markdown
Raw Normal View History

2018-12-30 16:58:06 +00:00
# Freqtrade
2018-12-30 17:22:28 +00:00
[![Build Status](https://travis-ci.org/freqtrade/freqtrade.svg?branch=develop)](https://travis-ci.org/freqtrade/freqtrade)
[![Coverage Status](https://coveralls.io/repos/github/freqtrade/freqtrade/badge.svg?branch=develop&service=github)](https://coveralls.io/github/freqtrade/freqtrade?branch=develop)
[![Maintainability](https://api.codeclimate.com/v1/badges/5737e6d668200b7518ff/maintainability)](https://codeclimate.com/github/freqtrade/freqtrade/maintainability)
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/freqtrade/freqtrade" data-icon="octicon-star" data-size="large" aria-label="Star freqtrade/freqtrade on GitHub">Star</a>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/freqtrade/freqtrade/fork" data-icon="octicon-repo-forked" data-size="large" aria-label="Fork freqtrade/freqtrade on GitHub">Fork</a>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/freqtrade/freqtrade/archive/master.zip" data-icon="octicon-cloud-download" data-size="large" aria-label="Download freqtrade/freqtrade on GitHub">Download</a>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/freqtrade" data-size="large" aria-label="Follow @freqtrade on GitHub">Follow @freqtrade</a>
2018-12-30 16:58:06 +00:00
## Introduction
2019-11-28 20:21:43 +00:00
Freqtrade is a crypto-currency algorithmic trading software develop in python (3.6+) supported on windows, macOs and Linux.
2018-12-30 16:58:06 +00:00
!!! Danger "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.
2018-01-02 02:17:10 +00:00
2018-12-30 16:58:06 +00:00
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.
2018-06-26 21:14:12 +00:00
2019-03-04 20:44:44 +00:00
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.
2018-12-30 16:58:06 +00:00
## Features
1. Download market data: Download historical data of the exchange and the markets your may want to trade with.
2. Select markets: Create your list or use an automatic one based on top traded volume (not available during backtesting). You can blacklist markets you don't want to trade.
3. Backtest: Test your strategy on past data (based on [ohlcv](https://en.wikipedia.org/wiki/Open-high-low-close_chart) candles).
4. Optimize: Find the best parameters for your strategy using machining learning. You can optimize buy, sell, take profit (ROI) and stop-loss.
5. Run: Run the bot on exchange with simulated money (dry-run) or with real money (live).
6. Run using edge (optional module): The concept is to find the best historical [trade expectancy](https://www.freqtrade.io/en/latest/edge/#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).
7. Control/Monitor/Analyse: Use Telegram or a REST API (start/stop the bot, profit/loss, daily summary, current open trades results...). Futher analysis can be done as trades are saved (SQLite database).
2018-12-30 16:58:06 +00:00
2018-12-30 17:03:09 +00:00
## Requirements
2019-03-04 20:44:44 +00:00
### Up to date clock
2019-03-04 20:44:44 +00:00
The clock on the system running the bot must be accurate, synchronized to a NTP server frequently enough to avoid problems with communication to the exchanges.
2018-12-30 17:03:09 +00:00
### Hardware requirements
2018-12-30 17:03:09 +00:00
To run this bot we recommend you a cloud instance with a minimum of:
- 2GB RAM
- 1GB disk space
- 2vCPU
### Software requirements
2018-12-30 17:03:09 +00:00
- Python 3.6.x
2019-03-04 20:44:44 +00:00
- pip (pip3)
2018-12-30 17:03:09 +00:00
- git
- TA-Lib
- virtualenv (Recommended)
- Docker (Recommended)
2018-12-30 16:58:06 +00:00
## Support
2018-12-30 16:58:06 +00:00
Help / Slack
2019-03-04 20:44:44 +00:00
For any questions not covered by the documentation or for further information about the bot, we encourage you to join our Slack channel.
2018-12-30 16:58:06 +00:00
2019-09-26 17:36:09 +00:00
Click [here](https://join.slack.com/t/highfrequencybot/shared_invite/enQtNjU5ODcwNjI1MDU3LTU1MTgxMjkzNmYxNWE1MDEzYzQ3YmU4N2MwZjUyNjJjODRkMDVkNjg4YTAyZGYzYzlhOTZiMTE4ZjQ4YzM0OGE) to join Slack channel.
2018-12-30 17:06:09 +00:00
## Ready to try?
2019-03-04 20:44:44 +00:00
Begin by reading our installation guide [here](installation).