Watchlist

How do we use it?

Save your favorite markets for quick access across the entire platform.

How to use:

  1. Click the star icon on any market in the trading terminal

  2. Market appears in the watchlist bar below the header

  3. Click any market in watchlist to navigate directly to it

Watchlist displays:

  • Market name and thumbnail

  • Current YES price with trend indicator

  • 24h volume (highlighted in orange if >$100K)

// Watchlist data structure
type FavoriteMarket = {
  id: string;
  name: string;
  slug?: string;
  image?: string;
  yesPrice: number;
  noPrice: number;
  volume24h: string;
  addedAt: Date;
};

Limits: Maximum 10 markets in watchlist Persistence: Saved locally in browser storage

Last updated