In my last post, I described ETH^2-PERP as a convexity product extending Dave White, SBF, et al's everlasting options framework. At that time, I didn't take the time to cover the general binomial expansion. I will do that here.
There's a limit to what's a good idea in terms of stability (think about what happens if underlying doubles). However, as I alluded to, ETH^4 could be an interesting stop after ETH^2. ETH^3 and ETH^4 derive skewness and kurtosis, respectively. The former captures risk asymmetry, and the latter is for YOLOs. It's no coincidence that these are the ones that have names (although apparently, sometimes fifth moments matter).
Central Moments
The aforementioned distribution measures of interest come from central moments, which are simply . Variance is the second central moment , while skewness and kurtosis are the third and fourth standardized moments and , respectively. However, central moments are a moving target, which is why I've proposed ETH^n-PERP to capture the raw moments . We can construct the central moments from the raw moments by binomial expanding (Wikipedia shows this as well):
n-th moment pricing works for any data-generating process (including vol-of-vol and discontinuities) with finite moments. For example, if we were to simply assume geometric Brownian motion, as in the Black-Scholes model, then we just use the moments of the log-normal.
Premium
I previously analyzed the "premium" of ETH^2-PERP over spot. This is no longer a necessary mental construct if we think in terms of moments, but we could show it anyway with another binomial expansion where is the expected deviation of the price at time t from current spot:
Note that this is a bit less human readable, so I expect that traders wouldn't trade the premium directly, but rather trade in terms of central moments.
Greeks, again
Notice that I've shifted the framing here from talking about Greeks (differential calculus) to moments (probability theory) as I consider it even more relevant/fundamental to modelling. Greeks only exist within the context of a pricing model - however, under simplistic pricing models (i.e. moments scale the natural way w.r.t. the underlying), exposure to only the n-th derivative is the same as buying the n-th central moment (exercise: use Taylor's theorem).
Leverage
A rather interesting sidenote is that ETH^n provides approximately n-times leverage. This means that long directional bets may never need "rolling". If you solve the ODE, you'll find that this property implies an ETH^n token.
Practical Considerations
BigNumber
I previously suggested that ETH^2 could be settled in ETH to make things less overwhelming on the front end. Unfortunately, this idea doesn't generalize well. We also don't necessarily want to implement ticks (the tick size would be a moving target). Given that we want to avoid floating-point arithmetic, we may just have to bite the bullet here and use BigNumbers and scientific notation displays (I'll discuss some other trading interface ideas later). If we just go up to ETH^4 this isn't the worst.
Perp Convergence
In general, the implied decay in the funding rate of ETH^n needs to be at least n times as fast as the growth of the underlying. If the distribution has exponentially-bounded tails, then all moments are finite, so the aforementioned condition is sufficient.
Position Builder Interface
Something I used to mildly want is an interface where one can specify a posterior pdf and utility curve and get the best option play. That would have been kind of annoying to implement, iterating over a ton of contracts, dealing with execution costs, etc. With moments, interface construction becomes a bit easier. Here are some ideas:
Human Readable Market Outlook
A trading interface could include charts for mean, variance, skewness, and kurtosis, as well as a picture of a distribution matching said measures (e.g. using momentify).
Position Entry
You could choose which central moments to long or short and the algo would construct that position from raw moments.
As a helper, you could enter your posterior pdf into a moment calculator, graphically or through CIs/percentiles.
Disclaimer
This is unaudited moon math, and not peer-reviewed. Shoot me a DM on Twitter if I missed anything!