Skip to content

kite alerts

Manage Kite price / action alerts. Live action on create/modify/delete.

Command Purpose
kite alerts list Show all alerts.
kite alerts get <uuid> Show one alert.
kite alerts history <uuid> Show one alert’s trigger history.
kite alerts create --file <json> Live action Create an alert from JSON.
kite alerts modify <uuid> --file <json> Live action Modify an alert.
kite alerts delete <uuid> [uuid...] Live action Delete one or more alerts (a single DELETE carries repeated uuid query params).
{
"name": "INFY price alert",
"lhs_exchange": "NSE",
"lhs_tradingsymbol": "INFY",
"lhs_attribute": "LastTradedPrice",
"operator": ">=",
"rhs_type": "constant",
"rhs_constant": 1500
}
Terminal window
kite alerts list --json --no-color
kite alerts get <uuid> --json --no-color
kite alerts history <uuid> --json --no-color
kite alerts create --file ./alert.json --json --no-color
kite alerts modify <uuid> --file ./alert.json --json --no-color
kite alerts delete <uuid-1> <uuid-2> --json --no-color