6 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 | 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 def EWO(dataframe, ema_length=5, ema2_length=35): df = dataframe.copy() ema1 = ta.SMA(df, timeperiod=ema_length) ema2 = ta.SMA(df, timeperiod=ema2_length) emadif = (ema1 - ema2) / df['close'] * 100 return emadif def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe['adx'] = ta.ADX(dataframe) dataframe['plus_dm'] = ta.PLUS_DM(dataframe) dataframe['plus_di'] = ta.PLUS_DI(dataframe) dataframe['minus_dm'] = ta.MINUS_DM(dataframe) dataframe['minus_di'] = ta.MINUS_DI(dataframe) aroon = ta.AROON(dataframe) dataframe['aroonup'] = aroon['aroonup'] dataframe['aroondown'] = aroon['aroondown'] dataframe['aroonosc'] = ta.AROONOSC(dataframe) dataframe['ao'] = qtpylib.awesome_oscillator(dataframe) keltner = qtpylib.keltner_channel(dataframe) dataframe['kc_upperband'] = keltner['upper'] dataframe['kc_lowerband'] = keltner['lower'] dataframe['kc_middleband'] = keltner['mid'] dataframe['kc_percent'] = (dataframe['close'] - dataframe['kc_lowerband']) / (dataframe['kc_upperband'] - dataframe['kc_lowerband']) dataframe['kc_width'] = (dataframe['kc_upperband'] - dataframe['kc_lowerband']) / dataframe['kc_middleband'] dataframe['uo'] = ta.ULTOSC(dataframe) dataframe['cci'] = ta.CCI(dataframe) dataframe['rsi'] = ta.RSI(dataframe) rsi = 0.1 * (dataframe['rsi'] - 50) dataframe['fisher_rsi'] = (np.exp(2 * rsi) - 1) / (np.exp(2 * rsi) + 1) dataframe['fisher_rsi_norma'] = 50 * (dataframe['fisher_rsi'] + 1) stoch = ta.STOCH(dataframe) dataframe['slowd'] = stoch['slowd'] dataframe['slowk'] = stoch['slowk'] stoch_fast = ta.STOCHF(dataframe) dataframe['fastd'] = stoch_fast['fastd'] dataframe['fastk'] = stoch_fast['fastk'] stoch_rsi = ta.STOCHRSI(dataframe) dataframe['fastd_rsi'] = stoch_rsi['fastd'] dataframe['fastk_rsi'] = stoch_rsi['fastk'] macd = ta.MACD(dataframe) dataframe['macd'] = macd['macd'] dataframe['macdsignal'] = macd['macdsignal'] dataframe['macdhist'] = macd['macdhist'] dataframe['mfi'] = ta.MFI(dataframe) dataframe['roc'] = ta.ROC(dataframe) bollinger = qtpylib.bollinger_bands(qtpylib.typical_price(dataframe), window=20, stds=2) dataframe['bb_lowerband'] = bollinger['lower'] dataframe['bb_middleband'] = bollinger['mid'] dataframe['bb_upperband'] = bollinger['upper'] dataframe['bb_percent'] = (dataframe['close'] - dataframe['bb_lowerband']) / (dataframe['bb_upperband'] - dataframe['bb_lowerband']) dataframe['bb_width'] = (dataframe['bb_upperband'] - dataframe['bb_lowerband']) / dataframe['bb_middleband'] dataframe['sar'] = ta.SAR(dataframe) dataframe['tema'] = ta.TEMA(dataframe, timeperiod=9) hilbert = ta.HT_SINE(dataframe) dataframe['htsine'] = hilbert['sine'] dataframe['htleadsine'] = hilbert['leadsine'] dataframe['CDLHAMMER'] = ta.CDLHAMMER(dataframe) dataframe['CDLINVERTEDHAMMER'] = ta.CDLINVERTEDHAMMER(dataframe) dataframe['CDLDRAGONFLYDOJI'] = ta.CDLDRAGONFLYDOJI(dataframe) dataframe['CDLPIERCING'] = ta.CDLPIERCING(dataframe) # values [0, 100] dataframe['CDLMORNINGSTAR'] = ta.CDLMORNINGSTAR(dataframe) # values [0, 100] dataframe['CDL3WHITESOLDIERS'] = ta.CDL3WHITESOLDIERS(dataframe) # values [0, 100] dataframe['CDLHANGINGMAN'] = ta.CDLHANGINGMAN(dataframe) dataframe['CDLSHOOTINGSTAR'] = ta.CDLSHOOTINGSTAR(dataframe) dataframe['CDLGRAVESTONEDOJI'] = ta.CDLGRAVESTONEDOJI(dataframe) dataframe['CDLDARKCLOUDCOVER'] = ta.CDLDARKCLOUDCOVER(dataframe) dataframe['CDLEVENINGDOJISTAR'] = ta.CDLEVENINGDOJISTAR(dataframe) dataframe['CDLEVENINGSTAR'] = ta.CDLEVENINGSTAR(dataframe) dataframe['CDL3LINESTRIKE'] = ta.CDL3LINESTRIKE(dataframe) dataframe['CDLSPINNINGTOP'] = ta.CDLSPINNINGTOP(dataframe) # values [0, -100, 100] dataframe['CDLENGULFING'] = ta.CDLENGULFING(dataframe) # values [0, -100, 100] dataframe['CDLHARAMI'] = ta.CDLHARAMI(dataframe) # values [0, -100, 100] dataframe['CDL3OUTSIDE'] = ta.CDL3OUTSIDE(dataframe) # values [0, -100, 100] dataframe['CDL3INSIDE'] = ta.CDL3INSIDE(dataframe) # values [0, -100, 100] heikinashi = qtpylib.heikinashi(dataframe) dataframe['ha_open'] = heikinashi['open'] dataframe['ha_close'] = heikinashi['close'] dataframe['ha_high'] = heikinashi['high'] dataframe['ha_low'] = heikinashi['low'] return dataframe class el_3(IStrategy): INTERFACE_VERSION = 3 can_short = True buy_params = { "base_nb_candles_buy": 12, "ewo_high": 4.428, "ewo_low": -12.383, "low_offset": 0.915, "rsi_buy": 44, } sell_params = { "base_nb_candles_sell": 72, "high_offset": 1.008, } minimal_roi = { "0": 0.219, "24": 0.087, "67": 0.024, "164": 0 } stoploss = -0.242 trailing_stop = True trailing_stop_positive = 0.103 trailing_stop_positive_offset = 0.2 trailing_only_offset_is_reached = True max_open_trades = 9 base_nb_candles_buy = IntParameter(5, 80, default=buy_params['base_nb_candles_buy'], space='buy', optimize=True) base_nb_candles_sell = IntParameter(5, 80, default=sell_params['base_nb_candles_sell'], space='sell', optimize=True) low_offset = DecimalParameter(0.9, 0.99, default=buy_params['low_offset'], space='buy', optimize=True) high_offset = DecimalParameter(0.99, 1.1, default=sell_params['high_offset'], space='sell', optimize=True) fast_ewo = 50 slow_ewo = 200 ewo_low = DecimalParameter(-20.0, -8.0, default=buy_params['ewo_low'], space='buy', optimize=True) ewo_high = DecimalParameter(2.0, 12.0, default=buy_params['ewo_high'], space='buy', optimize=True) rsi_buy = IntParameter(30, 70, default=buy_params['rsi_buy'], space='buy', optimize=True) trailing_stop = True trailing_stop_positive = 0.005 trailing_stop_positive_offset = 0.03 trailing_only_offset_is_reached = True use_exit_signal = True exit_profit_only = False exit_profit_offset = 0.01 ignore_roi_if_entry_signal = True timeframe = '5m' informative_timeframe = '1h' process_only_new_candles = True startup_candle_count = 2000 plot_config = {'main_plot': {'ma_buy': {'color': 'orange'}, 'ma_sell': {'color': 'orange'}}} use_custom_stoploss = False def informative_pairs(self): pairs = self.dp.current_whitelist() informative_pairs = [(pair, self.informative_timeframe) for pair in pairs] return informative_pairs def get_informative_indicators(self, metadata: dict): dataframe = self.dp.get_pair_dataframe(pair=metadata['pair'], timeframe=self.informative_timeframe) return dataframe def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: for val in self.base_nb_candles_buy.range: dataframe[f'ma_buy_{val}'] = ta.EMA(dataframe, timeperiod=val) for val in self.base_nb_candles_sell.range: dataframe[f'ma_sell_{val}'] = ta.EMA(dataframe, timeperiod=val) dataframe['EWO'] = EWO(dataframe, self.fast_ewo, self.slow_ewo) dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14) return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: buy_conditions = [] buy_conditions.append((dataframe['close'] < dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value) & (dataframe['EWO'] > self.ewo_high.value) & (dataframe['rsi'] < self.rsi_buy.value) & (dataframe['volume'] > 0)) buy_conditions.append((dataframe['close'] < dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value) & (dataframe['EWO'] < self.ewo_low.value) & (dataframe['volume'] > 0)) if buy_conditions: dataframe.loc[reduce(lambda x, y: x | y, buy_conditions), 'enter_long'] = 1 sell_conditions = [] sell_conditions.append((dataframe['close'] > dataframe[f'ma_sell_{self.base_nb_candles_sell.value}'] * self.high_offset.value) & (dataframe['volume'] > 0)) if sell_conditions: dataframe.loc[reduce(lambda x, y: x | y, sell_conditions), 'enter_short'] = 1 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: exit_long_conditions = [] exit_long_conditions.append((dataframe['close'] > dataframe[f'ma_sell_{self.base_nb_candles_sell.value}'] * self.high_offset.value) & (dataframe['volume'] > 0)) if exit_long_conditions: dataframe.loc[reduce(lambda x, y: x | y, exit_long_conditions), 'exit_long'] = 1 exit_short_conditions = [] exit_short_conditions.append((dataframe['close'] < dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value) & (dataframe['EWO'] > self.ewo_high.value) & (dataframe['rsi'] < self.rsi_buy.value) & (dataframe['volume'] > 0)) exit_short_conditions.append((dataframe['close'] < dataframe[f'ma_buy_{self.base_nb_candles_buy.value}'] * self.low_offset.value) & (dataframe['EWO'] < self.ewo_low.value) & (dataframe['volume'] > 0)) if exit_short_conditions: dataframe.loc[reduce(lambda x, y: x | y, exit_short_conditions), 'exit_short'] = 1 return dataframe 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 new trade. This method is only called in futures mode. :param pair: Pair that's currently analyzed :param current_time: datetime object, containing the current datetime :param current_rate: Rate, calculated based on pricing settings in exit_pricing. :param proposed_leverage: A leverage proposed by the bot. :param max_leverage: Max leverage allowed on this pair :param entry_tag: Optional entry_tag (buy_tag) if provided with the buy signal. :param side: 'long' or 'short' - indicating the direction of the proposed trade :return: A leverage amount, which is between 1.0 and max_leverage. """ return 10.0 |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 1192.2s
ℹ️ 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 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 | 4 | -2.00 | -5.01 | 0 | 4 | 0.0 | -0.08 | 2h 00m |
| Dec 2025 | bearish trending low vol | 2583 | +29.41 | 0.11 | 2106 | 477 | 81.5 | -0.72 | 1h 07m |
| Nov 2025 | bearish trending high vol | 4743 | +304.88 | 0.64 | 3801 | 942 | 80.1 | -0.75 | 0h 40m |
| Oct 2025 | bearish trending low vol | 3534 | +278.16 | 0.79 | 2834 | 700 | 80.2 | -0.72 | 0h 58m |
| Sep 2025 | bullish choppy low vol | 2103 | +20.65 | 0.10 | 1639 | 464 | 77.9 | -0.38 | 1h 22m |
| Aug 2025 | bearish choppy low vol | 3086 | +78.15 | 0.25 | 2518 | 568 | 81.6 | -1.21 | 1h 05m |
| Jul 2025 | bullish choppy low vol | 4254 | +58.33 | 0.14 | 3416 | 838 | 80.3 | -2.14 | 0h 51m |
| Jun 2025 | bearish choppy low vol | 2872 | +2.63 | 0.01 | 2330 | 542 | 81.1 | -1.72 | 1h 09m |
| May 2025 | bullish trending low vol | 3568 | +72.40 | 0.20 | 2909 | 659 | 81.5 | -2.59 | 0h 50m |
| Apr 2025 | bullish choppy low vol | 3797 | -116.66 | -0.31 | 3008 | 789 | 79.2 | -2.38 | 0h 56m |
| Mar 2025 | bearish trending high vol | 4345 | +44.93 | 0.10 | 3477 | 868 | 80.0 | -1.36 | 0h 49m |
| Feb 2025 | bearish trending low vol | 4330 | +227.36 | 0.53 | 3512 | 818 | 81.1 | -0.91 | 0h 42m |
| Jan 2025 | bearish choppy low vol | 4691 | +18.05 | 0.04 | 3738 | 953 | 79.7 | -1.6 | 0h 45m |
| Dec 2024 | bullish trending low vol | 7472 | +396.16 | 0.53 | 5921 | 1551 | 79.2 | -1.1 | 0h 28m |
| Nov 2024 | bullish trending low vol | 9800 | +533.33 | 0.55 | 7611 | 2189 | 77.7 | -2.01 | 0h 26m |
| Oct 2024 | bullish choppy low vol | 2800 | +60.72 | 0.22 | 2284 | 516 | 81.6 | -1.48 | 1h 15m |
| Sep 2024 | bearish choppy low vol | 3020 | -67.52 | -0.23 | 2422 | 598 | 80.2 | -1.32 | 1h 10m |
| Aug 2024 | bearish choppy high vol | 4095 | +64.20 | 0.16 | 3275 | 820 | 80.0 | -1.4 | 0h 50m |
| Jul 2024 | bearish trending low vol | 3191 | -93.89 | -0.30 | 2579 | 612 | 80.8 | -1.53 | 1h 11m |
| Jun 2024 | bearish choppy low vol | 2472 | +109.12 | 0.44 | 2026 | 446 | 82.0 | -0.44 | 1h 07m |
| May 2024 | bullish choppy high vol | 3307 | +94.72 | 0.29 | 2721 | 586 | 82.3 | -0.92 | 0h 57m |
| Apr 2024 | bearish choppy high vol | 4005 | +267.15 | 0.67 | 3272 | 733 | 81.7 | -0.45 | 0h 48m |
| Mar 2024 | bullish trending high vol | 7907 | +478.89 | 0.61 | 6283 | 1624 | 79.5 | -0.65 | 0h 31m |
| Feb 2024 | bullish trending low vol | 4358 | -2.81 | -0.01 | 3450 | 908 | 79.2 | -1.25 | 0h 51m |
| Jan 2024 | bearish choppy high vol | 5024 | +182.84 | 0.36 | 4007 | 1017 | 79.8 | -1.28 | 0h 43m |
| Dec 2023 | bullish trending low vol | 7555 | -98.06 | -0.13 | 5809 | 1746 | 76.9 | -1.53 | 0h 34m |
| Nov 2023 | bullish trending low vol | 5408 | +162.44 | 0.30 | 4329 | 1079 | 80.0 | -0.85 | 0h 41m |
| Oct 2023 | bullish trending low vol | 2609 | +25.28 | 0.10 | 2095 | 514 | 80.3 | -1.14 | 1h 01m |
| Sep 2023 | bearish choppy low vol | 1916 | +99.03 | 0.52 | 1563 | 353 | 81.6 | -0.37 | 1h 07m |
| Aug 2023 | bearish choppy low vol | 1908 | +67.52 | 0.35 | 1545 | 363 | 81.0 | -0.57 | 1h 04m |
| Jul 2023 | bullish trending low vol | 3801 | +142.76 | 0.38 | 3043 | 758 | 80.1 | -1.08 | 0h 44m |
| Jun 2023 | bullish trending low vol | 3334 | +46.10 | 0.14 | 2658 | 676 | 79.7 | -1.06 | 0h 51m |
| May 2023 | bearish choppy low vol | 1451 | +59.98 | 0.41 | 1186 | 265 | 81.7 | -0.69 | 1h 35m |
| Apr 2023 | bullish trending low vol | 2557 | -28.62 | -0.11 | 2040 | 517 | 79.8 | -1.0 | 1h 08m |
| Mar 2023 | bullish trending high vol | 3641 | +50.08 | 0.14 | 2899 | 742 | 79.6 | -1.55 | 0h 49m |
| Feb 2023 | bullish trending low vol | 4077 | +162.19 | 0.40 | 3260 | 817 | 80.0 | -0.94 | 0h 39m |
| Jan 2023 | bullish trending low vol | 5396 | +225.21 | 0.42 | 4218 | 1178 | 78.2 | -2.1 | 0h 40m |
| Dec 2022 | bearish trending low vol | 1742 | +134.33 | 0.77 | 1447 | 295 | 83.1 | -0.46 | 1h 16m |
| Nov 2022 | bearish trending high vol | 5636 | +485.88 | 0.86 | 4488 | 1148 | 79.6 | -0.94 | 0h 32m |
| Oct 2022 | bullish choppy low vol | 2753 | +54.73 | 0.20 | 2223 | 530 | 80.7 | -1.08 | 0h 54m |
| Sep 2022 | bearish choppy high vol | 3977 | +275.29 | 0.69 | 3277 | 700 | 82.4 | -0.82 | 0h 45m |
| Aug 2022 | bullish choppy high vol | 3954 | +354.49 | 0.90 | 3247 | 707 | 82.1 | -0.83 | 0h 43m |
| Jul 2022 | bullish trending high vol | 5893 | +65.23 | 0.11 | 4677 | 1216 | 79.4 | -2.33 | 0h 35m |
| Jun 2022 | bearish trending high vol | 7144 | +324.57 | 0.46 | 5599 | 1545 | 78.4 | -2.19 | 0h 23m |
| May 2022 | bearish trending high vol | 7367 | +679.24 | 0.93 | 5846 | 1521 | 79.4 | -2.18 | 0h 25m |
| Apr 2022 | bearish choppy high vol | 2978 | +250.00 | 0.84 | 2474 | 504 | 83.1 | -0.46 | 0h 49m |
| Mar 2022 | bullish choppy high vol | 4508 | +303.19 | 0.67 | 3666 | 842 | 81.3 | -2.72 | 0h 45m |
| Feb 2022 | bearish trending high vol | 4068 | -158.63 | -0.39 | 3217 | 851 | 79.1 | -2.6 | 0h 44m |
| Jan 2022 | bearish trending high vol | 5322 | +350.06 | 0.66 | 4322 | 1000 | 81.2 | -1.34 | 0h 37m |
| Dec 2021 | bearish trending high vol | 5648 | +270.36 | 0.48 | 4549 | 1099 | 80.5 | -1.51 | 0h 34m |
| Nov 2021 | bearish trending high vol | 4952 | +317.56 | 0.64 | 4035 | 917 | 81.5 | -0.8 | 0h 39m |
| Oct 2021 | bullish trending high vol | 5403 | +239.45 | 0.45 | 4325 | 1078 | 80.0 | -1.79 | 0h 37m |
| Sep 2021 | bearish trending high vol | 8019 | +617.89 | 0.78 | 6293 | 1726 | 78.5 | -1.1 | 0h 26m |
| Aug 2021 | bullish trending high vol | 7195 | +328.66 | 0.46 | 5669 | 1526 | 78.8 | -1.79 | 0h 30m |
| Jul 2021 | bullish trending high vol | 5293 | +170.73 | 0.32 | 4277 | 1016 | 80.8 | -3.02 | 0h 35m |
| Jun 2021 | bearish trending high vol | 7062 | +385.18 | 0.55 | 5627 | 1435 | 79.7 | -2.17 | 0h 26m |
| May 2021 | bearish trending high vol | 15493 | +1669.23 | 1.08 | 11512 | 3981 | 74.3 | -5.0 | 0h 15m |
| Apr 2021 | bearish choppy high vol | 13181 | +1155.94 | 0.88 | 10118 | 3063 | 76.8 | -2.72 | 0h 19m |
| Mar 2021 | bullish choppy high vol | 8014 | +400.49 | 0.50 | 6315 | 1699 | 78.8 | -3.61 | 0h 28m |
| Feb 2021 | bullish trending high vol | 14826 | +1192.83 | 0.81 | 11051 | 3775 | 74.5 | -6.83 | 0h 15m |
| Jan 2021 | bullish trending high vol | 16194 | +1312.96 | 0.81 | 12023 | 4171 | 74.2 | -39.64 | 0h 15m |
Yearly breakdown
| Year | Trades | Profit % | Avg % | Win | Loss | Win % | DD % | Avg dur |
|---|---|---|---|---|---|---|---|---|
| 2026 | 4 | -2.00 | -5.01 | 0 | 4 | 0.0 | -0.08 | 2h 00m |
| 2025 | 43906 | +1018.29 | 0.23 | 35288 | 8618 | 80.4 | -2.59 | 0h 54m |
| 2024 | 57451 | +2022.91 | 0.35 | 45851 | 11600 | 79.8 | -2.01 | 0h 44m |
| 2023 | 43653 | +913.91 | 0.21 | 34645 | 9008 | 79.4 | -2.1 | 0h 48m |
| 2022 | 55342 | +3118.38 | 0.57 | 44483 | 10859 | 80.4 | -2.72 | 0h 38m |
| 2021 | 111280 | +8061.28 | 0.73 | 85794 | 25486 | 77.1 | -39.64 | 0h 23m |
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 patterns · 1 thing(s) worth reviewing before trusting the numbers
| Line | Pattern | Detail | |
|---|---|---|---|
| 189 | review | unused_informative | informative_pairs() declares an extra timeframe, but nothing merges it into the dataframe (no merge_informative_pair, no @informative) -- that data is fetched and discarded, and any higher-timeframe filter you think is running isn't |
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 297.2s