docs: Update HA Infrastructure section - decommissioned Jan 6, 2026

- Status changed from PRODUCTION READY to DECOMMISSIONED
- Cost savings: ~$20-30/month (overkill for current $540 capital)
- Backup archived at /home/icke/backups/hostinger-ha/
- Contains: DB dump, n8n data, env, DNS scripts, docker-compose, nginx configs
- Restoration instructions added for when capital grows
- Historical reference preserved for future re-implementation
This commit is contained in:
mindesbunister
2026-01-06 14:16:21 +01:00
parent e1088b1218
commit e2763d21f2
2 changed files with 63 additions and 111 deletions

View File

@@ -242,7 +242,11 @@ plotshape(finalShortSignal, title="Sell", location=location.abovebar, color=colo
// DEBUG TABLE
// =============================================================================
var table dbg = table.new(position.top_right, 2, 9, bgcolor=color.new(color.black, 80))
// Regime detection based on MA Gap
regimeText = maGap > 0.5 ? "BULL 🐂" : maGap < -0.5 ? "BEAR 🐻" : "NEUTRAL"
regimeColor = maGap > 0.5 ? color.lime : maGap < -0.5 ? color.red : color.yellow
var table dbg = table.new(position.top_right, 2, 10, bgcolor=color.new(color.black, 80))
if barstate.islast
table.cell(dbg, 0, 0, "Trend", text_color=color.white)
table.cell(dbg, 1, 0, trend == 1 ? "LONG ✓" : "SHORT ✓", text_color=trend == 1 ? color.lime : color.red)
@@ -260,5 +264,7 @@ if barstate.islast
table.cell(dbg, 1, 6, directionMode, text_color=directionMode == "Long Only" ? color.lime : directionMode == "Short Only" ? color.red : color.yellow)
table.cell(dbg, 0, 7, "Signal", text_color=color.white)
table.cell(dbg, 1, 7, finalLongSignal ? "BUY!" : finalShortSignal ? "SELL!" : "—", text_color=finalLongSignal ? color.lime : finalShortSignal ? color.red : color.gray)
table.cell(dbg, 0, 8, "Version", text_color=color.white)
table.cell(dbg, 1, 8, indicatorVersion, text_color=color.yellow)
table.cell(dbg, 0, 8, "MA Gap", text_color=color.white)
table.cell(dbg, 1, 8, str.tostring(maGap, "#.##") + "% " + regimeText, text_color=regimeColor)
table.cell(dbg, 0, 9, "Version", text_color=color.white)
table.cell(dbg, 1, 9, indicatorVersion, text_color=color.yellow)