Comparison Operations
Greater Than (gt)
Syntax
field__gt=valueExamples
# Accounts with balance greater than 1000
GET /api/v0/accounts?balance__gt=1000
# Positions opened after a specific time
GET /api/v0/trade/positions?openTime__gt=2024-01-01
# Groups with more than 5 accounts
GET /api/v0/groups?accountsCount__gt=5