Monday 9 July 2018

Vol Targeting and Trend Following


  • We are long.
  • The price jumps up. Good.
  • But this means the risk goes up
  • So cut our position, just as we're finally making serious money. 


How can this make sense?

This is a post about volatility targeting - dynamically adjusting your positions according to your estimate of market volatility - in the context of trend following systems. I blindly do this when building all my trading strategies without thinking about it - but is this a good thing to do?

It's also a post about how you generally have to balance different criteria when judging backtests - there are no free lunches in finance.


What do we mean by volatility targeting?


It's not obvious whether "Volatility Targeting" is referring to the practice of scaling positions by volatility for a given level of conviction or targeting a constant portfolio or position level volatility regardless of conviction. 

To be clear for the unfamiliar the way I run a CTA style strategy is:

1- Decide on a level of conviction
2- From that infer the volatility target for a given position
3- Scale the position to a given volatility target

There is then another stage that some people do which I don't agree with:

4-  Rescale the leverage in the entire portfolio to some fixed target.

Essentially doing the last thing will throw away the absolute average level of conviction that you have across your system. I don't think you should do this, although it's very popular in eg equity neutral portfolios (mainly for historical reasons, take a bow Fama and French). To make things confusing this is sometimes called "Vol targeting". But it's not what I'm discussing in this post (maybe another one).

POSTSCRIPT: I discuss it in this post. TLDR: it doesn't work.

Another thing some people do is run a binary system, in which the level of conviction is essentially fixed. Doing this will throw away all the information you have about conviction, both absolute and relative. Again I think this is sub optimal.

To be clear then what I am defending here is stage 2: the scaling of positions to a given volatility target, irrespective of whether conviction was involved. It's implicit here that the volatility target is dynamic, otherwise what you're doing is just some kind of long run risk budgeting exercise.


Why do people like trend following


Trend following is considered a nice thing, because it's return profile is:


  • a majority of time periods when we have small lossess
  • a minority of time periods when we have big gains. Generally these come when other asset classes are suffering


This sort of return distribution will contain both positive skew (at least when measured at an appropriate time interval - at least monthly if not annually) and high kurtosis. Skew is an asymmetric measure of return 'non-Gausianness' (if that's a word), whereas kurtosis is a symmetric measure - it just means we have 'fat tails', without specifying which tail we're talking about.

Positive skew is generally agreed to be a good thing (to own a negatively skewed asset I'd want paying, in the form of higher expected Sharpe Ratio), but high kurtosis is generally agreed to be a bad thing, because it means we're going to get surprisingly large returns on both the up and down side. It makes no sense to talk about kurtosis that only existed on the right hand side of the distribution.

But a combination of positive skew and more kurtosis will give you more mass on the right hand side.


A possible case for not vol targeting


Some people don't like vol targeting because they think it degrades the nice property of trend following: that extra mass on the right hand tail.

Essentially not vol targeting will make sense if there is an asymmetric effect in the markets: where we tend to cut our positions on vol spikes in winning positions more than we do on losing positions. This indeed would lower your skew, and this would indeed be a bad thing. It would be better to stop vol targeting, and be rewarded with higher returns on winning positions, even after taking into account the higher losses on losers.

To be clear if you could get higher positive skew for free this would be a good thing. However if you have to pay for your higher positive skew with higher kurtosis then that wouldn't be so good. But intuitively removing vol targeting will mean worse kurtosis - vol targeting will tend to trim the tails of both sides of the distribution. This also ignores the first two moments of the distribution: if higher positive skew means a worse Sharpe Ratio would I be happy?

In general terms then it's unlikely that you can get positive skew for free without giving up something else: kurtosis or Sharpe Ratio. There are plenty of situations when this sort of trade off is present - for example you can boost your Sharpe Ratio by consistently selling option vol, but that give you rather unpleasant kurtosis and make your skew more negative.

All this is a theoretical discussion - let's see what actually happens to the moments of the return distribution when we remove vol targeting.


Empirical evidence


It's relatively easy to test this sort of thing with pysystemtrade. Here's an account curve for 37 futures markets using the system in chapter fifteen of my first book (with carry removed, since the original article was about trend following), and also the monthly distribution of returns:

Account curve with vol targeting
Distribution of monthly returns with vol targeting


This is a system which vol targets using the last month or so of returns. Vol targeting also increases costs, and all the analysis in this post are done after costs.

Now for the counterfactual. It's actually quite hard to 'turn off' vol targeting as it's not obvious what you'd replace it with: would you for example give all markets the same cash position and ignore vol completely? That would lead to some very distorted results indeed! I decided to continue to use vol to scale positions, but a very long term vol which didn't move around for each market; so basically cross sectional vol budgeting, without the time series adjustment to vol. I went with this set of config changes:

system.config.volatility_calculation['days']=7500
system.config.volatility_calculation['min_periods']=1000
system.config.volatility_calculation['backfill']=True

In plain english we will:

  • Calculate the vol over the first 4 years of data (because I only have about 4 years of data for many instruments)
  • Backfill and use that vol for the first 4 years (so forward looking, but <shrugs>)
  • After that use a very slow moving average of vol (half life of 30 years)
This is as close to fixed vol as you can get. Here's the account curve and the distribution:

Account curve without vol targeting

Distribution of monthly returns without vol targeting

Well the account curve clearly isn't as good. The distribution is harder to read: it looks like there are some outliers that weren't there before on both the left and right tails.

Here are some statistics that reinforce this result (all based on monthly returns):


                    With vol targeting          Without
Skew                    +1.08                    +2.46
Sharpe                   0.92                    0.569
Sortino                  1.62                    0.867
Min return             -32.6%                   -55.6%
Max return             +47.7%                  +100.6%
Kurtosis                 5.28                    33.0
1% point                -16.5%                  -18.1%
99% point               +31.8%                  +30.2%

To summarise then removing vol targeting leads to:


  • Higher skew
  • Worse Kurtosis
  • Worse Sharpe Ratio

Now depending on your utility function you might argue this is a trade worth taking. If you cared about Skew above all else then maybe you'd accept this deal. Personally I wouldn't take this deal, but you might have a very strange utility function indeed.

But... and there is a big but here... I'm not sure how significant these results are. Skew and Kurtosis are like anything else statistical estimators, which means they are subject to uncertainty, and they're also subject to being affected by a couple of outliers.

(By the way a formal T-test on the Sharpe Ratio difference in the curves has a statistic of 3.59, so the difference is indeed significant to something like 99.97%)

If we use a more robust measure of left and right tail - the 1% and 99% points on the distribution of returns - we can see that removing vol targeting leads to slightly worse outcomes on the left tail (1%), and more surprisingly a slightly worse outcome on the right tail as well (99% point). We were sold no vol targeting as a product to improve our right tail, and we don't see it.

This strongly suggests that the skew and kurtosis numbers are being heavily driven by one or two outliers.

Formally if we bootstrap the distribution of skew for each curve we get this:
Distribution of monthly skew estimate with vol targeting
And this without vol targeting:

Distribution of monthly skew estimate without vol targeting
Notice the much wider range of uncertainty, and the weird bimodal distribution, characteristic of a statistic that is being driven by one or two outliers.

How do we get round this? Well both the largest positive and negative returns occur in 1979 - 1980; when there weren't many instruments trading in the data. Let's recheck the statistics, but this time ignoring everything before January 1981; this is still over 36 years of data:


                    With vol targeting            Without

Skew                    +0.45                    +0.64
Sharpe                   0.78                    0.52
Min return             -26.5%                   -25.4%
Max return             +33.4%                   +33.6%
Kurtosis                 3.12                    3.9
1% point                -16.3%                  -14.2%
99% point               +22.2%                  +22.0%

The improvement in Skew, and worsening Kurtosis, are both still there but nowhere near as dramatic. The minima and maxima, and 1% / 99% points, are almost identical. It looks like there might be a slight improvement in the left tail without vol targeting, and a slight worsening in the right tail - which is the opposite of what we'd expected - but the values are not significantly different. And, sadly, the drop in Sharpe Ratio is still present (and it is still very significant).


Summary


On the face of it vol targeting does indeed seem to remove some of the positive skew from trend following. But there are a few caveats:

  • The improvement in Skew can be heavily influenced by one or two outliers in the data
  • It looks like the improvement in Skew doesn't in fact lead to a better right tail
  • The kurtosis is definitely worse, although again this could be influenced by outliers; taking these out the degradation in Kurtosis is still there but not as dramatic
  • There is a substantial reduction in Sharpe Ratio, with or without outliers

So yes, maybe, there is something in the idea that vol targeting involves giving up some of the positive skew that trend following gives you, at least with monthly data. But the cost is terribly high: about a third of our Sharpe Ratio! This is the old 'no free lunch in finance' idea - we can improve one moment of our return distribution, but it usually involves giving something up. Another word for this is the 'waterbed' effect - when we push down on the skew part of our waterbed to ensure a better nights sleep, the water just moves somewhere else (the kurtosis and Sharpe Ratio parts of the bed).

I can't help thinking there are cheaper ways of getting positive skew; like maybe buying some out of the money straddles as an overlay on your trading system.

Finally, it's also worth reading this recent paper by my old shop, AHL, which goes into more detail on this subject.

Acknowledgements - I'd like to thank Mark Serafini who accidentally inspired this blog post with a LinkedIn post that turned out to be on an entirely different topic, and Helder Palaro who found that post for me.