ST – Kasuari BTC
Since one of my strategies has been performing well for the past 6 months, I would release the basic template of it. Before I give the code, I have to give warning first. DON’T USE THIS STRATEGY IN THIS BASIC…
Since one of my strategies has been performing well for the past 6 months, I would release the basic template of it. Before I give the code, I have to give warning first. DON’T USE THIS STRATEGY IN THIS BASIC…
This is an improved version of this method, but it requires Freqtrade version 2024.3 or later. This method is simpler than the old one, and have no weakness. Now the atr roi and stoploss will survive any bot restart. You…
This is a very simple example of having different RSI trigger for trade entry for BTC, ETH, BNB, and the rest of the pairs.
… is by not doing any analysis using past data at all. Once you are analyzing past data, you are already overfitting your strategy. Let me explain this using a simple analogy. Let’s say I have a friend named Frog.…
If you don’t have any doubt in your mind that the title is a clickbait or scam, then this post is written for you. Prepare for a long read. I will put disclaimer first, that the things written in this…
Update 2024-04-18: If you are on latest freqtrade, please use this method instead. It stores the info into database, so you have no risk of losing the info in case of bot restart The main point of this method is…
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…
Warning!!! We will use a dict to store the trigger. The issue with this method is the dict won’t survive a bot restart. So if the trailing is active and the bot is restarted, it will lose the trailing signal.…
To explain the possible reasons, I will explain using this (hopefully) simple analogy. Let’s say you are standing at starting line. Standing between you and the finish line are X amount of tables, where X is the number of candles…
IMPORTANT DISCLAIMER!!!! Using older version of Freqtrade can bring many issues. Old dependancies (old ccxt for example) is one of possible (and could be a very lethal) issue that can happen. Exchanges’ API also evolved over times. Old version of…