<aside> đź’ˇ

Abstract: This project examines several volatility models on their effectiveness in modelling the volatility of the BTC-USDT pair; as well as a trading strategy in cryptocurrency markets that exploits price differences between spot BTC-USDT and its corresponding perpetual futures contracts. To evaluate the role of volatility, we compare several forecasting models, including a Naive benchmark, GARCH, Merton Jump Diffusion, and HAR-RV. These models are used to dynamically adjust exposure rather than generate trading signals directly. Although the strategy demonstrates consistent profitability in the testing period, the short evaluation horizon and the presence of inactive periods limit the statistical significance of performance metrics. Overall, the findings highlight the effectiveness of simple spread-based strategies in cryptocurrency markets and suggest that increased model complexity in volatility forecasting may not necessarily translate into improved trading performance.

</aside>

Introduction

Bitcoin (BTC) is the most widely traded cryptocurrency, and the BTC–USDT pair is one of the most liquid trading instruments in the crypto market. In addition to spot trading, cryptocurrency exchanges offer perpetual futures contracts, whose prices are linked to the underlying asset through a funding mechanism. This creates a natural relationship between spot and futures prices that can give rise to exploitable deviations.

In this project, we compare several volatility models that forcasts the volatility of BTC spot price, and study a spread-based trading strategy that exploits deviations between BTC spot prices and perpetual futures prices. We want to investigate whether volatility forecasting can improve the performance of such strategies through dynamic position sizing.

Dataset

To extract BTC-USDT prices that is up-to-date, we decide to choose Binance, a leading blockchain platform where large volumes of cryptocurrency is traded with an easily accessible API. Note that we accessed binance through binance.us (as opposed to binance.com) due to our IP, which complies to US laws. Since perpetual futures data is not directly available on binance.us, we retrieved the perpetual futures price and funding rates from Gate.io in the same timeframe.

We retrieved the BTC-USDT daily close price from 2/1/2021 - 3/1/2026, where the last 30 days is used for testing, and the previous data is split into training/validation according to the 80/20 rule.

image.png

Volatility Prediction

Volatility plays a central role in financial markets as a measure of uncertainty and risk. In this project, volatility forecasts are used not as a direct trading signal, but as a mechanism for adjusting position size. Intuitively, higher predicted volatility implies greater uncertainty in price movements, and therefore smaller positions should be taken to control risk.

We consider several volatility models of increasing complexity, ranging from simple benchmark models to more sophisticated approaches that capture clustering, jumps, and multi-scale behavior.

Metric

Root Mean Squared Error (RMSE) and Mean Absolute Error (MAE) between the ground truth volatility and the predicted volatility are used for performance evaluation.

Model Selection

It is important to note that these models are designed to forecast price volatility rather than the dynamics of the spot–futures spread itself. As a result, their effectiveness in improving the trading strategy may be limited if spread behavior is driven by factors not captured by price volatility alone.

Performance on testing set