← Trading Hub

Keyboard shortcuts

Full keyboard reference. Conflict-free per Execution Bible §15.146. Power users navigate 3-5× faster than mousing.

Tip: Press ? on any page to open the same shortcuts overlay inline. Press ⌘ K (Mac) or Ctrl K (Win/Linux) to open the command palette with fuzzy search.

System shortcuts Reserved

KeysAction
⌘ K / Ctrl KOpen command palette (49 commands · fuzzy search)
?Open keyboard-shortcuts overlay
escClose any overlay / dismiss palette
/Focus ticker search (on home + cockpit pages)
Navigate palette items
Run highlighted command / submit search
TabCycle focus through interactive elements
⇧ TabCycle focus backward

Navigation (g X) Project

KeysAction
g hGo home / cockpit
g nGo to /now (current scores)
g fGo to /forecast (cones)
g sGo to /signals (alerts)
g wGo to /wealth (30y trajectory)
g rGo to /research
g dGo to /daily-edge
g tGo to /trust (calibration scoreboard)
g xGo to /strategies

Command palette syntax

InputBehavior
$AAPLTicker mode — opens /security?ticker=AAPL on enter
#NVDASame as $ — alternate prefix
forecastFuzzy-match against command labels
trustSurfaces /trust + trust-related commands
themeToggle theme (dark/light/system)
clearSurface "Clear all caches + reload"
exportSurface "Export local data (CSV)"

Standalone pages (palette → "Pages" group)

PathDescription
/auditCalibration + attestations
/audit-quarterlyGIPS-style performance presentation (draft)
/audit-form-advForm ADV preview (RIA-tier draft)
/daily-edgeSingle-day cockpit
/missionTrack A/X/B/C primer
/pairsCointegration + spread
/researchQuant lab
/security?ticker=XPer-ticker analysis
/strategiesComposite strategy lab
/wealth30-year wealth trajectory
/statusLive system health
/trustPublic calibration scoreboard
/changelogWhat shipped, by category
/about/aiAI model cards hub
/helpKnowledge base
/termsTerms of service
/privacyPrivacy policy

Tools (palette → "Tools" group)

ToolDescription
Toggle themeCycles dark → light → system → dark…
Clear all caches + reloadWipes IndexedDB + localStorage + service-worker cache (confirm-gated)
Export local data (CSV)JSON dump of watchlist + journal + settings
Search ticker (prompt)Old-school prompt()-based ticker lookup

Conflict-free design

Per Bible §15.146:

Adding a shortcut (developer)

Register via the palette API:

window.THV2CommandPalette.register({
  id:    'my-custom-cmd',
  group: 'Tools',
  label: 'My custom action',
  hint:  'Optional one-line hint',
  kbd:   'g m',                     // optional keyboard hint
  run:   function(){ /* action */ }
});

Source: ui/command-palette.js · Bible §15.105 + §15.146 · Last reviewed 2026-04-26