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 | # Whale Strategy V1 — EMA趋势 + 成交量确认 + 严格风控 # v3.2: 层面三 — 15m时间框架替代5m,减少噪音 from functools import reduce from datetime import datetime, timedelta import numpy as np import talib.abstract as ta from pandas import DataFrame from freqtrade.strategy.interface import IStrategy from freqtrade.strategy import merge_informative_pair from freqtrade.persistence import Trade class WhaleStrategyV1(IStrategy): can_short = True timeframe = '5m' informative_timeframe = '4h' startup_candle_count = 200 process_only_new_candles = True # 风险参数 minimal_roi = {"0": 0.50} stoploss = -0.50 trailing_stop = False use_exit_signal = False exit_profit_only = False ignore_roi_if_entry_signal = False use_custom_stoploss = True # 风控参数 MAX_DAILY_DRAWDOWN = -0.25 MAX_CONSECUTIVE_LOSSES = 3 COOLING_OFF_HOURS = 2 buy_params = { "adx_threshold": 28, "rsi_floor": 25, "rsi_ceiling": 80, "atr_period": 14, "atr_sl_multiplier": 8.0, "volume_spike_factor": 2.0, "bb_period": 20, "bb_std": 2.0, "regime_adx_min": 20, # 4h ADX 最低阈值,低于此值视为震荡市不开仓 } def informative_pairs(self): pairs = self.dp.current_whitelist() return [(pair, self.informative_timeframe) for pair in pairs] def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: # 4h 趋势 + 市场状态 informative = self.dp.get_pair_dataframe( pair=metadata['pair'], timeframe=self.informative_timeframe) informative['ema50'] = ta.EMA(informative, timeperiod=50) informative['adx'] = ta.ADX(informative, timeperiod=14) dataframe = merge_informative_pair( dataframe, informative, self.timeframe, self.informative_timeframe, ffill=True) if 'ema50_4h' not in dataframe.columns: dataframe['ema50_4h'] = informative['ema50'] if 'adx_4h' not in dataframe.columns: dataframe['adx_4h'] = informative['adx'] # EMA 双线 dataframe['ema20'] = ta.EMA(dataframe, timeperiod=20) dataframe['ema50'] = ta.EMA(dataframe, timeperiod=50) # ADX / DMI dataframe['adx'] = ta.ADX(dataframe, timeperiod=14) dataframe['plus_di'] = ta.PLUS_DI(dataframe, timeperiod=14) dataframe['minus_di'] = ta.MINUS_DI(dataframe, timeperiod=14) # RSI dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14) # Bollinger Bands bb = ta.BBANDS(dataframe, timeperiod=self.buy_params['bb_period'], nbdevup=self.buy_params['bb_std'], nbdevdn=self.buy_params['bb_std']) dataframe['bb_upper'] = bb['upperband'] dataframe['bb_middle'] = bb['middleband'] dataframe['bb_lower'] = bb['lowerband'] # ATR dataframe['atr'] = ta.ATR(dataframe, timeperiod=self.buy_params['atr_period']) dataframe['atr_ratio'] = dataframe['atr'] / dataframe['close'] # 成交量 dataframe['volume_ma'] = ta.SMA(dataframe['volume'], timeperiod=20) return dataframe def _check_daily_drawdown(self) -> bool: """日亏损 >25% 熔断""" trades = Trade.get_trades_proxy() if not trades: return False today = datetime.now().date() today_trades = [t for t in trades if t.open_date_utc and t.open_date_utc.date() == today and not t.is_open] if not today_trades: return False total_profit = sum(t.close_profit_abs or 0 for t in today_trades) return total_profit < self.MAX_DAILY_DRAWDOWN * 20 def _check_consecutive_losses(self) -> bool: """连续亏损冷却""" trades = Trade.get_trades_proxy() if not trades: return False closed = sorted( [t for t in trades if not t.is_open and t.close_date_utc], key=lambda t: t.close_date_utc, reverse=True) consecutive = 0 for t in closed: if (t.close_profit_abs or 0) <= 0: consecutive += 1 else: break if consecutive >= self.MAX_CONSECUTIVE_LOSSES: last_loss = t.close_date_utc.replace(tzinfo=None) if datetime.utcnow() - last_loss < timedelta(hours=self.COOLING_OFF_HOURS): return True return False def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe['enter_long'] = 0 dataframe['enter_short'] = 0 dataframe['enter_tag'] = '' # 风控熔断 if self._check_daily_drawdown() or self._check_consecutive_losses(): return dataframe # 市场状态过滤:4h ADX < 20 = 震荡市,不交易 regime_ok = dataframe['adx_4h'] >= self.buy_params['regime_adx_min'] # 4h 大趋势 ht_bullish = dataframe['close_4h'] > dataframe['ema50_4h'] ht_bearish = dataframe['close_4h'] < dataframe['ema50_4h'] # EMA 排列 + DMI 方向 ema_aligned_long = dataframe['ema20'] > dataframe['ema50'] ema_aligned_short = dataframe['ema20'] < dataframe['ema50'] di_ok_long = dataframe['plus_di'] > dataframe['minus_di'] di_ok_short = dataframe['minus_di'] > dataframe['plus_di'] # 基础条件 adx_ok = dataframe['adx'] > self.buy_params['adx_threshold'] vol_ok = dataframe['volume'] > dataframe['volume_ma'] * self.buy_params['volume_spike_factor'] rsi_ok_long = (dataframe['rsi'] > self.buy_params['rsi_floor']) & (dataframe['rsi'] < self.buy_params['rsi_ceiling']) rsi_ok_short = (dataframe['rsi'] < (100 - self.buy_params['rsi_floor'])) & (dataframe['rsi'] > (100 - self.buy_params['rsi_ceiling'])) not_overbought = dataframe['close'] < dataframe['bb_upper'] * 0.99 not_oversold = dataframe['close'] > dataframe['bb_lower'] * 1.01 # === ENTER LONG === long_conditions = [ regime_ok, ht_bullish, ema_aligned_long, di_ok_long, adx_ok, vol_ok, rsi_ok_long, not_overbought, ] dataframe.loc[reduce(lambda x, y: x & y, long_conditions), 'enter_long'] = 1 dataframe.loc[reduce(lambda x, y: x & y, long_conditions), 'enter_tag'] = 'whale_long_v3' # === ENTER SHORT === short_conditions = [ regime_ok, ht_bearish, ema_aligned_short, di_ok_short, adx_ok, vol_ok, rsi_ok_short, not_oversold, ] dataframe.loc[reduce(lambda x, y: x & y, short_conditions), 'enter_short'] = 1 dataframe.loc[reduce(lambda x, y: x & y, short_conditions), 'enter_tag'] = 'whale_short_v3' return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: return dataframe def custom_stoploss(self, pair: str, trade: Trade, current_time: datetime, current_rate: float, current_profit: float, **kwargs) -> float: """ATR 动态止损 — 宽乘数补偿杠杆""" dataframe, _ = self.dp.get_analyzed_dataframe(pair, self.timeframe) if len(dataframe) == 0: return self.stoploss last_candle = dataframe.iloc[-1].squeeze() atr = last_candle.get('atr', 0) if atr <= 0: return self.stoploss if current_profit > 0.20: return -(atr * 0.5 / current_rate) elif current_profit > 0.10: return -(atr * 1.0 / current_rate) elif current_profit > 0.05: return -(atr * 2.0 / current_rate) else: return max(self.stoploss, -(atr * self.buy_params['atr_sl_multiplier'] / current_rate)) def leverage(self, pair: str, current_time: datetime, current_rate: float, proposed_leverage: float, max_leverage: float, entry_tag: str | None, side: str, **kwargs) -> float: """杠杆 1x-3x""" dataframe, _ = self.dp.get_analyzed_dataframe(pair, self.timeframe) if len(dataframe) == 0: return 2.0 last = dataframe.iloc[-1].squeeze() adx = last.get('adx', 20) atr_ratio = last.get('atr_ratio', 0.02) if atr_ratio > 0.05: return 1.0 if atr_ratio > 0.03: return 2.0 if adx > 40: return min(3.0, max_leverage) elif adx > 32: return min(2.0, max_leverage) return min(2.0, max_leverage) def custom_stake_amount(self, pair: str, current_time: datetime, current_rate: float, proposed_stake: float, min_stake: float, max_stake: float, entry_tag: str, **kwargs) -> float: """ATR 波动率自适应仓位 — 高波动减仓""" dataframe, _ = self.dp.get_analyzed_dataframe(pair, self.timeframe) if len(dataframe) == 0: return proposed_stake last = dataframe.iloc[-1].squeeze() atr_ratio = last.get('atr_ratio', 0.02) if atr_ratio > 0.04: return max(min_stake, proposed_stake * 0.4) elif atr_ratio > 0.025: return max(min_stake, proposed_stake * 0.7) return proposed_stake def custom_exit(self, pair: str, trade: Trade, current_time: datetime, current_rate: float, current_profit: float, **kwargs): """动态止盈 + 时间止损""" if current_profit > 0.12: return 'profit_take_12pct' elif current_profit > 0.05: return 'profit_take_5pct' # 时间止损:持仓超8小时且盈利不足3% if trade.open_date_utc: hold_hours = (current_time.replace(tzinfo=None) - trade.open_date_utc.replace(tzinfo=None)).total_seconds() / 3600 if hold_hours > 8 and current_profit < 0.03: return 'time_stop' return None |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 278.7s
ℹ️ This strategy uses custom_stoploss() — 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 →
- profit isn't statistically significant (p=1.00) — hard to tell apart from luck
- only 0% of resampled runs were profitable
- profitable in only 0% of rolling 3-month windows
- did not beat simply holding the market
- very deep drawdown (-90%)
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 |
|---|---|---|---|---|---|---|---|---|---|
| Apr 2021 | bearish choppy high vol | 84 | -10.83 | -1.54 | 35 | 49 | 41.7 | -90.44 | 1h 32m |
| Mar 2021 | bullish choppy high vol | 94 | -8.63 | -0.92 | 38 | 56 | 40.4 | -81.92 | 1h 58m |
| Feb 2021 | bullish trending high vol | 285 | -34.08 | -1.40 | 127 | 158 | 44.6 | -72.59 | 1h 16m |
| Jan 2021 | bullish trending high vol | 295 | -36.78 | -1.37 | 131 | 164 | 44.4 | -37.9 | 1h 17m |
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 · 2 thing(s) worth reviewing before trusting the numbers
| Line | Pattern | Detail | |
|---|---|---|---|
| 240 | review | dead_callback | custom_exit() is defined but use_exit_signal is False, and freqtrade only consults it inside that flag -- the method never runs |
| 164 | review | enter_tag_overwrite | enter_tag/exit_tag is written by 2 separate assignments -- they share one column and run in source order, so a row matching more than one condition keeps only the LAST tag. Per-tag statistics won't mean what they appear to |
ran by Ron · took s
Lookahead analysis
freqtrade lookahead-analysis: detects strategies peeking at future candles.