count
Returns the number of list elements
count([orderbook().ask]) → 50
count([orderbook().ask])
50
count([ask.price for ask in orderbook().ask if ask.price < 1200]) → 23
count([ask.price for ask in orderbook().ask if ask.price < 1200])
→
23
Last updated 28 days ago