Simple Pandas Snippets
General things How many times a condition is True in the last x candles If the sum is zero (0), that means the condition is always False in the last x candles. If the sum equals to x, that means…
General things How many times a condition is True in the last x candles If the sum is zero (0), that means the condition is always False in the last x candles. If the sum equals to x, that means…
There are several possible reasons why the difference occurs. Some of them are Lookahead and/or recursive loop issue They are both two separate issues but with one common cause, which is because you get the whole data in backtest. While…
The dry-runs can be seen here. The strategies might be changed without further notice, so do check the page regularly to see whether there is any addition or removal of strategies. Below are details of public strategies that I wish…
I have to start by stating the usual disclaimer, that all things written in this post is my personal opinion. I’m not saying they are the only truth and other opinions are wrong. I’ll try to explain the reasons, but…
Any new users will read about hyperopt and immediately think it can turn any strategies into a rocket strategies. This article is written to blow that myth to pieces. In essence, hyperopt is just a series of backtesting runs. 500…
One wrong idea that new users have is that they assume that as leverage increase, the liquidation percentage move linearly, which is not the case. This next table is what they assume the behavior would be Leverage Liquidation % before…
Unless all of your bots are on one local computer, then installing Tailscale on all your vpses/computers is a must. After you install Tailscale on all of them, the steps to combine them into one frequi is easy. First, choose…
I have to start the article by stating the obvious thing, that there is no such thing as the univerally best config or strategy or setup. First I will state the pros and cons of using volume and static pairlist.…
WARNING!!!! The snippet below will introduce backtest traps. Read this and this for more details. To reduce the impact of the traps, either
Warning!!! This trick can’t be backtested, so do use it at your own risk. Credit to Atakan on Freqtrade’s discord server, modified to match current freqtrade. Why do you want to disable auto pairlock? Usually this would happen when you…