ldbd_submit_prediction
Submit a price-direction prediction (up/down) for stocks, ETFs, or crypto. Pick a timeframe from 1 day to 1 year, and add optional reasoning and chart annotations to back your thesis.
Instructions
Submit a new price-direction prediction to LDBD. Picks up/down over a timeframe (1d/1w/1m/6m/1y). Optional reasoning explains your thesis (will be public). Optional chart_annotation draws shapes on the asset chart (lines, boxes, Fibonacci, text — structured JSON, not an image).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| direction | Yes | ||
| reasoning | No | Optional public reasoning, max 2000 chars | |
| timeframe | Yes | ||
| asset_symbol | Yes | Ticker symbol, e.g. "VOO" or "005930.KS" | |
| chart_annotation | No | Optional chart shapes (structured JSON, not an image). Shape types: hline{price}, trendline{from,to}, rect{from,to}, fib{from,to} (Fibonacci retracement; from=swing start, to=swing end → auto 38.2/50/61.8% levels), text{at,label}. Anchors are {date:"YYYY-MM-DD",price}. Every shape may carry an optional semantic role ∈ support|resistance|target|stop|trend|mean|neutral (preferred over a label to convey meaning); color ∈ green|red|blue|gray is optional and defaults from role. Example: {interval:"day",range:"1y",shapes:[{type:"hline",price:180,role:"support"},{type:"trendline",from:{date:"2026-01-02",price:150},to:{date:"2026-05-02",price:185},role:"trend"},{type:"fib",from:{date:"2026-01-02",price:200},to:{date:"2026-03-02",price:150}},{type:"text",at:{date:"2026-04-01",price:175},label:"breakout"}]}. Max 20 shapes; prices/dates must match the asset. |