| |
| title: "Premium Backtesting" |
| description: "Historical return and percent-change visualisation for the technical stock signal model." |
| |
|
|
| The **Premium Backtesting** panel (internal id `stock-backtest`) renders a compact list of technical-signal backtests β one row per ticker. Point-in-time fundamentals are not available in the historical Yahoo bars, so this panel does not replay the fundamentals-blended rating shown by [Premium Stock Analysis](/panels/stock-analysis). |
|
|
| |
|
|
| A list of `StockBacktestResult[]` rows β one per symbol. Each row shows the ticker and percent-change / return figures formatted via `fmtPct()`, with positive values rendered in a bullish tint (` |
|
|
| Source state is tracked β `'live' | 'cached'` β so the panel's data badge shows whether the render came from a fresh fetch or a cached snapshot. Empty result sets render a "No stock backtests available yet." retry state via `showRetrying()`. |
|
|
| Panel id is `stock-backtest`; canonical component is `src/components/StockBacktestPanel.ts`. Title "Premium Backtesting" per the panel's `super({...})` call. |
|
|
| |
|
|
| - **Cmd+K**: type *backtest* or *backtesting*. |
| - **Availability by variant**: registered and enabled by default in the **full/geopolitical** and **finance** variants β locked in both. Not present in the tech, commodity, or happy variants. Source: `'stock-backtest'` entries in `FULL_PANELS` (`:50`) and `FINANCE_PANELS`. |
|
|
| |
|
|
| Backtests are produced by a Railway cron that reconstructs technical-only signals from historical price series and evaluates them against later bars. Responses declare `ratingBasis: "technical_only"` and use a distinct engine version. Results are stored in the premium-stock store and fetched via `@/services/stock-backtest`; stale or missing stored rows can be recomputed on demand. |
|
|
| | Method + route | Feeds | |
| | |
| | `GET /api/market/v1/list-stored-stock-backtests` | Stored premium backtest snapshots rendered first when fresh. | |
| | `GET /api/market/v1/backtest-stock` | On-demand per-symbol backtest recomputation for missing or stale rows. | |
|
|
| |
|
|
| Backtest results update with the premium-stock cron. Freshness is signalled by the data badge (`live` vs `cached`). |
|
|
| |
|
|
| **PRO (hard-locked).** `premium: 'locked'` in the panel's constructor and in variant registrations. `isPanelEntitled` unlocks it when **either** a valid `WORLDMONITOR_API_KEY` is present **or** `isPro` is true (`stock-backtest` is in the `apiKeyPanels` allowlist at `src/config/panels.ts:973`). |
|
|
| |
|
|
| - [Markets service](/api/MarketService.openapi.yaml) β schemas and parameters for `list-stored-stock-backtests` and `backtest-stock`. |
| - Related: [Premium Stock Analysis](/panels/stock-analysis) β per-ticker deep dive that seeds the backtest input. |
|
|