Price Alerts
Get notified when markets hit your target prices.
// Alert data structure
type PriceAlert = {
id: string;
marketId: string;
marketName: string;
targetPrice: number;
direction: 'above' | 'below';
createdAt: Date;
};Last updated

