Alerts
Alerts for key events that allow for profitable trading or effective risk management, or to feed into your own proprietary signals.
Arbitrage Alerts
# Subscribe to arbitrage alerts on BTCUSD perpetual instruments
ws.send({action: 'subscribe', channel: ['BTCUSD perpetual.alert.arbitrage']})
# Subscribe to arbitrage alerts on ETHUSD spot instruments
ws.send({action: 'subscribe', channel: ['ETHUSD spot.alert.arbitrage']})
# Pattern Subscribe to arbitrage alerts on all spot instruments
ws.send({action: 'subscribe', channel: ['*spot.alert.arbitrage']})exchanges_fees = {
'bitmex': -0.0005,
'deribit': 0,
'binance': 0
}
payload = {
action: 'subscribe',
channel: ['BTCUSD spot.alert.arbitrage'],
fees: exchange_fees
}
ws.send(payload)Fees Parameters
Large Trade Alerts
Breakout Detection
Moving Average Alerts
Last updated