Hosted Playground
Use the hosted playground to change a real mounted chart before wiring your own application.
Open the TradeScript Chart SDK Playground →
What you can change
- Crypto spot symbols, through the chart toolbar's symbol search.
- Intervals and chart types, through the chart toolbar.
- Indicators and drawings, on the full widget chrome.
- Dark and light chart themes.
- The
sdk.chart.mount(...)integration snippet, copyable from the code panel.
The playground streams live Binance spot data through the SDK's typed MarketDataFeed boundary. It proves chart integration and interaction without any account or key setup. Edits do not persist: reloading the page resets symbols, indicators, and drawings.
What the playground does not prove
- Your market-data authentication, symbol mapping, or rate limits.
- Production authorization and deployment-lease handling.
- Broker, account, or order behavior.
- Backend storage, tenant isolation, or conflict handling.
- Your application’s responsive layout and cleanup.
Move the example into your application
- Copy the generated construction snippet.
- Complete Installation.
- Replace the playground's Binance feed with your own
MarketDataFeed. - Verify the same symbol and interval through Quickstart.
- Add production capabilities one at a time through the Production Guides.
Reload the page when you want to return to the known default state. Playground changes are experimental and are not a persistence contract.
Next steps
- Installation — install the SDK and styles in your own application.
- Quickstart — the same chart, mounted from your own code against your own bars endpoint.
- Framework and Widget Starters — the mount and teardown hooks for your framework.