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 | import json import logging import os from datetime import datetime, timedelta, timezone from typing import Optional import requests from freqtrade.strategy import IStrategy, IntParameter from pandas import DataFrame import talib.abstract as ta logger = logging.getLogger(__name__) class LLMSentimentStrategy(IStrategy): """ LLM-enhanced strategy that combines: - Technical analysis (EMA, RSI, MACD) - News sentiment via web search API - Claude/OpenAI LLM for sentiment scoring Requires env vars: - ANTHROPIC_API_KEY or OPENAI_API_KEY - TAVILY_API_KEY (for news search, free tier: 1000 req/month) Sentiment is cached per pair for 30 minutes to avoid API spam. """ INTERFACE_VERSION = 3 minimal_roi = { "0": 0.10, # 즉시: 10% 이상이면 익절 "120": 0.05, # 2시간: 5% "360": 0.025, # 6시간: 2.5% "720": 0.01 # 12시간: 1% } stoploss = -0.08 trailing_stop = True trailing_stop_positive = 0.03 # 3% 트레일링 (기존 1.5%) trailing_stop_positive_offset = 0.04 # 4% 수익 후 활성 (기존 3%) trailing_only_offset_is_reached = True timeframe = "5m" process_only_new_candles = True buy_rsi = IntParameter(30, 60, default=55, space="buy") sell_rsi = IntParameter(60, 80, default=72, space="sell") order_types = { "entry": "limit", "exit": "limit", "stoploss": "market", "stoploss_on_exchange": False } _sentiment_cache: dict = {} _sentiment_ttl = 14400 # 4 hour cache (fits Tavily free tier: ~900 calls/month) def _get_sentiment(self, pair: str) -> Optional[float]: """ Get sentiment score for a pair. Returns float between -1.0 (very bearish) and 1.0 (very bullish). Returns None if APIs unavailable. """ now = datetime.now(timezone.utc).timestamp() cached = self._sentiment_cache.get(pair) if cached and (now - cached["ts"]) < self._sentiment_ttl: return cached["score"] try: from secrets_helper import get_secret as _gs except ImportError: _gs = os.environ.get tavily_key = _gs("TAVILY_API_KEY") anthropic_key = _gs("ANTHROPIC_API_KEY") if not tavily_key or not anthropic_key: return None coin = pair.split("/")[0] coin_names = { "BTC": "Bitcoin", "ETH": "Ethereum", "XRP": "Ripple", "SOL": "Solana", "ADA": "Cardano", "DOGE": "Dogecoin", } coin_name = coin_names.get(coin, coin) try: search_resp = requests.post( "https://api.tavily.com/search", json={ "api_key": tavily_key, "query": f"{coin_name} {coin} crypto price analysis today", "max_results": 5, "search_depth": "basic", "include_answer": False, }, timeout=10, ) search_data = search_resp.json() articles = search_data.get("results", []) if not articles: return None news_text = "\n".join( f"- {a.get('title', '')}: {a.get('content', '')[:200]}" for a in articles[:5] ) llm_resp = requests.post( "https://api.anthropic.com/v1/messages", headers={ "x-api-key": anthropic_key, "anthropic-version": "2023-06-01", "content-type": "application/json", }, json={ "model": "claude-haiku-4-5-20251001", "max_tokens": 50, "messages": [ { "role": "user", "content": ( f"Analyze these news headlines about {coin_name} ({coin}) " f"and respond with ONLY a JSON object: " f'{{"score": <float between -1.0 and 1.0>, "reason": "<10 words max>"}}\n\n' f"Score guide: -1.0=very bearish, 0=neutral, 1.0=very bullish\n\n" f"Headlines:\n{news_text}" ), } ], }, timeout=15, ) llm_data = llm_resp.json() content = llm_data["content"][0]["text"].strip() if content.startswith("{"): result = json.loads(content) score = float(result["score"]) score = max(-1.0, min(1.0, score)) reason = result.get("reason", "") logger.info(f"Sentiment {pair}: {score} ({reason})") self._sentiment_cache[pair] = {"score": score, "ts": now} return score except Exception as e: logger.warning(f"Sentiment fetch failed for {pair}: {e}") return None def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: # EMAs dataframe["ema9"] = ta.EMA(dataframe, timeperiod=9) dataframe["ema21"] = ta.EMA(dataframe, timeperiod=21) dataframe["ema50"] = ta.EMA(dataframe, timeperiod=50) dataframe["sma200"] = ta.SMA(dataframe, timeperiod=200) # RSI dataframe["rsi"] = ta.RSI(dataframe, timeperiod=14) # MACD macd = ta.MACD(dataframe, fastperiod=12, slowperiod=26, signalperiod=9) dataframe["macd"] = macd["macd"] dataframe["macdsignal"] = macd["macdsignal"] dataframe["macdhist"] = macd["macdhist"] # Bollinger Bands bollinger = ta.BBANDS(dataframe, timeperiod=20, nbdevup=2.0, nbdevdn=2.0) dataframe["bb_upper"] = bollinger["upperband"] dataframe["bb_lower"] = bollinger["lowerband"] dataframe["bb_middle"] = bollinger["middleband"] # ATR dataframe["atr"] = ta.ATR(dataframe, timeperiod=14) # Volume dataframe["volume_sma20"] = dataframe["volume"].rolling(window=20).mean() dataframe["volume_ratio"] = dataframe["volume"] / dataframe["volume_sma20"] # Sentiment (fetched once per pair per 30 min) sentiment = self._get_sentiment(metadata["pair"]) dataframe["sentiment"] = sentiment if sentiment is not None else 0.0 return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: sentiment = dataframe["sentiment"].iloc[-1] if len(dataframe) > 0 else 0.0 # Sentiment-adjusted RSI threshold rsi_threshold = self.buy_rsi.value if sentiment > 0.3: rsi_threshold += 5 # more lenient when bullish elif sentiment < -0.3: rsi_threshold -= 5 # stricter when bearish dataframe.loc[ ( # EMA short-term uptrend (dataframe["ema9"] > dataframe["ema21"]) # RSI not overbought (sentiment-adjusted) & (dataframe["rsi"] < rsi_threshold) # Minimal volume filter & (dataframe["volume_ratio"] > 0.4) & (dataframe["volume"] > 0) ), "enter_long", ] = 1 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: sentiment = dataframe["sentiment"].iloc[-1] if len(dataframe) > 0 else 0.0 sell_rsi_threshold = self.sell_rsi.value if sentiment < -0.3: sell_rsi_threshold -= 5 # exit earlier when bearish dataframe.loc[ ( # RSI overbought (dataframe["rsi"] > sell_rsi_threshold) # OR strong EMA death cross with momentum confirm | ( (dataframe["ema9"] < dataframe["ema21"]) & (dataframe["macdhist"] < 0) & (dataframe["macdhist"] < dataframe["macdhist"].shift(1)) ) ) & (dataframe["volume"] > 0), "exit_long", ] = 1 return dataframe def custom_stoploss(self, pair: str, trade, current_time, current_rate, current_profit, after_fill, **kwargs) -> float: dataframe, _ = self.dp.get_analyzed_dataframe(pair, self.timeframe) if len(dataframe) < 1: return self.stoploss last_candle = dataframe.iloc[-1] atr = last_candle["atr"] sentiment = last_candle.get("sentiment", 0.0) if atr > 0 and current_rate > 0: multiplier = 2.5 if sentiment > 0.3 else 2.0 if sentiment > -0.3 else 1.5 atr_stoploss = -(atr * multiplier) / current_rate return max(atr_stoploss, -0.10) return self.stoploss use_custom_stoploss = True |
Strategy League — fixed backtest that feeds the ranking
Export report Freqtrade logsRun finished · took 462.3s
ℹ️ This strategy uses a trailing stop / 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
- 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 |
|---|---|---|---|---|---|---|---|---|---|
| Jan 2021 | bullish trending high vol | 2214 | -89.98 | -0.41 | 528 | 1686 | 23.8 | -90.01 | 0h 28m |
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
2 potential lookahead pattern(s) found · 1 to review
| Line | Pattern | Detail | |
|---|---|---|---|
| 191 | leak | iloc_last | iloc[-1] in populate_* applies the newest candle to all rows |
| 216 | |||
| 15 | review | missing_startup_candles | uses recursive indicators (ATR, EMA, MACD, RSI) but startup_candle_count is not set (default 0). Their value at a bar depends on all bars before it, so freqtrade trims no warmup and the backtest opens with unwarmed values that can't occur live. The longest lookback visible here is SMA(timeperiod=200), so it needs at least that many. Set it to a few times the longest period and confirm with `freqtrade recursive-analysis` |
ran by Ron · took s
Lookahead analysis
freqtrade lookahead-analysis: detects strategies peeking at future candles.