There are various indicators that are utilized to spot potential manipulative activities. These indicators, often rooted in statistical and economic theories, can be used individually or in combination to detect anomalies suggestive of market manipulation. Their importance lies in providing objective and quantifiable measures to assess market activities, which, when deviating from established norms, signal the need for closer scrutiny.
Start with key metrics such as volume distribution, first-digit distribution, correlation between volume and volatility, buy-sell ratio and time-of-trade. It is crucial to observe these metrics over time.
Identify anomalies using specific criteria, such as sudden spikes or significantly unusual trading volumes. Compare current data with historical averages to determine the normal state.
Compare findings across exchanges to identify exchange specific anomalies versus broader market movements.
Validate metrics against known exchange events like technology changes, campaigns or promotions that could naturally impact behaviors.
Avoid making definitive conclusions based on metrics alone. Use metrics to guide detailed transaction-level investigations.
To enhance the analysis, here are some tips regarding simultaneous anomalous deviations of these metrics which can be indicative of market anomalies:
The API can be used to retrieve all metrics at once or just some of them (metrics
request parameter), including only OHLCV and VWAP, making it possible to use for simple market data requests or comprehensive analysis.
Example API Request:
metrics/wt/market?marketvenueid=binance&pairid=btc-usdt&start=2024-07-11T01:40:00&end=2024-07-11T01:50:00&gran=1h&sort=asc&limit=100&metrics=["vwap","ohlcv","volat"]
Metrics | Relevant Keys in API Request | Granularities | Endpoints | Description |
---|---|---|---|---|
VWAP | vwap |
1m, 1h | /market, /pair | The volume weighted average price, representing the average price of an asset as weighted by its trading volume over a specific time period. |
OHLCV | ohlcv |
1m, 1h | /market, /pair | Open, High, Low, Close, Volume data provides a comprehensive snapshot of market activity, showing price movements and trade volume within a specified interval. |
Trade Count | trades |
1m, 1h | /market, /pair | Represents the total number of trades that have occurred within a specified timeframe, indicating market activity and liquidity. |
Price Discrepancy | highdisc , lowdisc |
1m, 1h | /pair | The Price Discrepancy Metric, calculated as a percentage, analyzes volatility in cryptocurrency pairs by comparing the highest and lowest trading prices across different venues to the VWAP. |
Volatility | volat |
1m, 1h | /market | A statistical measure of the dispersion of returns for a given security or market index, often used as a measure of risk. |
Volume-volatility Correlation | vvcorrel |
1h | /market | Indicates the relationship between trade volume and price volatility, where high correlation often suggests healthy market behavior. |
Average Trade Size | avgsize |
1m, 1h | /market | Provides insight into the typical size of trades within a specified timeframe, indicating market participant behavior and potential strategy. |
Buy/Sell Ratio | buysell , buysellvol |
1m, 1h | /market | Compares the volume of buy side trades to sell side trades, providing insights into market sentiment and potential price movements. |
Time-of-trade Distribution | ttdist |
1m | /market | This indicator identifies abnormal accumulation of scheduled trades executed at the same time - minute/second. |
First Digit Distribution | fdist |
1m | /market | Measures how the first digits of trade values distribute, often used to detect anomalies or irregularities in data. |
Benfordโs Law Fitting | btest |
1m, 1h | /market | The first significant digit distribution tends to fit Benfordโs law for traditional financial markets and regulated exchanges. High deviation from this law may indicate potential anomalies, manipulation, or fraudulent activities in the market. |
Volume Distribution | vdist |
1m | /market | Analyzes the distribution of trading volumes, helping to understand market depth and liquidity patterns. |