The Scenario
Every trading interface makes layout decisions for you. Some of them are wrong for how you trade, and the fix is usually a settings page with three preset options, none of which is what you wanted. Your bot builds the panel instead. You describe the layout and what goes in it; the agent works out the spec, binds the data sources, and renders it into your Dashboard. It isn’t picking from a template library — the panel is generated for the sentence you wrote.Try It
- Turn my positions into a heatmap shaded by PnL, split by Wallet / DeFi / HL / Polymarket
- Build a live monitor panel: BTC/ETH/SOL prices up top, my positions bottom-left, funding rates bottom-right
What You Get Back
A heatmap of your book
You: Turn my current positions into a heatmap, shade by P&L ratio — bigger gains greener, bigger losses redder — and split Wallet / DeFi / HL / Polymarket.
Bot: Generating position heatmap…The bot echoes back how it parsed your sentence before it builds. If it read “shade by PnL%” as something else, you’ll see that in the parse line rather than in the finished panel.
🛠️ Parsed: heatmap / colored by PnL% / categories: Wallet Spot, DeFi, HL Perps, Polymarket
📊 Data: 12 active positions → live PnL fetch
✨ Render complete
[Open heatmap] — generated in your Dashboard, savable and shareable. Losing positions shaded red, winners green. Each tile is clickable to drill down into the full decision chain.
A monitor panel with a layout you specified
You: Build me a live monitor panel: top row shows BTC/ETH/SOL live price and 24h change, two columns below — left my positions, right funding rates. Put it on my Dashboard when done.
Bot: Building custom monitor panel…Panels persist. Once it’s in My Panels, it keeps refreshing on its own — you don’t rebuild it tomorrow.
🛠️ Layout: top (ticker bar) / bottom-left (positions) / bottom-right (funding)
📊 Data bindings:✨ Panel generated → Dashboard “My Panels” tab. Auto-refreshes every 30s, panel persisted.
- Prices: multi-exchange live (Binance/Bybit/OKX)
- Positions: your cross-chain portfolio
- Funding: HL + Binance perp funding rates
When to Use
- A view no product ships. Cross-venue positions in one grid, funding next to your own exposure, whatever your setup actually needs.
- During a volatile session. Build a focused panel for the thing you’re watching today, drop it after.
- Reviewing allocation. A heatmap makes concentration obvious in a way a position list doesn’t.
- Sharing a setup. Panels are shareable — useful for showing someone your read rather than describing it.
Tips
- Describe layout in spatial terms. “Top row”, “bottom-left”, “two columns” parse cleanly. “Nicely arranged” doesn’t.
- Name the data, not just the widget. “Funding rates for HL and Binance” beats “funding” if you care which venues.
- Iterate in place. Follow up with
"add 24h volume to the ticker row"instead of describing the whole panel again. - Check the parse line. It’s the cheapest place to catch a misread.
- Drill into tiles. In a heatmap, each tile opens the decision chain behind that position — how it was opened and why.
Related
- Custom Dashboards — what the panel builder supports
- Dashboard — where panels live
- Portfolio Tracking — the position data panels bind to
- Portfolio Monitor — the same information as a conversation instead of a panel
