Price Alerts
Get notified when markets hit your target prices.
How to set an alert:
Click the bell icon on any market
Set your target price (1-99 cents)
Choose direction (above or below)
Receive browser notification when triggered
Alert behavior:
Polls prices every 15 seconds
Triggers once per alert (auto-removes after trigger)
Works across browser tabs
Persists through page refreshes
// Alert data structure
type PriceAlert = {
id: string;
marketId: string;
marketName: string;
targetPrice: number;
direction: 'above' | 'below';
createdAt: Date;
};Last updated
