nansen-pm-deep-dive
Prediction Market Deep Dive
Answers: "What's happening in this specific market? Who holds it, who's trading it?"
Use market_id from the screener (nansen-prediction-market skill).
MID=<market_id>
nansen research pm ohlcv --market-id $MID --sort period_start:desc --limit 50
# → period_start, open, high, low, close, volume
nansen research pm orderbook --market-id $MID
# → bids[], asks[] with price and size
nansen research pm top-holders --market-id $MID --limit 20
# → address, side, position_size, avg_entry_price, current_price, unrealized_pnl_usd
nansen research pm position-detail --market-id $MID --limit 20
# → address, side, size, avg_entry_price, current_price, pnl
nansen research pm trades-by-market --market-id $MID --limit 20
# → timestamp, buyer, seller, taker_action, side, size, price, usdc_value
nansen research pm pnl-by-market --market-id $MID --limit 20
# → address, side_held, net_buy_cost_usd, unrealized_value_usd, total_pnl_usd
Notes:
--market-idis a numeric ID from the screener, not a slug.- Works with any market ID regardless of status (active or closed/resolved).
- All addresses are Polygon (EVM).
More from askeluv/nansen-cli
nansen-cli
Nansen CLI for onchain analytics, smart money tracking, DEX trading, and perp markets.
22nansen-profiler
Wallet profiler — balance, PnL, labels, transactions, counterparties, related wallets, batch, trace, compare. Use when analysing a specific wallet address or comparing wallets.
22nansen-trade
Execute DEX swaps on Solana or Base. Use when buying or selling a token, getting a swap quote, or executing a trade.
21nansen-token
Token deep dive — info, OHLCV, holders, flows, flow intelligence, who bought/sold, DEX trades, PnL, perp trades, perp positions, perp PnL leaderboard. Use when researching a specific token in depth.
21nansen-wallet
Wallet management — create, list, show, export, send, delete. Use when creating wallets, checking balances, or sending tokens.
20nansen-search
Search for tokens or entities by name. Use when you have a token name and need the full address, or want to find an entity.
20