polaris-data example.
The full notebook sources live in the polaris-data/notebooks repository. Keep this docs page as the map, and use the repository when you want the full runnable analysis.
Start a notebook quickly
If you do not already have Jupyter running, start in a terminal:- Confirm the exact
sourceandmarketwithcatalog(...). - Fetch
ohlcv(...)ortrades(...). - Load the response into pandas.
- Plot or summarize the result.
Repository overview
The current example repo is intentionally small and curated:hyperliquid_btc_trade_analysis.ipynb: single-market walkthrough for bars, trades, and trade-flow visualization
Hyperliquid BTC trade analysis
Openhyperliquid_btc_trade_analysis.ipynb when you want the most direct end-to-end SDK example.
This notebook shows how to:
- confirm the exact market with
catalog(...) - fetch a bounded OHLCV window and the matching raw trades
- normalize both responses into pandas DataFrames
- summarize buy and sell flow
- overlay trade points on the close series and chart signed flow per minute
polaris-data workflow quickly without adding multi-market logic.
Choosing the right notebook
- Start with the Hyperliquid example if you want the fastest path to understanding
catalog(...),ohlcv(...), andtrades(...). - Stay in the docs and read Python SDK if you want method signatures and usage patterns before opening a notebook.
Next steps
- Browse the full notebook repo at
polaris-data/notebooks. - Read Python SDK for the core client methods.
- Read Catalog before hardcoding source and market IDs.
- Read OHLCV and Trades for the normalized response shapes behind the notebook examples.