chikou_breakout_strong_f
♡
Basics
mode: futures
timeframe: 1d
interface version: 3
Settings
stoploss: -1.0
has minimal roi
process only new candles
startup candle count: 30
Indicators
Ichimoku
pandas_ta
talib
technical
Concepts
breakout
trend_following
Methods
plot_config
7 related strategies (⧉ identical code, ≈ similar name)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | # ============================================================================================== # Chikou breakout STRONG strategy for Futures # # Made by: # ______ _ _ _____ _ ______ _ # | _ \ | | | | / __ \ | | | _ \ | | # | | | | _ _ | |_ ___ | |__ | / \/ _ __ _ _ _ __ | |_ ___ | | | | __ _ __| | # | | | || | | || __|/ __|| '_ \ | | | '__|| | | || '_ \ | __|/ _ \ | | | |/ _` | / _` | # | |/ / | |_| || |_| (__ | | | || \__/\| | | |_| || |_) || |_| (_) || |/ /| (_| || (_| | # |___/ \__,_| \__|\___||_| |_| \____/|_| \__, || .__/ \__|\___/ |___/ \__,_| \__,_| # __/ || | # |___/ |_| # Version : 1.0 # Date : 2023-05 # Remarks : # As published, explained and tested in my Youtube video: # In my spot config I had to comment out SHIB and SAND to make Ichimoku work. # # Visit my site for more information: https://www.dutchalgotrading.com/ # Become my Patron: https://www.patreon.com/dutchalgotrading # - # - # ============================================================================================== # --- Used commands for later reference --- # source .env/bin/activate # freqtrade --version # freqtrade new-config # freqtrade new-strategy --strategy <strategyname> # freqtrade test-pairlist -c user_data/futures_config.json # freqtrade download-data -c user_data/futures_config.json --timerange 20170606- -t 1d 4h 1h 30m 15m 5m 1m # freqtrade backtesting -c user_data/futures_config.json -s chikou_breakout_strong_f --timerange=20190101-20210530 --timeframe=1d # freqtrade backtesting -c user_data/futures_config.json -s chikou_breakout_strong_f --timerange=-20230101 --timeframe=1d # freqtrade backtesting-analysis # freqtrade plot-dataframe -p BTC/USDT:USDT --strategy chikou_breakout_strong_f -c user_data/futures_config.json # freqtrade plot-dataframe -p AXS/USDT:USDT --strategy chikou_breakout_strong_f -c user_data/futures_config.json # freqtrade plot-dataframe -p SOL/USDT:USDT --strategy chikou_breakout_strong_f -c user_data/futures_config.json # pragma pylint: disable=missing-docstring, invalid-name, pointless-string-statement # flake8: noqa: F401 # isort: skip_file # --- Do not remove these libs --- import numpy as np import pandas as pd from pandas import DataFrame from datetime import datetime from typing import Optional, Union from freqtrade.strategy import ( BooleanParameter, CategoricalParameter, DecimalParameter, IntParameter, IStrategy, merge_informative_pair, ) # -------------------------------- # Add your lib to import here import talib.abstract as ta import pandas_ta as pta from technical import qtpylib class chikou_breakout_strong_f(IStrategy): # Strategy interface version - allow new iterations of the strategy interface. # Check the documentation or the Sample strategy to get the latest version. INTERFACE_VERSION = 3 # Proposed timeframe for the strategy. Can be altered to your own preferred timeframe. timeframe = "1d" # Can this strategy go short? can_short: bool = True # Minimal ROI designed for the strategy. # Set to 10000% since the exit signal determines the trade exit. # Some crypto even got ROI triggered at 100% so had to set it to this value. minimal_roi = {"0": 100.0} # Optimal stoploss designed for the strategy. # Set to 100% since the exit signal dermines the trade exit. stoploss = -1.0 # Trailing stoploss trailing_stop = False # Run "populate_indicators()" only for new candle. process_only_new_candles = True # These values can be overridden in the config. use_exit_signal = True exit_profit_only = False ignore_roi_if_entry_signal = False # Number of candles the strategy requires before producing valid signals # Set to the default of 30. startup_candle_count: int = 30 # Optional order type mapping. order_types = { "entry": "limit", "exit": "limit", "stoploss": "market", "stoploss_on_exchange": False, } # Optional order time in force. order_time_in_force = {"entry": "GTC", "exit": "GTC"} @property def plot_config(self): return { "main_plot": { "chikou": {"color": "yellow"}, 'senkou_a': { 'color': 'green', 'fill_to': 'senkou_b', 'fill_label': 'Ichimoku Cloud', 'fill_color': 'rgba(255,76,46,0.2)', }, 'senkou_b': {} } } def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: # CREATE ICHIMOKU INDICATOR # Specify the lenghts for each indicator (20, 60, 120, 60 is for crypto trading) TS = 9 KS = 26 SS = 52 CS = 26 OS = 0 # Each column represents the output of the First Ichimoku Variable tuple and its specific column. dataframe["tenkan"] = pta.ichimoku( high=dataframe["high"], low=dataframe["low"], close=dataframe["close"], tenkan=TS, kijun=KS, senkou=SS, offset=OS, )[0][f"ITS_{TS}"] dataframe["kijun"] = pta.ichimoku( high=dataframe["high"], low=dataframe["low"], close=dataframe["close"], tenkan=TS, kijun=KS, senkou=SS, offset=OS, )[0][f"IKS_{KS}"] dataframe["senkou_a"] = pta.ichimoku( high=dataframe["high"], low=dataframe["low"], close=dataframe["close"], tenkan=TS, kijun=KS, senkou=SS, offset=OS, )[0][f"ISA_{TS}"] dataframe["senkou_b"] = pta.ichimoku( high=dataframe["high"], low=dataframe["low"], close=dataframe["close"], tenkan=TS, kijun=KS, senkou=SS, offset=OS, )[0][f"ISB_{KS}"] dataframe["chikou"] = pta.ichimoku( high=dataframe["high"], low=dataframe["low"], close=dataframe["close"], tenkan=TS, kijun=KS, senkou=SS, offset=OS, )[0][f"ICS_{KS}"] # For each row in the dataframe for i, row in dataframe.iterrows(): # Check if the close price is above the kumo cloud if (row['close'] > row['senkou_a']) & (row['close'] > row['senkou_b']): # And then check if the chikou is above the high of the candle 26 days ago if row['chikou'] > row['high']: # If so, then add True value to the respective buy_long cell dataframe.loc[i, 'buy_long'] = True # Else check if the close price is below the kumo cloud elif (row['close'] < row['senkou_a']) & (row['close'] < row['senkou_b']): # And then check if the chikou is below the low of the candle 26 days ago if row['chikou'] < row['low']: # If so, then add True value to the respective sell_short cell dataframe.loc[i, 'sell_short'] = True # first check if dataprovider is available if self.dp: if self.dp.runmode.value in ("live", "dry_run"): ob = self.dp.orderbook(metadata["pair"], 1) dataframe["best_bid"] = ob["bids"][0][0] dataframe["best_ask"] = ob["asks"][0][0] # print(self) # print(metadata) # print(dataframe[['date', 'high', 'chikou', 'senkou_a', # 'senkou_b', 'buy_long']][dataframe['buy_long'] == True]) return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe.loc[ ( # If buy long signal is True, then enter a long trade (dataframe["buy_long"] == True) & (dataframe["volume"] > 0) # Guard ), ["enter_long", "enter_tag"], ] = (1, "Strong_long_signal") # For short trades, use the section below dataframe.loc[ ( # If sell short signal is True, then enter a short trade (dataframe["sell_short"] == True) & (dataframe["volume"] > 0) # Guard ), ["enter_short", "enter_tag"], ] = (1, "Strong_short_signal") return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe.loc[ ( # The exit signal for long trades is pretty straightforward. # Sell when the close price is below the kijun sen (dataframe["close"] < dataframe["kijun"]) & (dataframe["volume"] > 0) # Guard ), ["exit_long", "exit_tag"], ] = (1, "Close_below_kijun") # For short trades, use the section below dataframe.loc[ ( # The exit signal for shorts trades is pretty straightforward. # Sell when the close price is above the kijun sen (dataframe["close"] > dataframe["kijun"]) & (dataframe["volume"] > 0) # Guard ), ["exit_short", "exit_tag"], ] = (1, "Close_above_kijun") return dataframe |
Strategy League — fixed backtest that feeds the ranking
The fixed-params backtest (33 pairs · 20210101-20260101) — the only run that feeds the Strategy League ranking.
Backtests — over a market period
Backtest this strategy over a chosen crypto-cycle period. These don't affect the League ranking, and need that period's candle data downloaded.
Log in or sign up to run backtests.
| Period | Range | Total % | Win % | Max DD | Trades | |
|---|---|---|---|---|---|---|
| 2020 · DeFi Summer & Pre-Halving Rally | 20200101-20210101 | not run | ||||
| 2021 · Institutional Bull Market | 20210101-20220101 | not run | ||||
| 2022 · Post-Bull Crash & Macro Tightening | 20220101-20230101 | not run | ||||
| 2023–2024 · Recovery & ETF Anticipation | 20230101-20250101 | not run | ||||
| 2025–2026 · Current Cycle | 20250101-20260101 | not run | ||||
Walk forward
Out-of-sample backtest on recent data · 33 pairs · 20260101-20260701.
Backtest trust check
Static source analysis — instant, does not run the strategy. Flags future-data leaks, backtest-realism problems, and indicators worth a second look.
Lookahead analysis
freqtrade lookahead-analysis: detects strategies peeking at future candles.