Property containing a list of 9 price aggregation intervals. These intervals are calculated by applying a geometric multiplier sequence to the current tickSize.
The options are generated using a fixed multiplier set: [1, 2, 5, 10, 20, 50, 100, 200, 500]. This ensures that regardless of whether an asset is worth \0.001or$100,000$, the user always has logical, human-readable grouping steps.
Copy
// groupingOptions will be: [0.5, 1, 2.5, 5, 10, 25, 50, 100, 250]const options = orderbook.groupingOptions// Use these options to populate a UI dropdownoptions.forEach(val => console.log(`Group by: ${val}`))