Asset Rotation

This dataset provides historical and forecasted risk-parity asset allocation data for investors for five asset classes.

Monthly allocation estimates for five assets.

Tutorials are the best documentation — Asset Rotation Tutorial Tutorial

Description

This dataset provides historical and forecasted risk-parity asset allocation data for five major asset classes: bonds, equities, commodities, dollar, and real estate.

It offers monthly allocation estimates and return predictions, both historical and 8 years into the future, based on hundreds of economic indicators.

The data and accompanying visualization tools enable investors to analyze optimal allocations and asset rotation strategies over time.The data is presented in a monthly frequency, starting from November 1959.

Data Access

Returns All

Return predictions, historically and 8-years in the future.

from sovai import sov 
df_returns = sov.data("allocation/returns")

Allocation All

Historical allocations and future risk-parity allocations

from sovai import sov 
df_allocate = sov.data("allocation/all")

Plot Access

Line Plot

Looking at the future and past prescribed allocations over-time

from sovai import sov 
sov.plot("allocation", "line")

Stacked Plot

Looking at the future and past prescribed allocations over-time

from sovai import sov 
sov.plot("allocation", "stacked")

Last updated