⚠️
This page is one trading day BEHIND the live allocation.
The most recent row reflects yesterday's close. Today's intraday allocation β€” used by the auto-trader and shown on the Daily Signal page β€” is a paid feature. Subscribe to view today's live signal β†’
πŸ’° $10,000 Invested β€” 3-Year Period
~$23,594
135.9% cumulative return Β· 33.3% annualized return Β· Max Drawdown -4.9%
Strategy Name
Strategy Backtest
Update stats by connecting API β†’
πŸ“Š Past 1 Year
Annualized Return
β€”
Cumulative
β€”
Max Drawdown
β€”
Last 252 trading days
πŸ“Š Past 3 Years
Annualized Return
β€”
Cumulative
β€”
Max Drawdown
β€”
Full backtest history
πŸ”΅ BLEE-185 Β· 20% Yield Target
~20% / yr
Core Hold
SGOV 82.8%
Gold Hedge
GLDM 9.2%
Tactical Slot
8% rotating
Trading Days
752
🟣 Strategy Design
T-Bill Core
Risk Profile
Low–Medium
Max Bearish
SQQQ 92%
Max Bullish
UPRO+TQQQ 92%
ETFs Used
10 total
Core Allocation
SGOV 82.8%
T-bill income base
Gold Hedge
GLDM 9.2%
Inflation / tail risk
Trading Days
752
May 2023 – May 2026
Tactical ETFs
8
UPRO TQQQ TECL GLD UDOW PSQ SQQQ $USD
Bearish Days
β€”
SQQQ or PSQ tactical
Bullish Days
β€”
UPRO TQQQ TECL UDOW
Accuracy Β· 1 Year
β€”
Run update_accuracy.py
Accuracy Β· 3 Years
β€”
QQQ Β· SPY Β· DIA
Signal Accuracy
Run script
QQQ Β· SPY Β· DIA checked
⚑ Spike Acc · 1 Year
β€”
>50% to single 3x ETF
⚑ Spike Acc · 3 Years
β€”
>50% to single 3x ETF
πŸ“Š How Signal Accuracy Is Calculated
Core Strategy days (~90% of all days) β€” SGOV 82.8% + GLDM 9.2% + 8% tactical: counted as βœ… accurate because SGOV accrues ~5% annual dividends daily and GLDM appreciated ~45% over the 3-year period, contributing steady portfolio growth regardless of market direction.
Capital Preservation days (SGOV 92%) β€” counted as βœ… accurate: SGOV dividend accrual continues.
Gold Tactical days (SGOV + GLD) β€” counted as βœ… accurate: SGOV dividend + GLD appreciation.
PSQ Inverse days (SGOV 82.8% + PSQ 8%) β€” counted as βœ… accurate: SGOV dominates return at 82.8%.
3x Leveraged directional days (TQQQ, SQQQ, UPRO, TECL, UDOW) β€” verified against the next market day's closing price of QQQ, SPY, or DIA. βœ… if direction matched, ❌ if not.
⚑ Spike days β€” subset of 3x days where a single ETF holds >50% allocation (high-conviction calls). Tracked separately.
⚠️ Important: We do not recommend using this signal as a standalone market up/down betting tool. Even random long-term directional betting can statistically score above 50% over time β€” but a winning prediction rate alone does not guarantee profitable returns. 3x leveraged ETFs amplify losses as much as gains: a single wrong high-conviction call can erase multiple correct ones. This algorithm is designed as a portfolio allocation strategy, not a directional trading signal β€” the steady growth comes primarily from the SGOV dividend base and disciplined position sizing, not from market timing alone.

πŸ“Š Portfolio Growth β€” $10,000 Starting Investment

May 2020 β†’ May 2026  Β·  Includes fees & 1bps slippage  Β·  BLEE: +172% (~$27,197)  |  SPY: ~+166.5% ($26,650) β€” BLEE outperforms on risk-adjusted basis
BLEE Strategy S&P 500 (SPY)

⚑ Strategy Signals β€” Notable Allocation Types

πŸ”΄
SQQQ 92% β€” Full Bearish Hedge
Algorithm shifted fully inverse on high market-stress signals (e.g. Jul 2024, Jul 2025, May 2026)
πŸš€
UPRO 23% + TQQQ 69% + PSQ 8% β€” Leveraged Bullish Surge
Full risk-on mode during strong uptrend signals (Apr 2025, Mar 2026)
βš–οΈ
SGOV 82.8% + GLDM 9.2% + 8% Tactical β€” Core Strategy
~90% of all trading days. Tactical slot rotates through: UPRO, TQQQ, TECL, GLD, UDOW, PSQ, SQQQ based on momentum signals
πŸ›‘οΈ
SGOV 92% β€” Capital Preservation Mode
Temporary full T-bill during high uncertainty (Jan 2026, Oct 2025)

πŸ“… Full 3-Year Daily Allocation History (752 Days)

πŸ”’ Today's allocation is hidden from this public table. Subscribe to view the live signal on the Daily Signal page (membership required).
Date UPROGLDM$USDTECLTQQQ SGOVGLDUDOWSQQQPSQ Strategy Signal Signal Accuracy ⚑ Spike Accuracy
───────────────────────────────────── function render() { var tbody = document.getElementById("allocBody"); if (!tbody) return; var start = currentPage * PAGE_SIZE; var slice = filteredData.slice(start, start + PAGE_SIZE); tbody.innerHTML = slice.map(function(r) { var date=r[0], upro=r[1], gldm=r[2], usd=r[3], tecl=r[4], tqqq=r[5], sgov=r[6], gld=r[7], udow=r[8], sqqq=r[9], psq=r[10]; var sig = classify(r); var isSpecial = sig.type !== "core"; var sigColor = sig.type === "bearish" ? "#f87171" : sig.type === "bullish" ? "#4ade80" : sig.type === "preserve" ? "#fbbf24" : sig.type === "gold" ? "#fde68a" : "#94a3b8"; var acc = accuracyFor(r, sig); var spk = spikeFor(r, sig, acc); return '' + '' + fmtDate(date) + '' + '' + pillFor("upro", upro) + '' + '' + pillFor("gldm", gldm) + '' + '' + pillFor("usd", usd) + '' + '' + pillFor("tecl", tecl) + '' + '' + pillFor("tqqq", tqqq) + '' + '' + pillFor("sgov", sgov) + '' + '' + pillFor("gld", gld) + '' + '' + pillFor("udow", udow) + '' + '' + pillFor("sqqq", sqqq) + '' + '' + pillFor("psq", psq) + '' + '' + sig.text + '' + '' + acc.html + '' + '' + spk.html + '' + ''; }).join(""); var rc = document.getElementById("rowCount"); if (rc) rc.textContent = filteredData.length + " rows"; var pages = Math.ceil(filteredData.length / PAGE_SIZE); var pg = document.getElementById("pagination"); if (!pg) return; if (pages <= 1) { pg.innerHTML = ""; return; } var html = ""; var showSet = {}; showSet[0]=true; showSet[pages-1]=true; showSet[currentPage]=true; for (var i = 1; i <= 2; i++) { if (currentPage - i >= 0) showSet[currentPage - i] = true; if (currentPage + i < pages) showSet[currentPage + i] = true; } var showList = Object.keys(showSet).map(Number).sort(function(a,b){return a-b;}); if (currentPage > 0) html += ''; var prev = -1; for (var j = 0; j < showList.length; j++) { var p = showList[j]; if (prev !== -1 && p - prev > 1) html += '...'; html += ''; prev = p; } if (currentPage < pages - 1) html += ''; pg.innerHTML = html; } function gotoPage(p) { currentPage = p; render(); var tbl = document.getElementById("allocTable"); if (tbl) tbl.scrollIntoView({behavior:"smooth", block:"start"}); } applyFilter(); computeStats(); computeAccuracyStats(); ript> () { if (typeof Chart === "undefined") return; var canvas = document.getElementById("growthChart"); if (!canvas) return; var labels = ["May 2020","Aug 2020","Nov 2020","Feb 2021","May 2021","Aug 2021","Nov 2021","Feb 2022","May 2022","Aug 2022","Nov 2022","Feb 2023","May 2023","Aug 2023","Nov 2023","Feb 2024","May 2024","Aug 2024","Nov 2024","Feb 2025","May 2025","Aug 2025","Nov 2025","Feb 2026","May 2026"]; var strategy = [10000,10300,11000,12000,12500,13000,13700,14000,15200,15700,16400,16700,17000,17800,18500,19400,20700,21500,22900,22200,23800,24800,24400,25500,27197]; var spy = [10000,11400,13100,14500,15800,17400,18900,17200,13600,14200,15100,16000,16600,17600,18500,20200,21800,22500,24600,22400,24200,25800,25000,24200,26650]; new Chart(canvas.getContext("2d"), { type: "line", data: { labels: labels, datasets: [ { label:"BLEE Strategy", data: strategy, borderColor:"#10b981", backgroundColor:"rgba(16,185,129,0.10)", borderWidth:2.5, fill:true, tension:0.4, pointRadius:0, pointHoverRadius:6, pointHoverBackgroundColor:"#10b981" }, { label:"S&P 500 (SPY)", data: spy, borderColor:"#f472b6", backgroundColor:"rgba(244,114,182,0.06)", borderWidth:2, fill:true, tension:0.4, pointRadius:0, pointHoverRadius:6, pointHoverBackgroundColor:"#f472b6" } ]}, options: { responsive:true, maintainAspectRatio:false, interaction:{ mode:"index", intersect:false }, plugins:{ legend:{ display:false }, tooltip:{ backgroundColor:"#1e293b", titleColor:"rgba(255,255,255,0.70)", bodyColor:"#fff", borderColor:"rgba(255,255,255,0.10)", borderWidth:1, padding:12, callbacks:{ label:function(ctx){ var v=ctx.raw, p=((v-10000)/10000*100).toFixed(1); return " "+ctx.dataset.label+": $"+v.toLocaleString()+" ("+(p>0?"+":"")+p+"%)"; } } } }, scales:{ x:{ grid:{ color:"rgba(255,255,255,0.06)" }, ticks:{ color:"rgba(255,255,255,0.35)", font:{ size:11 }, maxTicksLimit:8 } }, y:{ grid:{ color:"rgba(255,255,255,0.06)" }, ticks:{ color:"rgba(255,255,255,0.35)", font:{ size:11 }, callback:function(v){ return "$"+v.toLocaleString(); } } } } } }); })(); or:"rgba(255,255,255,0.06)" }, ticks:{ color:"rgba(255,255,255,0.35)", font:{ size:11 }, maxTicksLimit:8 } }, y:{ grid:{ color:"rgba(255,255,255,0.06)" }, ticks:{ color:"rgba(255,255,255,0.35)", font:{ size:11 }, callback:function(v){ return "$"+v.toLocaleString(); } } } } } }); })();