14 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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | # --- Do not remove these libs --- from freqtrade.strategy.interface import IStrategy from typing import Dict, List from functools import reduce from pandas import DataFrame # -------------------------------- import talib.abstract as ta import numpy as np import freqtrade.vendor.qtpylib.indicators as qtpylib import datetime from technical.util import resample_to_interval, resampled_merge from datetime import datetime, timedelta from freqtrade.persistence import Trade from freqtrade.strategy import stoploss_from_open, merge_informative_pair, DecimalParameter, IntParameter, CategoricalParameter import technical.indicators as ftt import math import logging logger = logging.getLogger(__name__) # @Rallipanos # changes by IcHiAT taken from https://github.com/XinuxC/Ft-things/blob/main/strategies/Etcg.py # Shorts variant - Converted for shorting bear market rallies and overbought conditions def EWO(dataframe, ema_length=5, ema2_length=3): df = dataframe.copy() ema1 = ta.EMA(df, timeperiod=ema_length) ema2 = ta.EMA(df, timeperiod=ema2_length) emadif = (ema1 - ema2) / df['close'] * 100 return emadif class ETCG_Shorts(IStrategy): """ ETCG_Shorts Strategy A shorts-only variant of ETCG, designed to profit in bear markets and during overbought conditions. Original ETCG Performance (Longs): - Multiple entry modes: lambo2, buy1ewo, buy2ewo, cofi - Focus on oversold conditions and positive momentum Strategy Concept: This short strategy inverts the ETCG logic to identify overbought rallies in downtrends and parabolic pump conditions for shorting opportunities. Entry Conditions: 1. lambo2_short: Price above EMA with overbought RSI (parabolic pumps) 2. sell1ewo_short: Rallies during downtrend with negative EWO momentum 3. sell2ewo_short: Extreme overbought with very high EWO 4. cofi_short: Stochastic overbought crossdown with negative EWO Exit Conditions: - Signal: Price falls below HMA/EMA thresholds with RSI reversal - ROI: Conservative targets (5% → 0.2%) - Stop Loss: -18.9% (tighter than -99% for longs) Key Differences from Long Strategy: - Same stop loss: -99% (managed by trailing stop) - More conservative ROI: 7% vs 5% initial (more conservative) - Shorter unclog window: 3 days vs 4 days - Max 8 short positions via confirm_trade_entry() - Leverage: 3x (set in environment) Author: Derived from ETCG Version: 1.0.0 """ INTERFACE_VERSION = 3 can_short = True # ROI table (more conservative than longs): minimal_roi = { "0": 0.07, # Start at 7% vs 5% for longs "20": 0.035, # More aggressive decay "40": 0.020, "87": 0.015, "201": 0.007, "202": 0.003 } # Sell hyperspace params (inverted from buy_params): sell_params = { "base_nb_candles_sell": 12, # Same as buy "rsi_sell": 100 - 58, # 42 (inverted) "ewo_high": 3.001, # Keep same (upper bound) "ewo_low": -10.289, # Keep same (lower bound) "high_offset": 2 - 0.987, # 1.013 (inverted from low_offset) "lambo2_ema_14_factor": 2 - 0.981, # 1.019 (inverted) "lambo2_enabled": True, "lambo2_rsi_14_limit": 100 - 39, # 61 (inverted) "lambo2_rsi_4_limit": 100 - 44, # 56 (inverted) "sell_adx": 20, "sell_fastd": 100 - 20, # 80 (inverted) "sell_fastk": 100 - 22, # 78 (inverted) "sell_ema_cofi": 2 - 0.98, # 1.02 (inverted) "sell_ewo_high": 4.179 # Keep same } # Buy hyperspace params (inverted from sell_params): buy_params = { "base_nb_candles_buy": 22, # Same as sell "low_offset": 2 - 1.014, # 0.986 (inverted from high_offset) "low_offset_2": 2 - 1.01 # 0.99 (inverted from high_offset_2) } @property def protections(self): return [ { "method": "CooldownPeriod", "stop_duration_candles": 5 }, { "method": "MaxDrawdown", "lookback_period_candles": 48, "trade_limit": 20, "stop_duration_candles": 4, "max_allowed_drawdown": 0.2 }, { "method": "StoplossGuard", "lookback_period_candles": 24, "trade_limit": 4, "stop_duration_candles": 2, "only_per_pair": False }, { "method": "LowProfitPairs", "lookback_period_candles": 6, "trade_limit": 2, "stop_duration_candles": 60, "required_profit": 0.02 }, { "method": "LowProfitPairs", "lookback_period_candles": 24, "trade_limit": 4, "stop_duration_candles": 2, "required_profit": 0.01 } ] # Hard risk cap for shorts. With 3x leverage this prevents deep liquidation-style losses. stoploss = -0.20 # Position limits max_open_trades = 8 max_short_trades = 8 # SMAOffset base_nb_candles_sell = IntParameter(8, 20, default=sell_params['base_nb_candles_sell'], space='sell', optimize=False) base_nb_candles_buy = IntParameter(8, 20, default=buy_params['base_nb_candles_buy'], space='buy', optimize=False) high_offset = DecimalParameter(1.005, 1.015, default=sell_params['high_offset'], space='sell', optimize=True) low_offset = DecimalParameter(0.985, 0.995, default=buy_params['low_offset'], space='buy', optimize=True) low_offset_2 = DecimalParameter(0.980, 0.990, default=buy_params['low_offset_2'], space='buy', optimize=True) # lambo2 (inverted) lambo2_ema_14_factor = DecimalParameter(0.8, 1.2, decimals=3, default=sell_params['lambo2_ema_14_factor'], space='sell', optimize=True) lambo2_rsi_4_limit = IntParameter(40, 95, default=sell_params['lambo2_rsi_4_limit'], space='sell', optimize=True) lambo2_rsi_14_limit = IntParameter(40, 95, default=sell_params['lambo2_rsi_14_limit'], space='sell', optimize=True) # Protection fast_ewo = 50 slow_ewo = 200 ewo_low = DecimalParameter(-20.0, -8.0, default=sell_params['ewo_low'], space='sell', optimize=True) ewo_high = DecimalParameter(3.0, 3.4, default=sell_params['ewo_high'], space='sell', optimize=True) rsi_sell = IntParameter(30, 70, default=sell_params['rsi_sell'], space='sell', optimize=False) # Trailing stop: trailing_stop = True trailing_stop_positive = 0.005 # 0.5% - increased from 0.1% to let winners run trailing_stop_positive_offset = 0.03 # 3% - increased from 1.2% to capture bigger moves trailing_only_offset_is_reached = True # cofi (inverted) is_optimize_cofi = False sell_ema_cofi = DecimalParameter(1.02, 1.04, default=sell_params['sell_ema_cofi'], optimize=is_optimize_cofi) sell_fastk = IntParameter(70, 80, default=sell_params['sell_fastk'], optimize=is_optimize_cofi) sell_fastd = IntParameter(70, 80, default=sell_params['sell_fastd'], optimize=is_optimize_cofi) sell_adx = IntParameter(20, 30, default=sell_params['sell_adx'], optimize=is_optimize_cofi) sell_ewo_high = DecimalParameter(2, 12, default=sell_params['sell_ewo_high'], optimize=is_optimize_cofi) # Exit signal use_exit_signal = True exit_profit_only = True # Only allow exit_signal when profitable (was False - causing -$10,397 in losses) exit_profit_offset = 0.01 ignore_roi_if_entry_signal = False use_custom_stoploss = False ## Optional order time in force. order_time_in_force = { 'entry': 'gtc', 'exit': 'gtc' } # Optimal timeframe for the strategy timeframe = '5m' inf_1h = '1h' process_only_new_candles = True startup_candle_count = 400 plot_config = { 'main_plot': { 'ma_sell': {'color': 'orange'}, 'ma_buy': {'color': 'orange'}, }, } def confirm_trade_entry(self, pair: str, order_type: str, amount: float, rate: float, time_in_force: str, current_time: datetime, entry_tag: str, side: str, **kwargs) -> bool: """ Enforce shorts-only and max position limits. """ # Only allow shorts if side == "long": return False # Count open shorts short_count = sum(1 for t in Trade.get_trades_proxy(is_open=True) if t.is_short) # Enforce max shorts limit if short_count >= self.max_short_trades: return False return True def custom_exit(self, pair: str, trade: 'Trade', current_time: 'datetime', current_rate: float, current_profit: float, **kwargs): """ Unclog mechanism: Exit positions at loss after 3 days (tighter than 4 days for longs). """ if current_profit < -0.04 and (current_time - trade.open_date_utc).days >= 3: return 'unclog_short' def leverage(self, pair: str, current_time: datetime, current_rate: float, proposed_leverage: float, max_leverage: float, entry_tag: str, side: str, **kwargs) -> float: """ Customize leverage for each trade. Returns fixed 3x leverage for all trades. """ return 3.0 def informative_pairs(self): pairs = self.dp.current_whitelist() informative_pairs = [(pair, '1h') for pair in pairs] if self.config['trading_mode'] == "futures": btc_info_pair = "BTC/USDT:USDT" else: btc_info_pair = "BTC/USDT" informative_pairs.append((btc_info_pair, self.timeframe)) informative_pairs.append((btc_info_pair, self.inf_1h)) return informative_pairs def pump_dump_protection(self, dataframe: DataFrame, metadata: dict) -> DataFrame: df36h = dataframe.copy().shift(432) # TODO FIXME: This assumes 5m timeframe df24h = dataframe.copy().shift(288) # TODO FIXME: This assumes 5m timeframe dataframe['volume_mean_short'] = dataframe['volume'].rolling(4).mean() dataframe['volume_mean_long'] = df24h['volume'].rolling(48).mean() dataframe['volume_mean_base'] = df36h['volume'].rolling(288).mean() dataframe['volume_change_percentage'] = (dataframe['volume_mean_long'] / dataframe['volume_mean_base']) dataframe['rsi_mean'] = dataframe['rsi'].rolling(48).mean() dataframe['pnd_volume_warn'] = np.where((dataframe['volume_mean_short'] / dataframe['volume_mean_long'] > 5.0), -1, 0) return dataframe def base_tf_btc_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: # Indicators # ----------------------------------------------------------------------------------------- dataframe['price_trend_long'] = (dataframe['close'].rolling(8).mean() / dataframe['close'].shift(8).rolling(144).mean()) # Add prefix # ----------------------------------------------------------------------------------------- ignore_columns = ['date', 'open', 'high', 'low', 'close', 'volume'] dataframe.rename(columns=lambda s: f"btc_{s}" if s not in ignore_columns else s, inplace=True) return dataframe def info_tf_btc_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: # Indicators # ----------------------------------------------------------------------------------------- dataframe['rsi_8'] = ta.RSI(dataframe, timeperiod=8) # Add prefix # ----------------------------------------------------------------------------------------- ignore_columns = ['date', 'open', 'high', 'low', 'close', 'volume'] dataframe.rename(columns=lambda s: f"btc_{s}" if s not in ignore_columns else s, inplace=True) return dataframe def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: if self.config['trading_mode'] == "futures": btc_info_pair = "BTC/USDT:USDT" else: btc_info_pair = "BTC/USDT" btc_info_tf = self.dp.get_pair_dataframe(btc_info_pair, self.inf_1h) btc_info_tf = self.info_tf_btc_indicators(btc_info_tf, metadata) dataframe = merge_informative_pair(dataframe, btc_info_tf, self.timeframe, self.inf_1h, ffill=True) drop_columns = [f"{s}_{self.inf_1h}" for s in ['date', 'open', 'high', 'low', 'close', 'volume']] dataframe.drop(columns=dataframe.columns.intersection(drop_columns), inplace=True) btc_base_tf = self.dp.get_pair_dataframe(btc_info_pair, self.timeframe) btc_base_tf = self.base_tf_btc_indicators(btc_base_tf, metadata) dataframe = merge_informative_pair(dataframe, btc_base_tf, self.timeframe, self.timeframe, ffill=True) drop_columns = [f"{s}_{self.timeframe}" for s in ['date', 'open', 'high', 'low', 'close', 'volume']] dataframe.drop(columns=dataframe.columns.intersection(drop_columns), inplace=True) # Calculate all ma_sell values for val in self.base_nb_candles_sell.range: dataframe[f'ma_sell_{val}'] = ta.EMA(dataframe, timeperiod=val) # Calculate all ma_buy values for val in self.base_nb_candles_buy.range: dataframe[f'ma_buy_{val}'] = ta.EMA(dataframe, timeperiod=val) dataframe['hma_50'] = qtpylib.hull_moving_average(dataframe['close'], window=50) dataframe['sma_9'] = ta.SMA(dataframe, timeperiod=9) # Elliot dataframe['EWO'] = EWO(dataframe, self.fast_ewo, self.slow_ewo) # RSI dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14) dataframe['rsi_fast'] = ta.RSI(dataframe, timeperiod=4) dataframe['rsi_slow'] = ta.RSI(dataframe, timeperiod=20) # lambo2 dataframe['ema_14'] = ta.EMA(dataframe, timeperiod=14) dataframe['rsi_4'] = ta.RSI(dataframe, timeperiod=4) dataframe['rsi_14'] = ta.RSI(dataframe, timeperiod=14) # Pump strength dataframe['zema_30'] = ftt.dema(dataframe, period=30) dataframe['zema_200'] = ftt.dema(dataframe, period=200) dataframe['pump_strength'] = (dataframe['zema_30'] - dataframe['zema_200']) / dataframe['zema_30'] # Cofi stoch_fast = ta.STOCHF(dataframe, 5, 3, 0, 3, 0) dataframe['fastd'] = stoch_fast['fastd'] dataframe['fastk'] = stoch_fast['fastk'] dataframe['adx'] = ta.ADX(dataframe) dataframe['ema_8'] = ta.EMA(dataframe, timeperiod=8) dataframe = self.pump_dump_protection(dataframe, metadata) return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: """ Entry logic inverted for shorts: look for overbought conditions and negative momentum. """ conditions = [] dataframe.loc[:, 'enter_tag'] = '' # lambo2_short: Parabolic pumps (inverted) lambo2_short = ( (dataframe['close'] > (dataframe['ema_14'] * self.lambo2_ema_14_factor.value)) & (dataframe['rsi_4'] > int(self.lambo2_rsi_4_limit.value)) & (dataframe['rsi_14'] > int(self.lambo2_rsi_14_limit.value)) ) dataframe.loc[lambo2_short, 'enter_tag'] += 'lambo2_short_' # sell1ewo_short: Rallies during downtrend (inverted) sell1ewo_short = ( (dataframe['rsi_fast'] > 65) & (dataframe['close'] > (dataframe[f'ma_sell_{self.base_nb_candles_sell.value}'] * self.high_offset.value)) & (dataframe['EWO'] > self.ewo_high.value) & (dataframe['rsi'] > self.rsi_sell.value) & (dataframe['volume'] > 0) & (dataframe['close'] > (dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value)) ) dataframe.loc[sell1ewo_short, 'enter_tag'] += 'sell1ewo_short_' conditions.append(sell1ewo_short) # sell2ewo_short: Extreme overbought (inverted) sell2ewo_short = ( (dataframe['rsi_fast'] > 65) & (dataframe['close'] > (dataframe[f'ma_sell_{self.base_nb_candles_sell.value}'] * self.high_offset.value)) & (dataframe['EWO'] < self.ewo_low.value) & (dataframe['volume'] > 0) & (dataframe['close'] > (dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value)) ) dataframe.loc[sell2ewo_short, 'enter_tag'] += 'sell2ewo_short_' conditions.append(sell2ewo_short) # cofi_short: Stochastic overbought crossdown (inverted) cofi_short = ( (dataframe['open'] > dataframe['ema_8'] * self.sell_ema_cofi.value) & (qtpylib.crossed_below(dataframe['fastk'], dataframe['fastd'])) & (dataframe['fastk'] > self.sell_fastk.value) & (dataframe['fastd'] > self.sell_fastd.value) & (dataframe['adx'] > self.sell_adx.value) & (dataframe['EWO'] < -self.sell_ewo_high.value) # Negative EWO for shorts ) dataframe.loc[cofi_short, 'enter_tag'] += 'cofi_short_' # The standalone lambo/cofi short entries are not stable enough in local # dry-run and backtest evidence. Keep them as confirming tags, but require # one of the EWO-based triggers to actually open the short. if conditions: dataframe.loc[ reduce(lambda x, y: x | y, conditions), 'enter_short' ] = 1 dont_short_conditions = [] # Don't short if there seems to be a Pump and Dump event (same protection) dont_short_conditions.append((dataframe['pnd_volume_warn'] < 0.0)) # BTC price protection (inverted: don't short when BTC oversold - may bounce) dont_short_conditions.append((dataframe['btc_rsi_8_1h'] > 65.0)) if dont_short_conditions: for condition in dont_short_conditions: dataframe.loc[condition, 'enter_short'] = 0 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: """ Exit logic inverted for shorts: exit when price falls and momentum reverses down. """ conditions = [] conditions.append( ( (dataframe['close'] < dataframe['hma_50']) & (dataframe['close'] < (dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset_2.value)) & (dataframe['rsi'] < 50) & (dataframe['volume'] > 0) & (dataframe['rsi_fast'] < dataframe['rsi_slow']) ) | ( (dataframe['close'] > dataframe['hma_50']) & (dataframe['close'] < (dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value)) & (dataframe['volume'] > 0) & (dataframe['rsi_fast'] < dataframe['rsi_slow']) ) ) if conditions: dataframe.loc[ reduce(lambda x, y: x | y, conditions), 'exit_short' ] = 1 return dataframe def pct_change(a, b): return (b - a) / a |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 362.3s
ℹ️ This strategy uses a trailing stop — freqtrade only
re-checks these once per 5m candle by default, not against the price movement within it.
For a more accurate read, re-run this backtest locally with --timeframe-detail 1m. 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 →
- did not beat simply holding the market
- 98% of resampled runs stayed profitable
- profitable across 68% of rolling 3-month windows
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 |
|---|---|---|---|---|---|---|---|---|---|
| Dec 2025 | bearish trending low vol | 5 | -3.21 | -6.46 | 3 | 2 | 60.0 | -26.62 | 1h 20m |
| Nov 2025 | bearish trending high vol | 102 | -10.62 | -1.03 | 80 | 22 | 78.4 | -27.54 | 0h 54m |
| Oct 2025 | bearish trending low vol | 34 | +1.45 | 0.43 | 30 | 4 | 88.2 | -22.76 | 1h 16m |
| Sep 2025 | bullish choppy low vol | 24 | -2.05 | -0.85 | 17 | 7 | 70.8 | -22.83 | 0h 24m |
| Aug 2025 | bearish choppy low vol | 6 | -0.44 | -0.60 | 5 | 1 | 83.3 | -21.56 | 1h 47m |
| Jul 2025 | bullish choppy low vol | 37 | +1.93 | 0.51 | 33 | 4 | 89.2 | -22.05 | 0h 36m |
| Jun 2025 | bearish choppy low vol | 22 | +2.88 | 1.32 | 21 | 1 | 95.5 | -23.63 | 2h 33m |
| May 2025 | bullish trending low vol | 24 | +2.37 | 1.00 | 22 | 2 | 91.7 | -24.03 | 0h 48m |
| Apr 2025 | bullish choppy low vol | 12 | -3.74 | -3.12 | 9 | 3 | 75.0 | -23.76 | 1h 58m |
| Mar 2025 | bearish trending high vol | 16 | +2.16 | 1.36 | 15 | 1 | 93.8 | -23.04 | 1h 21m |
| Feb 2025 | bearish trending low vol | 30 | -14.14 | -4.75 | 20 | 10 | 66.7 | -23.53 | 1h 25m |
| Jan 2025 | bearish choppy low vol | 24 | +0.84 | 0.36 | 22 | 2 | 91.7 | -18.99 | 1h 16m |
| Dec 2024 | bullish trending low vol | 162 | -5.53 | -0.34 | 138 | 24 | 85.2 | -19.24 | 1h 04m |
| Nov 2024 | bullish trending low vol | 288 | -31.02 | -1.08 | 235 | 53 | 81.6 | -18.62 | 0h 53m |
| Oct 2024 | bullish choppy low vol | 1 | +0.20 | 2.01 | 1 | 0 | 100.0 | -4.65 | 0h 40m |
| Sep 2024 | bearish choppy low vol | 10 | -2.15 | -2.14 | 8 | 2 | 80.0 | -5.05 | 2h 00m |
| Aug 2024 | bearish choppy high vol | 12 | +3.23 | 2.73 | 12 | 0 | 100.0 | -5.08 | 0h 52m |
| Jul 2024 | bearish trending low vol | 7 | +1.86 | 2.66 | 7 | 0 | 100.0 | -5.64 | 2h 35m |
| Jun 2024 | bearish choppy low vol | 4 | +1.20 | 3.01 | 4 | 0 | 100.0 | -6.1 | 2h 06m |
| May 2024 | bullish choppy high vol | 4 | +1.11 | 2.82 | 4 | 0 | 100.0 | -6.58 | 0h 10m |
| Apr 2024 | bearish choppy high vol | 26 | -16.50 | -6.40 | 16 | 10 | 61.5 | -7.56 | 1h 42m |
| Mar 2024 | bullish trending high vol | 108 | +3.49 | 0.35 | 95 | 13 | 88.0 | -3.23 | 1h 15m |
| Feb 2024 | bullish trending low vol | 35 | -1.66 | -0.47 | 30 | 5 | 85.7 | -1.55 | 0h 48m |
| Jan 2024 | bearish choppy high vol | 64 | +2.58 | 0.41 | 57 | 7 | 89.1 | -2.18 | 1h 19m |
| Dec 2023 | bullish trending low vol | 126 | +2.70 | 0.21 | 109 | 17 | 86.5 | -3.81 | 0h 55m |
| Nov 2023 | bullish trending low vol | 60 | +3.76 | 0.64 | 54 | 6 | 90.0 | -2.41 | 0h 44m |
| Oct 2023 | bullish trending low vol | 4 | -1.13 | -2.83 | 3 | 1 | 75.0 | -1.5 | 1h 31m |
| Sep 2023 | bearish choppy low vol | 2 | +0.34 | 1.69 | 2 | 0 | 100.0 | -0.84 | 1h 55m |
| Aug 2023 | bearish choppy low vol | 4 | -1.23 | -3.08 | 3 | 1 | 75.0 | -1.16 | 1h 16m |
| Jul 2023 | bullish trending low vol | 8 | +0.90 | 1.12 | 7 | 1 | 87.5 | -0.78 | 0h 16m |
| Jun 2023 | bullish trending low vol | 15 | +2.26 | 1.51 | 14 | 1 | 93.3 | -1.23 | 0h 54m |
| May 2023 | bearish choppy low vol | 2 | +1.05 | 5.24 | 2 | 0 | 100.0 | -1.09 | 0h 22m |
| Apr 2023 | bullish trending low vol | 12 | +3.72 | 3.11 | 12 | 0 | 100.0 | -2.55 | 0h 28m |
| Mar 2023 | bullish trending high vol | 19 | +3.07 | 1.62 | 18 | 1 | 94.7 | -3.99 | 0h 28m |
| Feb 2023 | bullish trending low vol | 33 | +5.14 | 1.57 | 31 | 2 | 93.9 | -5.71 | 1h 07m |
| Jan 2023 | bullish trending low vol | 38 | +1.39 | 0.37 | 33 | 5 | 86.8 | -7.09 | 0h 35m |
| Nov 2022 | bearish trending high vol | 69 | +9.93 | 1.44 | 60 | 9 | 87.0 | -10.29 | 0h 29m |
| Oct 2022 | bullish choppy low vol | 23 | -5.95 | -2.59 | 17 | 6 | 73.9 | -10.24 | 0h 47m |
| Sep 2022 | bearish choppy high vol | 6 | -2.19 | -3.65 | 4 | 2 | 66.7 | -7.93 | 1h 23m |
| Aug 2022 | bullish choppy high vol | 17 | +0.14 | 0.09 | 14 | 3 | 82.4 | -8.17 | 0h 23m |
| Jul 2022 | bullish trending high vol | 74 | -6.96 | -0.95 | 60 | 14 | 81.1 | -7.98 | 1h 12m |
| Jun 2022 | bearish trending high vol | 72 | -5.74 | -0.80 | 60 | 12 | 83.3 | -6.06 | 1h 05m |
| May 2022 | bearish trending high vol | 103 | +11.03 | 1.09 | 86 | 17 | 83.5 | -3.32 | 0h 21m |
| Apr 2022 | bearish choppy high vol | 11 | -3.78 | -3.49 | 8 | 3 | 72.7 | -2.2 | 1h 04m |
| Mar 2022 | bullish choppy high vol | 24 | +4.44 | 1.87 | 23 | 1 | 95.8 | -1.41 | 0h 55m |
| Feb 2022 | bearish trending high vol | 4 | +1.04 | 2.64 | 4 | 0 | 100.0 | -0.92 | 0h 28m |
| Jan 2022 | bearish trending high vol | 23 | +4.52 | 2.00 | 22 | 1 | 95.7 | -2.81 | 1h 02m |
| Dec 2021 | bearish trending high vol | 49 | -3.10 | -0.62 | 42 | 7 | 85.7 | -3.63 | 1h 14m |
| Nov 2021 | bearish trending high vol | 34 | +9.57 | 2.97 | 34 | 0 | 100.0 | 0.0 | 0h 55m |
| Oct 2021 | bullish trending high vol | 24 | +4.88 | 2.05 | 23 | 1 | 95.8 | -1.44 | 0h 45m |
| Sep 2021 | bearish trending high vol | 153 | +8.23 | 0.59 | 133 | 20 | 86.9 | -7.12 | 0h 39m |
| Aug 2021 | bullish trending high vol | 102 | +9.21 | 0.90 | 91 | 11 | 89.2 | -9.4 | 0h 43m |
| Jul 2021 | bullish trending high vol | 41 | +4.26 | 1.06 | 39 | 2 | 95.1 | -10.68 | 1h 23m |
| Jun 2021 | bearish trending high vol | 76 | -0.83 | -0.11 | 66 | 10 | 86.8 | -11.99 | 1h 26m |
| May 2021 | bearish trending high vol | 528 | +14.51 | 0.27 | 434 | 94 | 82.2 | -14.38 | 0h 35m |
| Apr 2021 | bearish choppy high vol | 374 | +35.58 | 0.97 | 327 | 47 | 87.4 | -5.19 | 0h 33m |
| Mar 2021 | bullish choppy high vol | 136 | +8.91 | 0.65 | 121 | 15 | 89.0 | -3.55 | 0h 48m |
| Feb 2021 | bullish trending high vol | 537 | +24.22 | 0.44 | 460 | 77 | 85.7 | -16.59 | 0h 32m |
| Jan 2021 | bullish trending high vol | 565 | +19.48 | 0.34 | 479 | 86 | 84.8 | -10.37 | 0h 36m |
Yearly breakdown
| Year | Trades | Profit % | Avg % | Win | Loss | Win % | DD % | Avg dur |
|---|---|---|---|---|---|---|---|---|
| 2025 | 336 | -22.57 | -0.67 | 277 | 59 | 82.4 | -27.54 | 1h 07m |
| 2024 | 721 | -43.19 | -0.60 | 607 | 114 | 84.2 | -19.24 | 1h 05m |
| 2023 | 323 | +21.97 | 0.68 | 288 | 35 | 89.2 | -7.09 | 0h 49m |
| 2022 | 426 | +6.48 | 0.16 | 358 | 68 | 84.0 | -10.29 | 0h 46m |
| 2021 | 2619 | +134.92 | 0.52 | 2249 | 370 | 85.9 | -16.59 | 0h 39m |
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 lookahead-analysis: detects strategies peeking at future candles.