Signal Payload Format
SignalPayload = {
id?: string, // A custom name/id for the alert (optional)
key?: string, // Authorization key (required if webhook is key-protected)
symbol: string, // The trading pair (e.g., 'BTCUSDT', 'ETHUSDT')
side: OrderSide, // Either 'BUY | buy' or 'SELL | sell'
size?: number, // Trade size (open in quote, close in base currency), overrides default (optional)
dilution?: boolean, // If true, allows partial stacking of positions (optional)
flag?: FlagType | FlagType[], // Additional tags like 'TEST', 'DEBUG', 'REVERSE' (optional)
debug?: any, // Extra debugging info (optional)
}🔍 Field Descriptions
✅ Example Payloads
Last updated