Streaming Statistics
Robust, fast statistics describing activity across all exchanges and assets to feed into stat arb strategies or inform predictions of orderbook resilience and price level changes.
Quantiles
{
action: 'subscribe',
channel: [exchange.symbol.quantile.level.price/amount]
}# Subscribe to deribit's BTC-PERPETUAL trade amounts 0.99 quantile
channel = ['deribit.BTC-PERPETUAL.quantile.0.99.amount']
# Subscribe to bitmex's XBTUSD trade prices 0.50 quantile
channel = ['bitmex.XBTUSD.quantile.0.50.price']
# Use a pattern subscription to subscribe to all Bitmex instruments
# at a 0.75 quantile for both prices and amounts
channel = ['bitmex.*.quantile.0.50.*']
# Price 0.1 Quantile
{
"type":"delta.BTCUSDT.quantile.0.1.price",
"exchange":"delta",
"symbol":"BTCUSDT",
"value":-1.2000000000000004,
"sample_size":100,
"quantile":0.1
}
# Price 0.25 Quantile
{
"type":"delta.BTCUSDT.quantile.0.25.price",
"exchange":"delta",
"symbol":"BTCUSDT",
"value":-1.2000000000000004,
"sample_size":100,
"quantile":0.25
}
# Price 0.50 Quantile
{
"type":"delta.BTCUSDT.quantile.0.5.price",
"exchange":"delta",
"symbol":"BTCUSDT",
"value":-1.2000000000000004,
"sample_size":100,
"quantile":0.5
}
# Price 0.75 Quantile
{
"type":"delta.BTCUSDT.quantile.0.75.price",
"exchange":"delta",
"symbol":"BTCUSDT",
"value":-1.2000000000000004,
"sample_size":100,
"quantile":0.75
}
# Price 0.90 Quantile
{
"type":"delta.BTCUSDT.quantile.0.9.price",
"exchange":"delta",
"symbol":"BTCUSDT",
"value":-1.2000000000000004,
"sample_size":100,
"quantile":0.9
}
# Price 0.99 Quantile
{
"type":"delta.BTCUSDT.quantile.0.99.price",
"exchange":"delta",
"symbol":"BTCUSDT",
"value":-1.2000000000000004,
"sample_size":100,
"quantile":0.99
}
Skew
Kurtosis
Averages
k-Means Clustering
Sample Variance
Sample Standard Deviation
Unadjusted Standard Deviation / Volatility
Median Absolute Deviation
Interquartile Range
Correlation / Covariance
Beta
Last updated