2 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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | from datetime import datetime, timedelta import freqtrade.vendor.qtpylib.indicators as qtpylib import talib.abstract as ta import pandas_ta as pta from freqtrade.strategy.interface import IStrategy from pandas import DataFrame, Series from freqtrade.strategy import DecimalParameter, IntParameter, CategoricalParameter from functools import reduce # Chandalier Exit ''' The "Chandelier Exit" technical indicator, also known as the "ATR Trailing Stop", is a volatility-based stop loss indicator that adjusts the stop loss level based on the average true range (ATR) of a cryptocurrency. This code imports the necessary libraries (pandas and numpy) and defines a function called chandelier_exit() that takes a DataFrame of cryptocurrency data (with columns for "high", "low", and "close") and the ATR period and ATR multiplier as inputs. The function first calculates the ATR of the cryptocurrency and stores it in a new column called "atr". It then calculates the Chandelier Exit (ATR Trailing Stop) by subtracting the ATR multiplied by the ATR multiplier from the high price and stores it in a new column called "chandelier_exit". ''' def chandelier_exit(df, atr_period=22, atr_mult=3): # Calculate the average true range (ATR) df['TR'] = df[['high', 'low', 'close']].apply(lambda x: max(x) - min(x), axis=1) df['atr'] = df['TR'].rolling(atr_period).mean() # Calculate the Chandelier Exit (ATR Trailing Stop) df['chandelier_exit_sl'] = df['high'] - df['atr'] * atr_mult df['chandelier_exit_tp'] = df['high'] + df['atr'] * atr_mult df['chandelier_exit_tp_short'] = df['low'] - df['atr'] * atr_mult df['chandelier_exit_sl_short'] = df['close'] + df['atr'] * atr_mult return df # ############################################################################################################################################################################################ class EDTMA_Long_Short_prot_CE_1h_3Lev_3mt_March(IStrategy): minimal_roi = { "0": 0.238, "362": 0.148, "881": 0.066, "1039": 0 } ''' (((hit))) docker-compose run --rm freqtrade backtesting --strategy EDTMA_Long_Short_prot_CE_1h_3Lev_3mt_March -i 1h --export trades --breakdown month --timerange 20211101-20221208 =========================================================== ENTER TAG STATS =========================================================== | TAG | Entries | Avg Profit % | Cum Profit % | Tot Profit USDT | Tot Profit % | Avg Duration | Win Draw Loss Win% | |-------+-----------+----------------+----------------+-------------------+----------------+----------------+-------------------------| | TOTAL | 6402 | 0.75 | 4801.07 | 7176.276 | 717.63 | 2:32:00 | 4623 13 1766 72.2 | ======================================================= EXIT REASON STATS ======================================================== | Exit Reason | Exits | Win Draws Loss Win% | Avg Profit % | Cum Profit % | Tot Profit USDT | Tot Profit % | |--------------------+---------+--------------------------+----------------+----------------+-------------------+----------------| | trailing_stop_loss | 4982 | 4424 0 558 88.8 | 2.86 | 14264.8 | 21324.5 | 4754.94 | | stop_loss | 826 | 0 0 826 0 | -12.14 | -10024 | -14988.2 | -3341.32 | | ce_sl_long | 381 | 43 0 338 11.3 | -4 | -1523.74 | -2279.32 | -507.91 | | roi | 210 | 156 13 41 74.3 | 9.96 | 2092.57 | 3132.24 | 697.52 | | force_exit | 3 | 0 0 3 0 | -2.88 | -8.63 | -12.949 | -2.88 | ========================================================= LEFT OPEN TRADES REPORT ========================================================= | Pair | Entries | Avg Profit % | Cum Profit % | Tot Profit USDT | Tot Profit % | Avg Duration | Win Draw Loss Win% | |-----------+-----------+----------------+----------------+-------------------+----------------+----------------+-------------------------| | XLM/USDT | 1 | -2.11 | -2.11 | -3.171 | -0.32 | 16:00:00 | 0 0 1 0 | | BAT/USDT | 1 | -2.53 | -2.53 | -3.796 | -0.38 | 16:00:00 | 0 0 1 0 | | KAVA/USDT | 1 | -3.99 | -3.99 | -5.983 | -0.60 | 5:00:00 | 0 0 1 0 | | TOTAL | 3 | -2.88 | -8.63 | -12.949 | -1.29 | 12:20:00 | 0 0 3 0 | ======================= MONTH BREAKDOWN ======================== | Month | Tot Profit USDT | Wins | Draws | Losses | |------------+-------------------+--------+---------+----------| | 30/11/2021 | 249.03 | 320 | 11 | 131 | | 31/12/2021 | 846.226 | 433 | 2 | 146 | | 31/01/2022 | 822.756 | 407 | 0 | 137 | | 28/02/2022 | 611.605 | 351 | 0 | 110 | | 31/03/2022 | 363.785 | 328 | 0 | 139 | | 30/04/2022 | 698.177 | 329 | 0 | 93 | | 31/05/2022 | 618.904 | 435 | 0 | 194 | | 30/06/2022 | 569.778 | 460 | 0 | 190 | | 31/07/2022 | 552.419 | 378 | 0 | 156 | | 31/08/2022 | 641.539 | 326 | 0 | 121 | | 30/09/2022 | -41.287 | 266 | 0 | 129 | | 31/10/2022 | 277.9 | 197 | 0 | 79 | | 30/11/2022 | 844.638 | 327 | 0 | 120 | | 31/12/2022 | 120.806 | 66 | 0 | 21 | ================== SUMMARY METRICS =================== | Metric | Value | |-----------------------------+----------------------| | Backtesting from | 2021-11-01 00:00:00 | | Backtesting to | 2022-12-08 00:00:00 | | Max open trades | 3 | | | | | Total/Daily Avg Trades | 6402 / 15.93 | | Starting balance | 1000 USDT | | Final balance | 8176.276 USDT | | Absolute profit | 7176.276 USDT | | Total profit % | 717.63% | | CAGR % | 573.85% | | Profit factor | 1.37 | | Trades per day | 15.93 | | Avg. daily profit % | 1.79% | | Avg. stake amount | 149.531 USDT | | Total trade volume | 957298.237 USDT | | | | | Long / Short | 2192 / 4210 | | Total profit Long % | 242.85% | | Total profit Short % | 474.78% | | Absolute profit Long | 2428.492 USDT | | Absolute profit Short | 4747.785 USDT | | | | | Best Pair | XRP/USDT 402.40% | | Worst Pair | GRT/USDT -62.43% | | Best trade | SNX/USDT 24.32% | | Worst trade | 1000XEC/USDT -18.49% | | Best day | 295.063 USDT | | Worst day | -120.02 USDT | | Days win/draw/lose | 249 / 4 / 147 | | Avg. Duration Winners | 1:53:00 | | Avg. Duration Loser | 4:04:00 | | Rejected Entry signals | 665093 | | Entry/Exit Timeouts | 0 / 1959 | | | | | Min balance | 1001.7 USDT | | Max balance | 8248.829 USDT | | Max % of account underwater | 20.55% | | Absolute Drawdown (Account) | 8.73% | | Absolute Drawdown | 465.462 USDT | | Drawdown high | 4333.078 USDT | | Drawdown low | 3867.616 USDT | | Drawdown Start | 2022-05-12 05:00:00 | | Drawdown End | 2022-05-23 19:00:00 | | Market change | -79.30% | ====================================================== ''' # Optimal timeframe for the strategy timeframe = '1h' # Can this strategy go short? can_short: bool = True # Run "populate_indicators()" only for new candle. process_only_new_candles = True startup_candle_count = 30 # Disabled stoploss = -0.12 # Trailing stop: trailing_stop = True trailing_stop_positive = 0.01 trailing_stop_positive_offset = 0.02 trailing_only_offset_is_reached = True #leverage here leverage_optimize = False leverage_num = IntParameter(low=1, high=4, default=3, space='buy', optimize=leverage_optimize) # Custom stoploss use_custom_stoploss = False is_optimize_32 = True s_buy_adx_enabled = CategoricalParameter([True, False], default=True, space="buy") s_buy_adx = IntParameter(20, 75, default=26, space="buy", optimize=s_buy_adx_enabled) s_buy_dema = IntParameter(45, 65, default=53, space="buy") s_buy_ema = IntParameter(100, 210, default=102, space="buy") s_buy_tema = IntParameter(6, 20, default=19, space="buy") # s_sell_adx_enabled = CategoricalParameter([True, False], default=True) # s_sell_adx = IntParameter(20, 75, default=73, space="sell", optimize=s_sell_adx_enabled) # s_sell_dema = IntParameter(45, 65, default=46, space="sell") # s_sell_ema = IntParameter(100, 210, default=159, space="sell") # s_sell_tema = IntParameter(6, 20, default=10, space="sell") buy_adx_enabled = CategoricalParameter([True, False], default=True, space="buy") buy_adx = IntParameter(20, 75, default=35, space="buy", optimize=buy_adx_enabled) buy_dema = IntParameter(45, 65, default=45, space="buy") buy_ema = IntParameter(100, 210, default=177, space="buy") buy_tema = IntParameter(6, 20, default=7, space="buy") # sell_adx_enabled = CategoricalParameter([True, False], default=True) # sell_adx = IntParameter(20, 75, default=35, space="sell", optimize=sell_adx_enabled) # sell_dema = IntParameter(45, 65, default=59, space="sell") # sell_ema = IntParameter(100, 210, default=128, space="sell") # sell_tema = IntParameter(6, 20, default=13, space="sell") ce_l_atr_period = IntParameter(5, 40, default=23, space="sell") ce_l_atr_mult = IntParameter(1, 6, default=1, space="sell") ce_s_atr_period = IntParameter(5, 40, default=26, space="sell") ce_s_atr_mult = IntParameter(1, 6, default=6, space="sell") # sell_fastx = IntParameter(50, 100, default=70, space='sell', optimize=False) protect_optimize = False # cooldown_lookback = IntParameter(1, 240, default=6, space="protection", optimize=protect_optimize) max_drawdown_lookback = IntParameter(1, 288, default=10, space="protection", optimize=protect_optimize) max_drawdown_trade_limit = IntParameter(1, 20, default=1, space="protection", optimize=protect_optimize) max_drawdown_stop_duration = IntParameter(1, 288, default=6, space="protection", optimize=protect_optimize) max_allowed_drawdown = DecimalParameter(0.10, 0.50, default=0.12, decimals=2, space="protection", optimize=protect_optimize) stoploss_guard_lookback = IntParameter(1, 288, default=3, space="protection", optimize=protect_optimize) stoploss_guard_trade_limit = IntParameter(1, 20, default=1, space="protection", optimize=protect_optimize) stoploss_guard_stop_duration = IntParameter(1, 288, default=6, space="protection", optimize=protect_optimize) @property def protections(self): return [ # { # "method": "CooldownPeriod", # "stop_duration_candles": self.cooldown_lookback.value # }, { "method": "MaxDrawdown", "lookback_period_candles": self.max_drawdown_lookback.value, "trade_limit": self.max_drawdown_trade_limit.value, "stop_duration_candles": self.max_drawdown_stop_duration.value, "max_allowed_drawdown": self.max_allowed_drawdown.value }, { "method": "StoplossGuard", "lookback_period_candles": self.stoploss_guard_lookback.value, "trade_limit": self.stoploss_guard_trade_limit.value, "stop_duration_candles": self.stoploss_guard_stop_duration.value, "only_per_pair": False } ] def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe['volume_mean_20'] = dataframe['volume'].rolling(22).mean().shift(1) # ADX dataframe['adx'] = ta.ADX(dataframe) # TEMA - Triple Exponential Moving Average dataframe['tema'] = ta.TEMA(dataframe, timeperiod=self.s_buy_tema.value) dataframe['dema'] = ta.DEMA(dataframe, timeperiod=self.s_buy_dema.value) dataframe['ema200'] = ta.EMA(dataframe, timeperiod=self.s_buy_ema.value) # dataframe['tema_s'] = ta.TEMA(dataframe, timeperiod=self.s_sell_tema.value) # dataframe['dema_s'] = ta.DEMA(dataframe, timeperiod=self.s_sell_dema.value) # dataframe['ema200_s'] = ta.EMA(dataframe, timeperiod=self.s_sell_ema.value) dataframe['l_tema'] = ta.TEMA(dataframe, timeperiod=self.buy_tema.value) dataframe['l_dema'] = ta.DEMA(dataframe, timeperiod=self.buy_dema.value) dataframe['l_ema200'] = ta.EMA(dataframe, timeperiod=self.buy_ema.value) # dataframe['l_tema_s'] = ta.TEMA(dataframe, timeperiod=self.sell_tema.value) # dataframe['l_dema_s'] = ta.DEMA(dataframe, timeperiod=self.sell_dema.value) # dataframe['l_ema200_s'] = ta.EMA(dataframe, timeperiod=self.sell_ema.value) long_chandelier_exit = chandelier_exit(df=dataframe, atr_period = self.ce_l_atr_period.value, atr_mult = self.ce_l_atr_mult.value) dataframe['ce_atr'] = long_chandelier_exit['atr'] dataframe['ce_chandelier_exit_sl'] = long_chandelier_exit['chandelier_exit_sl'] dataframe['ce_chandelier_exit_tp'] = long_chandelier_exit['chandelier_exit_tp'] short_chandelier_exit = chandelier_exit(df=dataframe, atr_period = self.ce_s_atr_period.value, atr_mult = self.ce_s_atr_mult.value) dataframe['ce_chandelier_exit_tp_short'] = short_chandelier_exit['chandelier_exit_tp_short'] dataframe['ce_chandelier_exit_sl_short'] = short_chandelier_exit['chandelier_exit_sl_short'] return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe.loc[( (dataframe['adx'] > self.buy_adx.value) & (dataframe['l_tema'] > dataframe['l_dema']) & # Guard: tema is raising (dataframe['l_dema'] > dataframe['l_ema200']) & # Guard: tema is raising (dataframe['volume'] > dataframe['volume_mean_20']) ), 'enter_long'] = 1 # if conditions_short: dataframe.loc[( (dataframe['adx'] > self.s_buy_adx.value) & (dataframe['tema'] < dataframe['dema']) & # Guard: tema is raising (dataframe['dema'] < dataframe['ema200']) & # Guard: tema is raising (dataframe['volume'] > dataframe['volume_mean_20']) ), 'enter_short'] = 1 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: conditions_long = [] conditions_short = [] dataframe.loc[:, 'exit_tag'] = '' sell_1 = ( (dataframe['low'] <= dataframe['ce_chandelier_exit_tp_short']) & (dataframe['volume'] > 0) ) sell_2 = ( (dataframe['high'] >= dataframe['ce_chandelier_exit_sl_short']) & (dataframe['volume'] > 0) ) sell_3 = ( (dataframe['high'] >= dataframe['ce_chandelier_exit_tp']) & (dataframe['volume'] > 0) ) sell_4 = ( (dataframe['low'] <= dataframe['ce_chandelier_exit_sl']) & (dataframe['volume'] > 0) ) conditions_long.append(sell_3) dataframe.loc[sell_3, 'exit_tag'] += 'ce_tp_long' conditions_long.append(sell_4) dataframe.loc[sell_4, 'exit_tag'] += 'ce_sl_long' conditions_short.append(sell_1) dataframe.loc[sell_1, 'exit_tag'] += 'ce_tp_short' conditions_short.append(sell_2) dataframe.loc[sell_2, 'exit_tag'] += 'ce_sl_short' if conditions_long: dataframe.loc[ reduce(lambda x, y: x | y, conditions_long), 'exit_long'] = 1 if conditions_short: dataframe.loc[ reduce(lambda x, y: x | y, conditions_short), 'exit_short'] = 1 return dataframe def leverage(self, pair: str, current_time: datetime, current_rate: float, proposed_leverage: float, max_leverage: float, side: str, **kwargs) -> float: return self.leverage_num.value |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 1175.2s
ℹ️ This strategy uses a trailing stop — freqtrade only
re-checks these once per 1h candle by default, not against the price movement within it.
For a more accurate read, re-run this backtest locally with --timeframe-detail 1m
(or 5m — freqtrade's own docs use 5m detail for an hourly strategy as a lighter
alternative). Freqle doesn't do this for every check here: multiplying every
League/sweep backtest by a finer detail timeframe is more compute than the sandbox can sustain
across every indexed strategy. why this matters →
- statistically significant edge (p=0.00)
- 100% of resampled runs stayed profitable
- profitable across 97% of rolling 3-month windows
- comfortably beat buy-and-hold
Resampling the trade sequence 2,000× shows the spread of results this edge could plausibly produce — separating a dependable strategy from one that got lucky once.
Loading charts…
Monthly breakdown
| Month | Regime | Trades | Profit % | Avg % | Win | Loss | Win % | DD % | Avg dur |
|---|---|---|---|---|---|---|---|---|---|
| Jan 2026 | bullish trending low vol | 7 | -1.30 | -1.86 | 2 | 5 | 28.6 | -1.09 | 24h 17m |
| Dec 2025 | bearish trending low vol | 255 | -15.79 | -0.63 | 179 | 76 | 70.2 | -1.12 | 6h 39m |
| Nov 2025 | bearish trending high vol | 302 | +47.82 | 1.61 | 228 | 74 | 75.5 | -1.09 | 3h 52m |
| Oct 2025 | bearish trending low vol | 463 | +33.46 | 0.72 | 350 | 113 | 75.6 | -1.44 | 3h 48m |
| Sep 2025 | bullish choppy low vol | 359 | +23.44 | 0.67 | 272 | 87 | 75.8 | -1.74 | 6h 34m |
| Aug 2025 | bearish choppy low vol | 407 | +41.98 | 1.04 | 321 | 86 | 78.9 | -0.48 | 3h 36m |
| Jul 2025 | bullish choppy low vol | 329 | +9.93 | 0.30 | 238 | 91 | 72.3 | -1.19 | 4h 13m |
| Jun 2025 | bearish choppy low vol | 390 | +71.29 | 1.84 | 309 | 81 | 79.2 | -0.67 | 4h 42m |
| May 2025 | bullish trending low vol | 473 | +72.06 | 1.53 | 396 | 77 | 83.7 | -1.28 | 4h 19m |
| Apr 2025 | bullish choppy low vol | 318 | +26.15 | 0.83 | 248 | 70 | 78.0 | -1.06 | 2h 38m |
| Mar 2025 | bearish trending high vol | 401 | +35.11 | 0.88 | 327 | 74 | 81.5 | -1.02 | 3h 59m |
| Feb 2025 | bearish trending low vol | 353 | +58.27 | 1.67 | 281 | 72 | 79.6 | -0.61 | 3h 01m |
| Jan 2025 | bearish choppy low vol | 417 | +51.63 | 1.25 | 340 | 77 | 81.5 | -1.0 | 2h 13m |
| Dec 2024 | bullish trending low vol | 464 | +187.50 | 4.07 | 407 | 57 | 87.7 | -0.56 | 1h 40m |
| Nov 2024 | bullish trending low vol | 341 | +33.83 | 1.00 | 260 | 81 | 76.2 | -0.61 | 3h 16m |
| Oct 2024 | bullish choppy low vol | 370 | +14.86 | 0.41 | 285 | 85 | 77.0 | -1.39 | 5h 10m |
| Sep 2024 | bearish choppy low vol | 284 | -14.84 | -0.53 | 200 | 84 | 70.4 | -1.59 | 5h 54m |
| Aug 2024 | bearish choppy high vol | 561 | +153.91 | 2.76 | 469 | 92 | 83.6 | -1.0 | 2h 52m |
| Jul 2024 | bearish trending low vol | 561 | +152.33 | 2.73 | 459 | 102 | 81.8 | -1.45 | 3h 14m |
| Jun 2024 | bearish choppy low vol | 419 | +38.26 | 0.91 | 318 | 101 | 75.9 | -1.01 | 5h 56m |
| May 2024 | bullish choppy high vol | 347 | +16.28 | 0.46 | 268 | 79 | 77.2 | -1.18 | 5h 51m |
| Apr 2024 | bearish choppy high vol | 530 | +271.82 | 5.16 | 443 | 87 | 83.6 | -0.94 | 3h 02m |
| Mar 2024 | bullish trending high vol | 256 | +39.98 | 1.57 | 206 | 50 | 80.5 | -1.62 | 2h 35m |
| Feb 2024 | bullish trending low vol | 183 | -13.08 | -0.71 | 113 | 70 | 61.7 | -1.89 | 8h 20m |
| Jan 2024 | bearish choppy high vol | 388 | +49.51 | 1.29 | 317 | 71 | 81.7 | -3.63 | 3h 40m |
| Dec 2023 | bullish trending low vol | 228 | -12.43 | -0.56 | 160 | 68 | 70.2 | -3.09 | 7h 38m |
| Nov 2023 | bullish trending low vol | 243 | -7.40 | -0.31 | 174 | 69 | 71.6 | -2.31 | 4h 59m |
| Oct 2023 | bullish trending low vol | 296 | +13.72 | 0.47 | 201 | 95 | 67.9 | -1.85 | 9h 43m |
| Sep 2023 | bearish choppy low vol | 368 | +42.26 | 1.15 | 289 | 79 | 78.5 | -1.97 | 9h 10m |
| Aug 2023 | bearish choppy low vol | 424 | +54.33 | 1.29 | 338 | 86 | 79.7 | -1.09 | 8h 14m |
| Jul 2023 | bullish trending low vol | 278 | +12.98 | 0.47 | 200 | 78 | 71.9 | -0.85 | 7h 27m |
| Jun 2023 | bullish trending low vol | 260 | +26.65 | 1.02 | 199 | 61 | 76.5 | -0.92 | 6h 47m |
| May 2023 | bearish choppy low vol | 315 | +30.36 | 0.97 | 248 | 67 | 78.7 | -4.29 | 8h 51m |
| Apr 2023 | bullish trending low vol | 225 | -21.13 | -0.94 | 141 | 84 | 62.7 | -4.36 | 9h 06m |
| Mar 2023 | bullish trending high vol | 379 | +32.67 | 0.86 | 289 | 90 | 76.3 | -2.12 | 5h 17m |
| Feb 2023 | bullish trending low vol | 336 | +47.53 | 1.42 | 270 | 66 | 80.4 | -2.42 | 3h 46m |
| Jan 2023 | bullish trending low vol | 164 | -12.76 | -0.78 | 97 | 67 | 59.1 | -2.99 | 7h 47m |
| Dec 2022 | bearish trending low vol | 365 | +47.47 | 1.30 | 292 | 73 | 80.0 | -1.96 | 9h 17m |
| Nov 2022 | bearish trending high vol | 327 | +28.31 | 0.86 | 240 | 87 | 73.4 | -1.85 | 4h 22m |
| Oct 2022 | bullish choppy low vol | 401 | +53.50 | 1.34 | 312 | 89 | 77.8 | -2.85 | 7h 09m |
| Sep 2022 | bearish choppy high vol | 232 | -1.64 | -0.08 | 161 | 71 | 69.4 | -2.52 | 5h 09m |
| Aug 2022 | bullish choppy high vol | 366 | +64.73 | 1.79 | 294 | 72 | 80.3 | -1.59 | 4h 02m |
| Jul 2022 | bullish trending high vol | 312 | +24.80 | 0.80 | 237 | 75 | 76.0 | -2.16 | 2h 47m |
| Jun 2022 | bearish trending high vol | 347 | +67.05 | 1.94 | 286 | 61 | 82.4 | -3.1 | 1h 45m |
| May 2022 | bearish trending high vol | 316 | +43.54 | 1.39 | 236 | 80 | 74.7 | -3.49 | 2h 39m |
| Apr 2022 | bearish choppy high vol | 409 | +32.17 | 0.80 | 320 | 89 | 78.2 | -3.26 | 4h 57m |
| Mar 2022 | bullish choppy high vol | 229 | +32.60 | 1.41 | 181 | 48 | 79.0 | -2.23 | 3h 20m |
| Feb 2022 | bearish trending high vol | 348 | +26.47 | 0.76 | 268 | 80 | 77.0 | -5.17 | 3h 03m |
| Jan 2022 | bearish trending high vol | 345 | +68.95 | 2.03 | 266 | 79 | 77.1 | -4.19 | 2h 44m |
| Dec 2021 | bearish trending high vol | 332 | +36.88 | 1.14 | 259 | 73 | 78.0 | -6.86 | 2h 18m |
| Nov 2021 | bearish trending high vol | 351 | +48.48 | 1.41 | 286 | 65 | 81.5 | -5.54 | 2h 46m |
| Oct 2021 | bullish trending high vol | 247 | +7.44 | 0.33 | 171 | 76 | 69.2 | -4.46 | 2h 47m |
| Sep 2021 | bearish trending high vol | 271 | +40.89 | 1.52 | 202 | 69 | 74.5 | -10.6 | 1h 52m |
| Aug 2021 | bullish trending high vol | 216 | -13.11 | -0.62 | 136 | 80 | 63.0 | -12.45 | 2h 34m |
| Jul 2021 | bullish trending high vol | 369 | +45.53 | 1.24 | 287 | 82 | 77.8 | -6.49 | 2h 19m |
| Jun 2021 | bearish trending high vol | 328 | +17.32 | 0.53 | 228 | 100 | 69.5 | -12.04 | 1h 31m |
| May 2021 | bearish trending high vol | 226 | +37.18 | 1.67 | 172 | 54 | 76.1 | -15.19 | 0h 38m |
| Apr 2021 | bearish choppy high vol | 126 | +0.62 | 0.05 | 71 | 55 | 56.3 | -23.83 | 1h 45m |
| Mar 2021 | bullish choppy high vol | 200 | -12.74 | -0.64 | 125 | 75 | 62.5 | -17.26 | 2h 44m |
| Feb 2021 | bullish trending high vol | 138 | +11.40 | 0.88 | 91 | 47 | 65.9 | -5.75 | 0h 58m |
| Jan 2021 | bullish trending high vol | 143 | +6.18 | 0.43 | 108 | 35 | 75.5 | -7.83 | 1h 14m |
Yearly breakdown
| Year | Trades | Profit % | Avg % | Win | Loss | Win % | DD % | Avg dur |
|---|---|---|---|---|---|---|---|---|
| 2026 | 7 | -1.30 | -1.86 | 2 | 5 | 28.6 | -1.09 | 24h 17m |
| 2025 | 4467 | +455.35 | 1.03 | 3489 | 978 | 78.1 | -1.74 | 4h 04m |
| 2024 | 4704 | +930.36 | 1.99 | 3745 | 959 | 79.6 | -3.63 | 3h 58m |
| 2023 | 3516 | +206.78 | 0.59 | 2606 | 910 | 74.1 | -4.36 | 7h 22m |
| 2022 | 3997 | +487.95 | 1.23 | 3093 | 904 | 77.4 | -5.17 | 4h 22m |
| 2021 | 2947 | +226.07 | 0.78 | 2136 | 811 | 72.5 | -23.83 | 2h 03m |
Trade charts — best 2 and worst 2 performing pairs (full OHLC candles are expensive to render for every pair)
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
no lookahead-bias patterns detected
ran by Ron · took s
Lookahead analysis
Freqtrade logsno lookahead bias detected
20 signal(s) analysed · 0 biased entries · 0 biased exits
ran by Ron · took 65.7s