Category tutorial

Crossed check vs simple comparison

One of questions frequently asked by new users, especially those new to trading, is which one is better, using crossing logic (crossed above/below) or simple comparison (more/less/or equal than). First of all, you need to really understand the important aspect…

Set up kucoin proxy

For now, the guide will only have steps for Docker usage. The proxy used in this guide is the proxy made by mikekonan. First, add this to your docker-compose.yml (use different tags for different platforms e.g. – latest-amd64, latest-arm-v6, latest-arm-v7,…

Set up binance proxy

I’m using Binance Proxy by nightshift2k. The steps are slightly different for docker and non-docker uses. I’ll give the steps for both Docker Add this to your docker-compose.yml Then use this setting in your config for spot market For futures…

Signal and Trade Candle

Users tend to get confused over these two candles. What is signal candle? What is trade candle? Signal candle is the candle that have the enter/exit signal. This candle is used to determine whether a trade should be opened This…

Simple Additional Entries Code

Important Disclaimer!!! Currently I don’t use additional entries. In my opinion, more often than not, the additional entries do more harm than good. You are just digging your losses deeper. But you may be able to use it better than…

Trailing Custom Exit

By default, Freqtrade already have custom_exit and custom_stoploss functions. Despite the name, actually they are both quite similar and can be used interchangeable, as long as you are aware of the differences between them. Two main differences between them that…

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…