Quantitative Trading

Performance metrics

The correct metric to evaluate the performance of a portfolio while accounting for capital exposure is typically the risk-adjusted return. Commonly used metrics in this context include:


1. Sharpe Ratio


2. Sortino Ratio


3. Treynor Ratio


4. Information Ratio


5. Capital Exposure Metrics

If explicitly considering capital exposure:


Choosing the Metric

Each metric provides unique insights into performance and risk relative to capital exposure, so the best choice depends on the portfolio’s strategy and investor objectives.

Quantitative Methods

Linear regression (1 independent Variable)

Multiple regression (2 or more independent variables)

\(\text{Confidence interval} = \hat{\beta}_j \pm t_{\alpha/2} \times SE(\hat{\beta}_j)\) where $t_{\alpha/2}$ is the critical value of the t-distribution with $n-(k+1)$ degrees of freedom at the $\alpha/2$ level of significance, and $SE(\hat{\beta}_j)$ is the standard error of the estimate of the coefficient $\hat{\beta}_j$.

\[t_{stat} = \frac{\hat{\beta}_j - \beta_{j,0}}{SE(\hat{\beta}_j)}\]
Source of variationDegrees of freedomSum of squaresMean Sum of SquaresF-statisticSignificance
Regression$k$$SSR$$MSR = SSR/k$$F_{statistic} = MSR/MSE$$p < \alpha$
Residual$n-(k+1)$$SSE$$MSE = SSE/(n-k-1)$  
Total$n-1$$SST$   
\[F_{stat} = \frac{MSR}{MSE} = \frac{SSR/k}{SSE/(n-(k+1))}\]

Violations of the assumptions of the linear regression model

  1. Linearity: The relationship between the independent and dependent variables is linear.
  2. Independence: The residuals are independent of each other.
  3. Homoscedasticity: The residuals have constant variance.
    • Unconditional heteroscedasticity: the variance of the residuals is not constant.
    • Conditional heteroscedasticity: the variance of the residuals is not constant after conditioning on the independent variables.
  4. Normality: The residuals are normally distributed.
  5. No multicollinearity: The independent variables are not highly correlated with each other.
  6. No autocorrelation: The residuals are not correlated with each other.
  7. Model specification: The model is correctly specified.
    • Misspecified functional form: the relationship between the independent and dependent variables is not correctly specified.
      • Omitted variables: important independent variables are not included in the model.
        • Time-series misspecification:
    • Including lagged dependent variables or autocorrelation terms can help address this issue.
    • Including an independent variable that is a function of the dependent variable
    • Measuring independent variables with error
    • Nonstationarity: the mean, variance, or autocorrelation of the residuals changes over time.

    • The Durbin-Watson statistic tests for autocorrelation in the residuals.
    • The Breusch-Godfrey test is used to test for autocorrelation in the residuals in a multiple regression model.
    • The ARCH test is used to test for conditional heteroscedasticity in the residuals.
    • The Jarque-Bera test is used to test for normality in the residuals.
    • The Ramsey RESET test is used to test for misspecified functional form in the model.

Time series analysis

Machine Learning

References

Quantitative Trading Summary Point72