How many past Bid and Ask Volume can be read?

 

With the function MarketBookGet() you get a array back with market book infos.

i did see that the size of this array is usual just 15, i think this would mean the last 15 ticks or?

Is it anyway possible to get the bid and ask volume for more then 15 ticks, for example for last minute, for last 5 minutes or lets say for every candelstick timeframe?

 
CryptoIngeneur:

With the function MarketBookGet() you get a array back with market book infos.

i did see that the size of this array is usual just 15, i think this would mean the last 15 ticks or?

Is it anyway possible to get the bid and ask volume for more then 15 ticks, for example for last minute, for last 5 minutes or lets say for every candelstick timeframe?

MarketBookGet() is not related to ticks. It provides you the Depth of Market, otherwise said the order book.

To work with ticks use CopyTicks().

Reason: