mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 12:13:57 +00:00
1 line
178 KiB
JSON
1 line
178 KiB
JSON
|
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Freqtrade","text":"<p>Star</p> <p>Fork</p> <p>Download</p> <p>Follow @freqtrade</p>"},{"location":"#introduction","title":"Introduction","text":"<p>Freqtrade is a cryptocurrency trading bot written in Python.</p> <p>DISCLAIMER</p> <p>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.</p> <p>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.</p> <p>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.</p>"},{"location":"#features","title":"Features","text":"<ul> <li>Based on Python 3.6+: For botting on any operating system \u2014 Windows, macOS and Linux.</li> <li>Persistence: Persistence is achieved through sqlite database.</li> <li>Dry-run mode: Run the bot without playing money.</li> <li>Backtesting: Run a simulation of your buy/sell strategy with historical data.</li> <li>Strategy Optimization by machine learning: Use machine learning to optimize your buy/sell strategy parameters with real exchange data.</li> <li>Edge position sizing: Calculate your win rate, risk reward ratio, the best stoploss and adjust your position size before taking a position for each specific market.</li> <li>Whitelist crypto-currencies: Select which crypto-currency you want to trade or use dynamic whitelists based on market (pair) trade volume.</li> <li>Blacklist crypto-currencies: Select which crypto-currency you want to avoid.</li> <li>Manageable via Telegram or REST APi: Manage the bot with Telegram or via the builtin REST API.</li> <li>Display profit/loss in fiat: Display your profit/loss in any of 33 fiat currencies supported.</li> <li>Daily summary of profit/loss: Receive the daily summary of your profit/loss.</li> <li>Performance status report: Receive the performance status of your current trades.</li> </ul>"},{"location":"#requirements","title":"Requirements","text":""},{"location":"#up-to-date-clock","title":"Up to date clock","text":"<p>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.</p>"},{"location":"#hardware-requirements","title":"Hardware requirements","text":"<p>To run this bot we recommend you a cloud instance with a minimum of:</p> <ul> <li>2GB RAM</li> <li>1GB disk space</li> <li>2vCPU</li> </ul>"},{"location":"#software-requirements","title":"Software requirements","text":"<ul> <li>Python 3.6.x</li> <li>pip (pip3)</li> <li>git</li> <li>TA-Lib</li> <li>virtualenv (Recommended)</li> <li>Docker (Recommended)</li> </ul>"},{"location":"#support","title":"Support","text":"<p>Help / Slack For any questions not covered by the documentation or for further information about the bot, we encourage you to join our Slack channel.</p> <p>Click here to join Slack channel.</p>"},{"location":"#ready-to-try","title":"Ready to try?","text":"<p>Begin by reading our installation guide here.</p>"},{"location":"backtesting/","title":"Backtesting","text":"<p>This page explains how to validate your strategy performance by using Backtesting.</p>"},{"location":"backtesting/#test-your-strategy-with-backtesting","title":"Test your strategy with Backtesting","text":"<p>Now you have good Buy and Sell strategies, you want to test it against real data. This is what we call backtesting.</p> <p>Backtesting will use the crypto-currencies (pair) from your config file and load static tickers located in /freqtrade/tests/testdata. If the 5 min and 1 min ticker for the crypto-currencies to test is not already in the <code>testdata</code> folder, backtesting will download them automatically. Testdata files will not be updated until you specif
|