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 | # --- 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 # Buy hyperspace params: buy_params = {'base_nb_candles_buy': 31, 'ewo_high': 4.471, 'ewo_low': -13.043, 'low_offset': 0.978, 'rsi_buy': 63} # Sell hyperspace params: sell_params = {'base_nb_candles_sell': 99, 'high_offset': 1.054} def EWO(dataframe, ema_length=5, ema2_length=35): 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 def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: """ Adds several different TA indicators to the given DataFrame Performance Note: For the best performance be frugal on the number of indicators you are using. Let uncomment only the indicator you are using in your strategies or your hyperopt configuration, otherwise you will waste your memory and CPU usage. :param dataframe: Dataframe with data from the exchange :param metadata: Additional information, like the currently traded pair :return: a Dataframe with all mandatory indicators for the strategies """ # Momentum Indicators # ------------------------------------ # ADX dataframe['adx'] = ta.ADX(dataframe) # Plus Directional Indicator / Movement dataframe['plus_dm'] = ta.PLUS_DM(dataframe) dataframe['plus_di'] = ta.PLUS_DI(dataframe) # Minus Directional Indicator / Movement dataframe['minus_dm'] = ta.MINUS_DM(dataframe) dataframe['minus_di'] = ta.MINUS_DI(dataframe) # Aroon, Aroon Oscillator aroon = ta.AROON(dataframe) dataframe['aroonup'] = aroon['aroonup'] dataframe['aroondown'] = aroon['aroondown'] dataframe['aroonosc'] = ta.AROONOSC(dataframe) # Awesome Oscillator dataframe['ao'] = qtpylib.awesome_oscillator(dataframe) # Keltner Channel 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'] # Ultimate Oscillator dataframe['uo'] = ta.ULTOSC(dataframe) # Commodity Channel Index: values [Oversold:-100, Overbought:100] dataframe['cci'] = ta.CCI(dataframe) # RSI dataframe['rsi'] = ta.RSI(dataframe) # # Inverse Fisher transform on RSI: values [-1.0, 1.0] (https://goo.gl/2JGGoy) rsi = 0.1 * (dataframe['rsi'] - 50) dataframe['fisher_rsi'] = (np.exp(2 * rsi) - 1) / (np.exp(2 * rsi) + 1) # # Inverse Fisher transform on RSI normalized: values [0.0, 100.0] (https://goo.gl/2JGGoy) dataframe['fisher_rsi_norma'] = 50 * (dataframe['fisher_rsi'] + 1) # # Stochastic Slow stoch = ta.STOCH(dataframe) dataframe['slowd'] = stoch['slowd'] dataframe['slowk'] = stoch['slowk'] # Stochastic Fast stoch_fast = ta.STOCHF(dataframe) dataframe['fastd'] = stoch_fast['fastd'] dataframe['fastk'] = stoch_fast['fastk'] # # Stochastic RSI # Please read https://github.com/freqtrade/freqtrade/issues/2961 before using this. # STOCHRSI is NOT aligned with tradingview, which may result in non-expected results. stoch_rsi = ta.STOCHRSI(dataframe) dataframe['fastd_rsi'] = stoch_rsi['fastd'] dataframe['fastk_rsi'] = stoch_rsi['fastk'] # MACD macd = ta.MACD(dataframe) dataframe['macd'] = macd['macd'] dataframe['macdsignal'] = macd['macdsignal'] dataframe['macdhist'] = macd['macdhist'] # MFI dataframe['mfi'] = ta.MFI(dataframe) # # ROC dataframe['roc'] = ta.ROC(dataframe) # Overlap Studies # ------------------------------------ # Bollinger Bands 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'] # Bollinger Bands - Weighted (EMA based instead of SMA) # weighted_bollinger = qtpylib.weighted_bollinger_bands( # qtpylib.typical_price(dataframe), window=20, stds=2 # ) # dataframe["wbb_upperband"] = weighted_bollinger["upper"] # dataframe["wbb_lowerband"] = weighted_bollinger["lower"] # dataframe["wbb_middleband"] = weighted_bollinger["mid"] # dataframe["wbb_percent"] = ( # (dataframe["close"] - dataframe["wbb_lowerband"]) / # (dataframe["wbb_upperband"] - dataframe["wbb_lowerband"]) # ) # dataframe["wbb_width"] = ( # (dataframe["wbb_upperband"] - dataframe["wbb_lowerband"]) / # dataframe["wbb_middleband"] # ) # # EMA - Exponential Moving Average # dataframe['ema3'] = ta.EMA(dataframe, timeperiod=3) # dataframe['ema5'] = ta.EMA(dataframe, timeperiod=5) # dataframe['ema10'] = ta.EMA(dataframe, timeperiod=10) # dataframe['ema21'] = ta.EMA(dataframe, timeperiod=21) # dataframe['ema50'] = ta.EMA(dataframe, timeperiod=50) # dataframe['ema100'] = ta.EMA(dataframe, timeperiod=100) # # SMA - Simple Moving Average # dataframe['sma3'] = ta.SMA(dataframe, timeperiod=3) # dataframe['sma5'] = ta.SMA(dataframe, timeperiod=5) # dataframe['sma10'] = ta.SMA(dataframe, timeperiod=10) # dataframe['sma21'] = ta.SMA(dataframe, timeperiod=21) # dataframe['sma50'] = ta.SMA(dataframe, timeperiod=50) # dataframe['sma100'] = ta.SMA(dataframe, timeperiod=100) # Parabolic SAR dataframe['sar'] = ta.SAR(dataframe) # TEMA - Triple Exponential Moving Average dataframe['tema'] = ta.TEMA(dataframe, timeperiod=9) # Cycle Indicator # ------------------------------------ # Hilbert Transform Indicator - SineWave hilbert = ta.HT_SINE(dataframe) dataframe['htsine'] = hilbert['sine'] dataframe['htleadsine'] = hilbert['leadsine'] # Pattern Recognition - Bullish candlestick patterns # ------------------------------------ # Hammer: values [0, 100] dataframe['CDLHAMMER'] = ta.CDLHAMMER(dataframe) # Inverted Hammer: values [0, 100] dataframe['CDLINVERTEDHAMMER'] = ta.CDLINVERTEDHAMMER(dataframe) # Dragonfly Doji: values [0, 100] dataframe['CDLDRAGONFLYDOJI'] = ta.CDLDRAGONFLYDOJI(dataframe) # Piercing Line: values [0, 100] dataframe['CDLPIERCING'] = ta.CDLPIERCING(dataframe) # values [0, 100] # Morningstar: values [0, 100] dataframe['CDLMORNINGSTAR'] = ta.CDLMORNINGSTAR(dataframe) # values [0, 100] # Three White Soldiers: values [0, 100] dataframe['CDL3WHITESOLDIERS'] = ta.CDL3WHITESOLDIERS(dataframe) # values [0, 100] # Pattern Recognition - Bearish candlestick patterns # ------------------------------------ # Hanging Man: values [0, 100] dataframe['CDLHANGINGMAN'] = ta.CDLHANGINGMAN(dataframe) # Shooting Star: values [0, 100] dataframe['CDLSHOOTINGSTAR'] = ta.CDLSHOOTINGSTAR(dataframe) # Gravestone Doji: values [0, 100] dataframe['CDLGRAVESTONEDOJI'] = ta.CDLGRAVESTONEDOJI(dataframe) # Dark Cloud Cover: values [0, 100] dataframe['CDLDARKCLOUDCOVER'] = ta.CDLDARKCLOUDCOVER(dataframe) # Evening Doji Star: values [0, 100] dataframe['CDLEVENINGDOJISTAR'] = ta.CDLEVENINGDOJISTAR(dataframe) # Evening Star: values [0, 100] dataframe['CDLEVENINGSTAR'] = ta.CDLEVENINGSTAR(dataframe) # Pattern Recognition - Bullish/Bearish candlestick patterns # ------------------------------------ # Three Line Strike: values [0, -100, 100] dataframe['CDL3LINESTRIKE'] = ta.CDL3LINESTRIKE(dataframe) # Spinning Top: values [0, -100, 100] dataframe['CDLSPINNINGTOP'] = ta.CDLSPINNINGTOP(dataframe) # values [0, -100, 100] # Engulfing: values [0, -100, 100] dataframe['CDLENGULFING'] = ta.CDLENGULFING(dataframe) # values [0, -100, 100] # Harami: values [0, -100, 100] dataframe['CDLHARAMI'] = ta.CDLHARAMI(dataframe) # values [0, -100, 100] # Three Outside Up/Down: values [0, -100, 100] dataframe['CDL3OUTSIDE'] = ta.CDL3OUTSIDE(dataframe) # values [0, -100, 100] # Three Inside Up/Down: values [0, -100, 100] dataframe['CDL3INSIDE'] = ta.CDL3INSIDE(dataframe) # values [0, -100, 100] # # Chart type # # ------------------------------------ # # Heikin Ashi Strategy heikinashi = qtpylib.heikinashi(dataframe) dataframe['ha_open'] = heikinashi['open'] dataframe['ha_close'] = heikinashi['close'] dataframe['ha_high'] = heikinashi['high'] dataframe['ha_low'] = heikinashi['low'] # Retrieve best bid and best ask from the orderbook # ------------------------------------ "\n # first check if dataprovider is available\n if self.dp:\n if self.dp.runmode.value in ('live', 'dry_run'):\n ob = self.dp.orderbook(metadata['pair'], 1)\n dataframe['best_bid'] = ob['bids'][0][0]\n dataframe['best_ask'] = ob['asks'][0][0]\n " return dataframe class ElliotV2(IStrategy): INTERFACE_VERSION = 3 # ROI table: minimal_roi = {'0': 0.154, '18': 0.074, '50': 0.039, '165': 0.02} # Stoploss: stoploss = -0.179 # SMAOffset 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) # Protection 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: trailing_stop = True trailing_stop_positive = 0.01 trailing_stop_positive_offset = 0.049 trailing_only_offset_is_reached = True # Sell signal use_exit_signal = True exit_profit_only = False exit_profit_offset = 0.01 ignore_roi_if_entry_signal = True ## Optional order time in force. order_time_in_force = {'entry': 'gtc', 'exit': 'ioc'} # Optimal timeframe for the strategy timeframe = '5m' informative_timeframe = '1h' process_only_new_candles = True startup_candle_count = 139 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: # Calculate all ma_buy values for val in self.base_nb_candles_buy.range: dataframe[f'ma_buy_{val}'] = ta.EMA(dataframe, timeperiod=val) # Calculate all ma_sell values for val in self.base_nb_candles_sell.range: dataframe[f'ma_sell_{val}'] = ta.EMA(dataframe, timeperiod=val) # Elliot dataframe['EWO'] = EWO(dataframe, self.fast_ewo, self.slow_ewo) # RSI dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14) return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: conditions = [] 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)) 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 conditions: dataframe.loc[reduce(lambda x, y: x | y, conditions), 'enter_long'] = 1 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: conditions = [] conditions.append((dataframe['close'] > dataframe[f'ma_sell_{self.base_nb_candles_sell.value}'] * self.high_offset.value) & (dataframe['volume'] > 0)) if conditions: dataframe.loc[reduce(lambda x, y: x | y, conditions), 'exit_long'] = 1 return dataframe |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 281.4s
ℹ️ 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
- statistically significant edge (p=0.00)
- 100% of resampled runs stayed profitable
- profitable across 84% 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 | 1 | +0.04 | 0.39 | 1 | 0 | 100.0 | 0.0 | 151h 25m |
| Nov 2025 | bearish trending high vol | 30 | +7.97 | 2.66 | 29 | 1 | 96.7 | -0.27 | 8h 24m |
| Oct 2025 | bearish trending low vol | 128 | +21.54 | 1.68 | 113 | 15 | 88.3 | -4.57 | 0h 40m |
| Sep 2025 | bullish choppy low vol | 4 | +0.55 | 1.38 | 3 | 1 | 75.0 | -1.18 | 10h 10m |
| Aug 2025 | bullish choppy low vol | 1 | +0.08 | 0.84 | 1 | 0 | 100.0 | -1.17 | 87h 20m |
| Jul 2025 | bullish choppy low vol | 8 | +2.20 | 2.75 | 8 | 0 | 100.0 | -1.7 | 2h 41m |
| Jun 2025 | bearish choppy low vol | 2 | -1.39 | -6.96 | 1 | 1 | 50.0 | -1.81 | 19h 20m |
| May 2025 | bullish trending low vol | 2 | +0.24 | 1.19 | 1 | 1 | 50.0 | -1.42 | 31h 28m |
| Apr 2025 | bullish choppy low vol | 1 | -0.28 | -2.80 | 0 | 1 | 0.0 | -1.48 | 14h 45m |
| Mar 2025 | bearish trending high vol | 5 | -5.02 | -10.04 | 2 | 3 | 40.0 | -1.52 | 13h 53m |
| Feb 2025 | bearish trending low vol | 21 | +7.48 | 3.56 | 21 | 0 | 100.0 | -0.32 | 1h 27m |
| Jan 2025 | bearish choppy low vol | 2 | +0.59 | 2.95 | 2 | 0 | 100.0 | -0.48 | 6h 30m |
| Dec 2024 | bullish trending low vol | 34 | +4.02 | 1.18 | 30 | 4 | 88.2 | -0.88 | 8h 44m |
| Nov 2024 | bullish trending low vol | 59 | +13.90 | 2.36 | 56 | 3 | 94.9 | -1.58 | 7h 41m |
| Sep 2024 | bearish choppy low vol | 1 | +0.20 | 1.99 | 1 | 0 | 100.0 | -1.65 | 6h 35m |
| Aug 2024 | bearish choppy high vol | 3 | +0.98 | 3.27 | 3 | 0 | 100.0 | -1.88 | 2h 15m |
| Jul 2024 | bearish trending low vol | 1 | +0.20 | 1.99 | 1 | 0 | 100.0 | -2.0 | 5h 05m |
| Jun 2024 | bearish choppy low vol | 3 | +0.79 | 2.64 | 3 | 0 | 100.0 | -2.18 | 3h 58m |
| May 2024 | bullish choppy high vol | 1 | +0.20 | 2.00 | 1 | 0 | 100.0 | -2.29 | 4h 40m |
| Apr 2024 | bearish choppy high vol | 6 | -2.01 | -3.35 | 4 | 2 | 66.7 | -2.35 | 1h 54m |
| Mar 2024 | bullish trending high vol | 12 | -4.54 | -3.78 | 8 | 4 | 66.7 | -1.76 | 9h 05m |
| Feb 2024 | bullish trending low vol | 7 | +1.54 | 2.20 | 6 | 1 | 85.7 | -0.14 | 10h 37m |
| Jan 2024 | bearish choppy high vol | 11 | +0.34 | 0.31 | 10 | 1 | 90.9 | -0.54 | 25h 33m |
| Dec 2023 | bullish trending low vol | 24 | +6.07 | 2.53 | 24 | 0 | 100.0 | 0.0 | 10h 25m |
| Nov 2023 | bullish trending low vol | 12 | +2.79 | 2.32 | 12 | 0 | 100.0 | -0.07 | 20h 41m |
| Oct 2023 | bullish trending low vol | 3 | +0.60 | 2.00 | 3 | 0 | 100.0 | -0.25 | 13h 00m |
| Sep 2023 | bearish choppy low vol | 1 | +0.39 | 3.90 | 1 | 0 | 100.0 | -0.32 | 2h 00m |
| Aug 2023 | bearish choppy low vol | 11 | +2.28 | 2.07 | 10 | 1 | 90.9 | -0.56 | 1h 00m |
| Jul 2023 | bullish trending low vol | 10 | +2.41 | 2.41 | 10 | 0 | 100.0 | 0.0 | 7h 12m |
| Jun 2023 | bullish trending low vol | 17 | +3.01 | 1.77 | 15 | 2 | 88.2 | -0.61 | 9h 13m |
| Apr 2023 | bullish trending low vol | 4 | +0.78 | 1.95 | 4 | 0 | 100.0 | -0.8 | 2h 42m |
| Mar 2023 | bullish trending high vol | 7 | -0.69 | -0.99 | 6 | 1 | 85.7 | -0.91 | 8h 49m |
| Feb 2023 | bullish trending low vol | 5 | -1.20 | -2.41 | 3 | 2 | 60.0 | -0.63 | 43h 06m |
| Jan 2023 | bullish trending low vol | 26 | +7.43 | 2.86 | 26 | 0 | 100.0 | -0.69 | 4h 20m |
| Dec 2022 | bearish trending low vol | 2 | -1.60 | -7.98 | 1 | 1 | 50.0 | -0.88 | 431h 32m |
| Nov 2022 | bearish trending high vol | 25 | +3.15 | 1.26 | 23 | 2 | 92.0 | -2.08 | 5h 54m |
| Oct 2022 | bullish choppy low vol | 6 | +1.54 | 2.57 | 6 | 0 | 100.0 | -1.74 | 6h 28m |
| Sep 2022 | bearish choppy high vol | 4 | -3.56 | -8.89 | 1 | 3 | 25.0 | -1.89 | 62h 24m |
| Aug 2022 | bullish choppy high vol | 5 | -1.87 | -3.75 | 2 | 3 | 40.0 | -0.66 | 11h 46m |
| Jul 2022 | bearish trending high vol | 17 | +5.00 | 2.94 | 17 | 0 | 100.0 | 0.0 | 4h 26m |
| Jun 2022 | bearish trending high vol | 21 | +2.84 | 1.35 | 17 | 4 | 81.0 | -1.44 | 12h 49m |
| May 2022 | bearish trending high vol | 56 | +19.50 | 3.48 | 53 | 3 | 94.6 | -0.85 | 7h 28m |
| Apr 2022 | bearish choppy high vol | 6 | +1.27 | 2.12 | 6 | 0 | 100.0 | 0.0 | 8h 40m |
| Mar 2022 | bullish choppy high vol | 2 | +0.40 | 2.00 | 2 | 0 | 100.0 | -0.05 | 4h 35m |
| Feb 2022 | bearish trending high vol | 11 | +1.29 | 1.17 | 10 | 1 | 90.9 | -0.75 | 3h 33m |
| Jan 2022 | bearish trending high vol | 4 | -0.83 | -2.06 | 3 | 1 | 75.0 | -0.78 | 135h 20m |
| Dec 2021 | bearish trending high vol | 16 | +3.50 | 2.19 | 15 | 1 | 93.8 | -0.64 | 5h 58m |
| Nov 2021 | bullish trending high vol | 5 | +1.53 | 3.06 | 5 | 0 | 100.0 | -1.19 | 2h 52m |
| Oct 2021 | bullish trending high vol | 7 | -2.22 | -3.16 | 5 | 2 | 71.4 | -1.29 | 22h 56m |
| Sep 2021 | bearish trending high vol | 28 | +2.73 | 0.97 | 24 | 4 | 85.7 | -0.64 | 12h 06m |
| Aug 2021 | bullish trending high vol | 28 | +4.40 | 1.57 | 25 | 3 | 89.3 | -0.65 | 10h 19m |
| Jul 2021 | bearish trending high vol | 22 | +4.56 | 2.08 | 19 | 3 | 86.4 | -0.59 | 16h 13m |
| Jun 2021 | bearish trending high vol | 23 | +2.91 | 1.26 | 19 | 4 | 82.6 | -0.67 | 8h 35m |
| May 2021 | bearish trending high vol | 344 | +79.08 | 2.30 | 315 | 29 | 91.6 | -9.92 | 1h 52m |
| Apr 2021 | bearish choppy high vol | 95 | +15.71 | 1.65 | 86 | 9 | 90.5 | -2.45 | 5h 10m |
| Mar 2021 | bullish choppy high vol | 33 | +6.48 | 1.97 | 30 | 3 | 90.9 | -1.06 | 6h 09m |
| Feb 2021 | bullish trending high vol | 140 | +19.03 | 1.36 | 125 | 15 | 89.3 | -3.47 | 6h 25m |
| Jan 2021 | bullish trending high vol | 201 | +44.77 | 2.23 | 185 | 16 | 92.0 | -2.71 | 3h 17m |
Yearly breakdown
| Year | Trades | Profit % | Avg % | Win | Loss | Win % | DD % | Avg dur |
|---|---|---|---|---|---|---|---|---|
| 2025 | 205 | +34.00 | 1.66 | 182 | 23 | 88.8 | -4.57 | 4h 14m |
| 2024 | 138 | +15.62 | 1.13 | 123 | 15 | 89.1 | -2.35 | 9h 08m |
| 2023 | 120 | +23.87 | 1.99 | 114 | 6 | 95.0 | -0.91 | 9h 50m |
| 2022 | 159 | +27.13 | 1.71 | 141 | 18 | 88.7 | -2.08 | 17h 22m |
| 2021 | 942 | +182.48 | 1.94 | 853 | 89 | 90.6 | -9.92 | 4h 37m |
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 | |
|---|---|---|---|
| 237 | 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 lookahead-analysis: detects strategies peeking at future candles.