15 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 | 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__) 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 EI3v2_tag_cofi_green_Future_Long_3(IStrategy): INTERFACE_VERSION = 3 """ minimal_roi = { "0": 0.08, "20": 0.04, "40": 0.032, "87": 0.016, "201": 0, "202": -1 } """ can_short = True enter_long_params = { "base_nb_candles_enter_long": 12, "rsi_enter_long": 58, "ewo_high": 3.001, "ewo_low": -10.289, "low_offset": 0.987, "lambo2_ema_14_factor": 0.981, "lambo2_enabled": True, "lambo2_rsi_14_limit": 39, "lambo2_rsi_4_limit": 44, "enter_long_adx": 20, "enter_long_fastd": 20, "enter_long_fastk": 22, "enter_long_ema_cofi": 0.98, "enter_long_ewo_high": 4.179 } exit_long_params = { "base_nb_candles_exit_long": 22, "high_offset": 1.014, "high_offset_2": 1.01 } @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 } ] minimal_roi = { "0": 0.99, } stoploss = -0.99 base_nb_candles_enter_long = IntParameter(8, 20, default=enter_long_params['base_nb_candles_enter_long'], space='buy', optimize=False) base_nb_candles_exit_long = IntParameter(8, 20, default=exit_long_params['base_nb_candles_exit_long'], space='sell', optimize=False) low_offset = DecimalParameter(0.985, 0.995, default=enter_long_params['low_offset'], space='buy', optimize=True) high_offset = DecimalParameter(1.005, 1.015, default=exit_long_params['high_offset'], space='sell', optimize=True) high_offset_2 = DecimalParameter(1.010, 1.020, default=exit_long_params['high_offset_2'], space='sell', optimize=True) lambo2_ema_14_factor = DecimalParameter(0.8, 1.2, decimals=3, default=enter_long_params['lambo2_ema_14_factor'], space='buy', optimize=True) lambo2_rsi_4_limit = IntParameter(5, 60, default=enter_long_params['lambo2_rsi_4_limit'], space='buy', optimize=True) lambo2_rsi_14_limit = IntParameter(5, 60, default=enter_long_params['lambo2_rsi_14_limit'], space='buy', optimize=True) fast_ewo = 50 slow_ewo = 200 ewo_low = DecimalParameter(-20.0, -8.0,default=enter_long_params['ewo_low'], space='buy', optimize=True) ewo_high = DecimalParameter(3.0, 3.4, default=enter_long_params['ewo_high'], space='buy', optimize=True) rsi_enter_long = IntParameter(30, 70, default=enter_long_params['rsi_enter_long'], space='buy', optimize=False) trailing_stop = True trailing_stop_positive = 0.001 trailing_stop_positive_offset = 0.012 trailing_only_offset_is_reached = True is_optimize_cofi = False enter_long_ema_cofi = DecimalParameter(0.96, 0.98, default=0.97 , optimize = is_optimize_cofi) enter_long_fastk = IntParameter(20, 30, default=20, optimize = is_optimize_cofi) enter_long_fastd = IntParameter(20, 30, default=20, optimize = is_optimize_cofi) enter_long_adx = IntParameter(20, 30, default=30, optimize = is_optimize_cofi) enter_long_ewo_high = DecimalParameter(2, 12, default=3.553, optimize = is_optimize_cofi) use_exit_signal = True exit_profit_only = True exit_profit_offset = 0.01 ignore_roi_if_entry_signal = False order_time_in_force = { 'entry': 'gtc', 'exit': 'gtc' } timeframe = '5m' inf_1h = '1h' process_only_new_candles = True startup_candle_count = 400 plot_config = { 'main_plot': { 'ma_enter_long': {'color': 'orange'}, 'ma_exit_long': {'color': 'orange'}, }, } def custom_exit(self, pair: str, trade: 'Trade', current_time: 'datetime', current_rate: float, current_profit: float, **kwargs): if current_profit < -0.04 and (current_time - trade.open_date_utc).days >= 4: return 'unclog' def informative_pairs(self): pairs = self.dp.current_whitelist() informative_pairs = [(pair, '1h') for pair in pairs] if self.config['stake_currency'] in ['USDT:USDT','BUSD','USDC','DAI','TUSD','PAX','USD','EUR','GBP']: btc_info_pair = f"BTC/{self.config['stake_currency']}" else: btc_info_pair = "BTC/USDT: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: dataframe['price_trend_long'] = (dataframe['close'].rolling(8).mean() / dataframe['close'].shift(8).rolling(144).mean()) 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: dataframe['rsi_8'] = ta.RSI(dataframe, timeperiod=8) 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['stake_currency'] in ['USDT:USDT','BUSD']: btc_info_pair = f"BTC/{self.config['stake_currency']}" else: btc_info_pair = "BTC/USDT: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) for val in self.base_nb_candles_enter_long.range: dataframe[f'ma_enter_long_{val}'] = ta.EMA(dataframe, timeperiod=val) for val in self.base_nb_candles_exit_long.range: dataframe[f'ma_exit_long_{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) dataframe['EWO'] = EWO(dataframe, self.fast_ewo, self.slow_ewo) dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14) dataframe['rsi_fast'] = ta.RSI(dataframe, timeperiod=4) dataframe['rsi_slow'] = ta.RSI(dataframe, timeperiod=20) dataframe['ema_14'] = ta.EMA(dataframe, timeperiod=14) dataframe['rsi_4'] = ta.RSI(dataframe, timeperiod=4) dataframe['rsi_14'] = ta.RSI(dataframe, timeperiod=14) dataframe['dema_30'] = ftt.dema(dataframe, period=30) dataframe['dema_200'] = ftt.dema(dataframe, period=200) dataframe['pump_strength'] = (dataframe['dema_30'] - dataframe['dema_200']) / dataframe['dema_30'] 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: conditions = [] dataframe.loc[:, 'enter_tag'] = '' lambo2 = ( (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, 'enter_tag'] += 'lambo2_' conditions.append(lambo2) buy1ewo = ( (dataframe['rsi_fast'] <35)& (dataframe['close'] < (dataframe[f'ma_enter_long_{self.base_nb_candles_enter_long.value}'] * self.low_offset.value)) & (dataframe['EWO'] > self.ewo_high.value) & (dataframe['rsi'] < self.rsi_enter_long.value) & (dataframe['volume'] > 0)& (dataframe['close'] < (dataframe[f'ma_exit_long_{self.base_nb_candles_exit_long.value}'] * self.high_offset.value)) ) dataframe.loc[buy1ewo, 'enter_tag'] += 'buy1eworsi_' conditions.append(buy1ewo) buy2ewo = ( (dataframe['rsi_fast'] < 35)& (dataframe['close'] < (dataframe[f'ma_enter_long_{self.base_nb_candles_enter_long.value}'] * self.low_offset.value)) & (dataframe['EWO'] < self.ewo_low.value) & (dataframe['volume'] > 0)& (dataframe['close'] < (dataframe[f'ma_exit_long_{self.base_nb_candles_exit_long.value}'] * self.high_offset.value)) ) dataframe.loc[buy2ewo, 'enter_tag'] += 'buy2ewo_' conditions.append(buy2ewo) is_cofi = ( (dataframe['open'] < dataframe['ema_8'] * self.enter_long_ema_cofi.value) & (qtpylib.crossed_above(dataframe['fastk'], dataframe['fastd'])) & (dataframe['fastk'] < self.enter_long_fastk.value) & (dataframe['fastd'] < self.enter_long_fastd.value) & (dataframe['adx'] > self.enter_long_adx.value) & (dataframe['EWO'] > self.enter_long_ewo_high.value) ) dataframe.loc[is_cofi, 'enter_tag'] += 'cofi_' conditions.append(is_cofi) if conditions: dataframe.loc[ reduce(lambda x, y: x | y, conditions), 'enter_long' ]=1 dont_enter_long_conditions = [] dont_enter_long_conditions.append((dataframe['pnd_volume_warn'] < 0.0)) dont_enter_long_conditions.append((dataframe['btc_rsi_8_1h'] < 35.0)) if dont_enter_long_conditions: for condition in dont_enter_long_conditions: dataframe.loc[condition, 'enter_long'] = 0 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: conditions = [] conditions.append( ( (dataframe['close']>dataframe['hma_50'])& (dataframe['close'] > (dataframe[f'ma_exit_long_{self.base_nb_candles_exit_long.value}'] * self.high_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_exit_long_{self.base_nb_candles_exit_long.value}'] * self.high_offset.value)) & (dataframe['volume'] > 0)& (dataframe['rsi_fast']>dataframe['rsi_slow']) ) ) if conditions: dataframe.loc[ reduce(lambda x, y: x | y, conditions), 'exit_long' ]=1 return dataframe def confirm_trade_exit(self, pair: str, trade: Trade, order_type: str, amount: float, rate: float, time_in_force: str, exit_reason: str, current_time: datetime, **kwargs) -> bool: trade.exit_reason = exit_reason + "_" + trade.enter_tag return True def pct_change(a, b): return (b - a) / a class EI3v2_tag_cofi_dca_green_Future_Long(EI3v2_tag_cofi_green_Future_Long_3): initial_safety_order_trigger = -0.018 max_safety_orders = 8 safety_order_step_scale = 1.2 safety_order_volume_scale = 1.4 enter_long_params = { "dca_min_rsi": 35, } enter_long_params.update(EI3v2_tag_cofi_green_Future_Long.enter_long_params) dca_min_rsi = IntParameter(35, 75, default=enter_long_params['dca_min_rsi'], space='enter_long', optimize=True) def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe = super().populate_indicators(dataframe, metadata) dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14) return dataframe def adjust_trade_position(self, trade: Trade, current_time: datetime, current_rate: float, current_profit: float, min_stake: float, max_stake: float, **kwargs): if current_profit > self.initial_safety_order_trigger: return None dataframe, _ = self.dp.get_analyzed_dataframe(trade.pair, self.timeframe) last_candle = dataframe.iloc[-1].squeeze() previous_candle = dataframe.iloc[-2].squeeze() if last_candle['close'] < previous_candle['close']: return None count_of_buys = 0 for order in trade.orders: if order.ft_is_open or order.ft_order_side != 'enter_long': continue if order.status == "closed": count_of_buys += 1 if 1 <= count_of_buys <= self.max_safety_orders: safety_order_trigger = abs(self.initial_safety_order_trigger) + (abs(self.initial_safety_order_trigger) * self.safety_order_step_scale * (math.pow(self.safety_order_step_scale,(count_of_buys - 1)) - 1) / (self.safety_order_step_scale - 1)) if current_profit <= (-1 * abs(safety_order_trigger)): try: stake_amount = self.wallets.get_trade_stake_amount(trade.pair, None) stake_amount = stake_amount * math.pow(self.safety_order_volume_scale,(count_of_buys - 1)) amount = stake_amount / current_rate logger.info(f"Initiating safety order buy #{count_of_buys} for {trade.pair} with stake amount of {stake_amount} which equals {amount}") return stake_amount except Exception as exception: logger.info(f'Error occured while trying to get stake amount for {trade.pair}: {str(exception)}') return None return None |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 984.7s
ℹ️ 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 →
- statistically significant edge (p=0.00)
- 100% of resampled runs stayed profitable
- profitable across 83% 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 |
|---|---|---|---|---|---|---|---|---|---|
| Dec 2025 | bearish trending low vol | 49 | +3.31 | 0.68 | 45 | 4 | 91.8 | -1.46 | 17h 50m |
| Nov 2025 | bearish trending high vol | 161 | +1.32 | 0.08 | 148 | 13 | 91.9 | -1.48 | 10h 55m |
| Oct 2025 | bearish trending low vol | 98 | +6.66 | 0.69 | 96 | 2 | 98.0 | -0.83 | 5h 39m |
| Sep 2025 | bullish choppy low vol | 23 | +3.42 | 1.49 | 23 | 0 | 100.0 | -0.23 | 2h 32m |
| Aug 2025 | bearish choppy low vol | 27 | +0.16 | 0.06 | 24 | 3 | 88.9 | -0.25 | 14h 55m |
| Jul 2025 | bullish choppy low vol | 132 | +12.48 | 0.95 | 127 | 5 | 96.2 | -0.61 | 6h 59m |
| Jun 2025 | bearish choppy low vol | 60 | -1.19 | -0.18 | 50 | 10 | 83.3 | -0.91 | 18h 02m |
| May 2025 | bullish trending low vol | 100 | +5.98 | 0.61 | 92 | 8 | 92.0 | -0.42 | 13h 42m |
| Apr 2025 | bullish choppy low vol | 90 | +1.49 | 0.16 | 81 | 9 | 90.0 | -1.08 | 14h 10m |
| Mar 2025 | bearish trending high vol | 103 | +5.70 | 0.59 | 95 | 8 | 92.2 | -0.52 | 13h 08m |
| Feb 2025 | bearish trending low vol | 168 | +8.87 | 0.51 | 159 | 9 | 94.6 | -0.82 | 9h 46m |
| Jan 2025 | bearish choppy low vol | 116 | +8.97 | 0.82 | 111 | 5 | 95.7 | -1.02 | 5h 52m |
| Dec 2024 | bullish trending low vol | 281 | +14.44 | 0.52 | 264 | 17 | 94.0 | -1.6 | 10h 45m |
| Nov 2024 | bullish trending low vol | 395 | +49.70 | 1.27 | 388 | 7 | 98.2 | -1.38 | 6h 30m |
| Oct 2024 | bullish choppy low vol | 49 | +3.65 | 0.75 | 45 | 4 | 91.8 | -2.08 | 13h 21m |
| Sep 2024 | bearish choppy low vol | 17 | +1.07 | 0.64 | 16 | 1 | 94.1 | -2.36 | 15h 17m |
| Aug 2024 | bearish choppy high vol | 72 | -9.20 | -1.27 | 58 | 14 | 80.6 | -2.35 | 23h 08m |
| Jul 2024 | bearish trending low vol | 46 | +4.72 | 1.04 | 45 | 1 | 97.8 | -1.43 | 8h 02m |
| Jun 2024 | bearish choppy low vol | 31 | -7.31 | -2.40 | 25 | 6 | 80.6 | -1.5 | 27h 24m |
| May 2024 | bullish choppy high vol | 42 | +0.98 | 0.24 | 38 | 4 | 90.5 | -0.73 | 17h 32m |
| Apr 2024 | bearish choppy high vol | 84 | +6.64 | 0.80 | 80 | 4 | 95.2 | -0.94 | 14h 27m |
| Mar 2024 | bullish trending high vol | 242 | +9.06 | 0.41 | 226 | 16 | 93.4 | -1.83 | 10h 05m |
| Feb 2024 | bullish trending low vol | 91 | +9.82 | 1.09 | 88 | 3 | 96.7 | -1.38 | 7h 28m |
| Jan 2024 | bearish choppy high vol | 181 | -1.49 | -0.10 | 160 | 21 | 88.4 | -1.88 | 15h 33m |
| Dec 2023 | bullish trending low vol | 176 | +17.93 | 1.04 | 171 | 5 | 97.2 | -0.56 | 7h 29m |
| Nov 2023 | bullish trending low vol | 142 | +16.34 | 1.17 | 138 | 4 | 97.2 | -0.18 | 9h 55m |
| Oct 2023 | bullish trending low vol | 65 | +7.98 | 1.24 | 65 | 0 | 100.0 | -0.98 | 3h 04m |
| Sep 2023 | bearish choppy low vol | 9 | -1.60 | -1.78 | 6 | 3 | 66.7 | -1.06 | 45h 09m |
| Aug 2023 | bearish choppy low vol | 33 | +1.25 | 0.36 | 30 | 3 | 90.9 | -0.92 | 12h 19m |
| Jul 2023 | bullish trending low vol | 48 | -4.13 | -0.88 | 37 | 11 | 77.1 | -0.94 | 29h 31m |
| Jun 2023 | bullish trending low vol | 99 | +12.12 | 1.23 | 97 | 2 | 98.0 | -0.9 | 7h 46m |
| May 2023 | bearish choppy low vol | 19 | +1.99 | 1.05 | 18 | 1 | 94.7 | -1.17 | 6h 59m |
| Apr 2023 | bullish trending low vol | 59 | -0.93 | -0.20 | 51 | 8 | 86.4 | -1.36 | 18h 48m |
| Mar 2023 | bullish trending high vol | 170 | +17.52 | 1.04 | 162 | 8 | 95.3 | -1.08 | 9h 22m |
| Feb 2023 | bullish trending low vol | 89 | +5.49 | 0.62 | 84 | 5 | 94.4 | -0.94 | 12h 07m |
| Jan 2023 | bullish trending low vol | 186 | +24.13 | 1.31 | 184 | 2 | 98.9 | -3.78 | 7h 13m |
| Dec 2022 | bearish trending low vol | 18 | +0.54 | 0.30 | 17 | 1 | 94.4 | -3.91 | 8h 06m |
| Nov 2022 | bearish trending high vol | 120 | -8.55 | -0.71 | 106 | 14 | 88.3 | -5.3 | 18h 06m |
| Oct 2022 | bullish choppy low vol | 57 | +3.04 | 0.53 | 50 | 7 | 87.7 | -3.38 | 22h 10m |
| Sep 2022 | bearish choppy high vol | 96 | -0.07 | -0.03 | 85 | 11 | 88.5 | -3.66 | 24h 03m |
| Aug 2022 | bullish choppy high vol | 119 | -7.25 | -0.60 | 102 | 17 | 85.7 | -2.93 | 20h 57m |
| Jul 2022 | bullish trending high vol | 206 | +16.93 | 0.82 | 197 | 9 | 95.6 | -4.85 | 10h 25m |
| Jun 2022 | bearish trending high vol | 236 | -12.52 | -0.53 | 209 | 27 | 88.6 | -5.78 | 17h 56m |
| May 2022 | bearish trending high vol | 201 | +4.62 | 0.24 | 189 | 12 | 94.0 | -2.99 | 12h 04m |
| Apr 2022 | bearish choppy high vol | 55 | +7.22 | 1.37 | 55 | 0 | 100.0 | 0.0 | 4h 25m |
| Mar 2022 | bullish choppy high vol | 127 | +10.76 | 0.87 | 122 | 5 | 96.1 | -0.74 | 6h 29m |
| Feb 2022 | bearish trending high vol | 145 | +17.75 | 1.26 | 143 | 2 | 98.6 | -2.81 | 11h 53m |
| Jan 2022 | bearish trending high vol | 160 | -8.19 | -0.55 | 146 | 14 | 91.2 | -3.99 | 15h 32m |
| Dec 2021 | bearish trending high vol | 173 | +14.46 | 0.88 | 168 | 5 | 97.1 | -0.84 | 8h 02m |
| Nov 2021 | bearish trending high vol | 103 | +4.72 | 0.45 | 95 | 8 | 92.2 | -0.82 | 12h 12m |
| Oct 2021 | bullish trending high vol | 163 | +16.99 | 1.07 | 159 | 4 | 97.5 | -1.26 | 5h 40m |
| Sep 2021 | bearish trending high vol | 262 | +6.08 | 0.29 | 243 | 19 | 92.7 | -2.54 | 12h 38m |
| Aug 2021 | bullish trending high vol | 268 | +32.39 | 1.27 | 261 | 7 | 97.4 | -0.67 | 6h 28m |
| Jul 2021 | bullish trending high vol | 212 | +17.33 | 0.84 | 200 | 12 | 94.3 | -2.09 | 11h 18m |
| Jun 2021 | bearish trending high vol | 202 | +0.57 | 0.01 | 182 | 20 | 90.1 | -3.64 | 14h 05m |
| May 2021 | bearish trending high vol | 741 | +45.70 | 0.64 | 719 | 22 | 97.0 | -6.81 | 5h 40m |
| Apr 2021 | bearish choppy high vol | 454 | +27.15 | 0.61 | 432 | 22 | 95.2 | -3.87 | 7h 57m |
| Mar 2021 | bullish choppy high vol | 343 | +29.05 | 0.87 | 330 | 13 | 96.2 | -3.52 | 7h 57m |
| Feb 2021 | bullish trending high vol | 582 | +48.97 | 0.87 | 562 | 20 | 96.6 | -2.98 | 6h 59m |
| Jan 2021 | bullish trending high vol | 845 | +105.09 | 1.27 | 832 | 13 | 98.5 | -2.66 | 4h 07m |
Yearly breakdown
| Year | Trades | Profit % | Avg % | Win | Loss | Win % | DD % | Avg dur |
|---|---|---|---|---|---|---|---|---|
| 2025 | 1127 | +57.17 | 0.52 | 1051 | 76 | 93.3 | -1.48 | 10h 37m |
| 2024 | 1531 | +82.08 | 0.55 | 1433 | 98 | 93.6 | -2.36 | 11h 17m |
| 2023 | 1095 | +98.09 | 0.90 | 1043 | 52 | 95.3 | -3.78 | 10h 12m |
| 2022 | 1540 | +24.28 | 0.16 | 1421 | 119 | 92.3 | -5.78 | 14h 35m |
| 2021 | 4348 | +348.50 | 0.83 | 4183 | 165 | 96.2 | -6.81 | 7h 21m |
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 109.6s