stable/docs/faq.md

183 lines
9.4 KiB
Markdown
Raw Normal View History

# Freqtrade FAQ
2020-06-30 09:01:00 +00:00
## Beginner Tips & Tricks
2020-12-01 20:38:54 +00:00
* When you work with your strategy & hyperopt file you should use a proper code editor like VSCode or PyCharm. A good code editor will provide syntax highlighting as well as line numbers, making it easy to find syntax errors (most likely pointed out by Freqtrade during startup).
2020-06-30 09:01:00 +00:00
## Freqtrade common issues
2018-01-02 02:17:10 +00:00
### The bot does not start
2020-12-01 20:38:54 +00:00
Running the bot with `freqtrade trade --config config.json` shows the output `freqtrade: command not found`.
2020-12-01 20:38:54 +00:00
This could be caused by the following reasons:
2020-12-01 20:49:50 +00:00
* The virtual environment is not active.
2020-12-01 20:50:51 +00:00
* Run `source .env/bin/activate` to activate the virtual environment.
* The installation did not work correctly.
* Please check the [Installation documentation](installation.md).
### I have waited 5 minutes, why hasn't the bot made any trades yet?
2018-01-02 02:17:10 +00:00
2020-08-13 06:02:36 +00:00
* Depending on the buy strategy, the amount of whitelisted coins, the
2020-12-01 20:38:54 +00:00
situation of the market etc, it can take up to hours to find a good entry
position for a trade. Be patient!
2018-01-02 02:17:10 +00:00
2020-12-02 07:40:49 +00:00
* It may be because of a configuration error. It's best to check the logs, they usually tell you if the bot is simply not getting buy signals (only heartbeat messages), or if there is something wrong (errors / exceptions in the log).
2020-06-30 09:01:00 +00:00
2020-12-01 20:38:54 +00:00
### I have made 12 trades already, why is my total profit negative?
2018-01-02 02:17:10 +00:00
2018-12-31 13:00:36 +00:00
I understand your disappointment but unfortunately 12 trades is just
not enough to say anything. If you run backtesting, you can see that our
current algorithm does leave you on the plus side, but that is after
thousands of trades and even there, you will be left with losses on
specific coins that you have traded tens if not hundreds of times. We
of course constantly aim to improve the bot but it will _always_ be a
gamble, which should leave you with modest wins on monthly basis but
you can't say much from few trades.
2018-01-02 02:17:10 +00:00
2020-12-01 20:38:54 +00:00
### Id like to make changes to the config. Can I do that without having to kill the bot?
2018-01-02 02:17:10 +00:00
2020-12-01 20:38:54 +00:00
Yes. You can edit your config, use the `/stop` command in Telegram, followed by `/reload_config` and the bot will run with the new config.
2018-01-02 02:17:10 +00:00
### I want to improve the bot with a new strategy
2018-01-02 02:17:10 +00:00
That's great. We have a nice backtesting and hyperoptimization setup. See
2018-12-31 13:00:36 +00:00
the tutorial [here|Testing-new-strategies-with-Hyperopt](bot-usage.md#hyperopt-commands).
2018-01-02 02:17:10 +00:00
2020-12-01 20:38:54 +00:00
### Is there a setting to only SELL the coins being held and not perform anymore BUYS?
2020-12-01 20:38:54 +00:00
You can use the `/stopbuy` command in Telegram to prevent future buys, followed by `/forcesell all` (sell all open trades).
### I want to run multiple bots on the same machine
Please look at the [advanced setup documentation Page](advanced-setup.md#running-multiple-instances-of-freqtrade).
2020-06-26 04:39:47 +00:00
### I'm getting "Missing data fillup" messages in the log
This message is just a warning that the latest candles had missing candles in them.
Depending on the exchange, this can indicate that the pair didn't have a trade for the timeframe you are using - and the exchange does only return candles with volume.
On low volume pairs, this is a rather common occurrence.
2020-06-26 04:39:47 +00:00
If this happens for all pairs in the pairlist, this might indicate a recent exchange downtime. Please check your exchange's public channels for details.
Irrespectively of the reason, Freqtrade will fill up these candles with "empty" candles, where open, high, low and close are set to the previous candle close - and volume is empty. In a chart, this will look like a `_` - and is aligned with how exchanges usually represent 0 volume candles.
2020-06-26 04:39:47 +00:00
### I'm getting the "RESTRICTED_MARKET" message in the log
Currently known to happen for US Bittrex users.
2019-11-11 08:18:43 +00:00
Read [the Bittrex section about restricted markets](exchanges.md#restricted-markets) for more information.
### I'm getting the "Exchange Bittrex does not support market orders." message and cannot run my strategy
2020-12-01 20:38:54 +00:00
As the message says, Bittrex does not support market orders and you have one of the [order types](configuration.md/#understand-order_types) set to "market". Your strategy was probably written with other exchanges in mind and sets "market" orders for "stoploss" orders, which is correct and preferable for most of the exchanges supporting market orders (but not for Bittrex).
2020-02-09 15:54:04 +00:00
To fix it for Bittrex, redefine order types in the strategy to use "limit" instead of "market":
```
2020-02-09 15:54:04 +00:00
order_types = {
...
'stoploss': 'limit',
...
}
```
2020-12-01 20:38:54 +00:00
The same fix should be applied in the configuration file, if order types are defined in your custom config rather than in the strategy.
2020-02-09 15:54:04 +00:00
### How do I search the bot logs for something?
2020-09-20 09:51:12 +00:00
By default, the bot writes its log into stderr stream. This is implemented this way so that you can easily separate the bot's diagnostics messages from Backtesting, Edge and Hyperopt results, output from other various Freqtrade utility sub-commands, as well as from the output of your custom `print()`'s you may have inserted into your strategy. So if you need to search the log messages with the grep utility, you need to redirect stderr to stdout and disregard stdout.
* In unix shells, this normally can be done as simple as:
```shell
2019-11-01 23:32:57 +00:00
$ freqtrade --some-options 2>&1 >/dev/null | grep 'something'
```
(note, `2>&1` and `>/dev/null` should be written in this order)
* Bash interpreter also supports so called process substitution syntax, you can grep the log for a string with it as:
```shell
$ freqtrade --some-options 2> >(grep 'something') >/dev/null
```
or
```shell
$ freqtrade --some-options 2> >(grep -v 'something' 1>&2)
```
* You can also write the copy of Freqtrade log messages to a file with the `--logfile` option:
```shell
$ freqtrade --logfile /path/to/mylogfile.log --some-options
```
and then grep it as:
```shell
$ cat /path/to/mylogfile.log | grep 'something'
```
2020-09-20 09:51:12 +00:00
or even on the fly, as the bot works and the log file grows:
```shell
$ tail -f /path/to/mylogfile.log | grep 'something'
```
from a separate terminal window.
On Windows, the `--logfile` option is also supported by Freqtrade and you can use the `findstr` command to search the log for the string of interest:
```
> type \path\to\mylogfile.log | findstr "something"
```
## Hyperopt module
2020-12-01 20:38:54 +00:00
### How many epochs do I need to get a good Hyperopt result?
Per default Hyperopt called without the `-e`/`--epochs` command line option will only
run 100 epochs, means 100 evaluations of your triggers, guards, ... Too few
2018-12-31 13:00:36 +00:00
to find a great result (unless if you are very lucky), so you probably
have to run it for 10.000 or more. But it will take an eternity to
compute.
2020-08-13 06:02:36 +00:00
Since hyperopt uses Bayesian search, running for too many epochs may not produce greater results.
2020-09-20 09:51:12 +00:00
It's therefore recommended to run between 500-1000 epochs over and over until you hit at least 10.000 epochs in total (or are satisfied with the result). You can best judge by looking at the results - if the bot keeps discovering better strategies, it's best to keep on going.
```bash
freqtrade hyperopt --hyperopt SampleHyperopt --hyperopt-loss SharpeHyperOptLossDaily --strategy SampleStrategy -e 1000
```
2020-08-13 06:02:36 +00:00
### Why does it take a long time to run hyperopt?
2020-11-21 10:13:44 +00:00
* Discovering a great strategy with Hyperopt takes time. Study www.freqtrade.io, the Freqtrade Documentation page, join the Freqtrade [Slack community](https://join.slack.com/t/highfrequencybot/shared_invite/zt-jaut7r4m-Y17k4x5mcQES9a9swKuxbg) - or the Freqtrade [discord community](https://discord.gg/X89cVG). While you patiently wait for the most advanced, free crypto bot in the world, to hand you a possible golden strategy specially designed just for you.
2020-09-20 09:51:12 +00:00
* If you wonder why it can take from 20 minutes to days to do 1000 epochs here are some answers:
2020-06-30 09:01:00 +00:00
This answer was written during the release 0.15.1, when we had:
* 8 triggers
* 9 guards: let's say we evaluate even 10 values from each
* 1 stoploss calculation: let's say we want 10 values from that too to be evaluated
The following calculation is still very rough and not very precise
2018-12-31 13:00:36 +00:00
but it will give the idea. With only these triggers and guards there is
already 8\*10^9\*10 evaluations. A roughly total of 80 billion evaluations.
Did you run 100 000 evaluations? Congrats, you've done roughly 1 / 100 000 th
2020-08-13 06:02:36 +00:00
of the search space, assuming that the bot never tests the same parameters more than once.
2020-09-20 09:51:12 +00:00
* The time it takes to run 1000 hyperopt epochs depends on things like: The available cpu, hard-disk, ram, timeframe, timerange, indicator settings, indicator count, amount of coins that hyperopt test strategies on and the resulting trade count - which can be 650 trades in a year or 10.0000 trades depending if the strategy aims for big profits by trading rarely or for many low profit trades.
2020-08-13 06:02:36 +00:00
Example: 4% profit 650 times vs 0,3% profit a trade 10.000 times in a year. If we assume you set the --timerange to 365 days.
2020-06-30 09:01:00 +00:00
Example:
2020-08-13 06:02:36 +00:00
`freqtrade --config config.json --strategy SampleStrategy --hyperopt SampleHyperopt -e 1000 --timerange 20190601-20200601`
## Edge module
### Edge implements interesting approach for controlling position size, is there any theory behind it?
The Edge module is mostly a result of brainstorming of [@mishaker](https://github.com/mishaker) and [@creslinux](https://github.com/creslinux) freqtrade team members.
2020-09-20 09:51:12 +00:00
You can find further info on expectancy, win rate, risk management and position size in the following sources:
- https://www.tradeciety.com/ultimate-math-guide-for-traders/
- http://www.vantharp.com/tharp-concepts/expectancy.asp
- https://samuraitradingacademy.com/trading-expectancy/
- https://www.learningmarkets.com/determining-expectancy-in-your-trading/
- http://www.lonestocktrader.com/make-money-trading-positive-expectancy/
- https://www.babypips.com/trading/trade-expectancy-matter