Exercises – Funny Indices Solved

$ 24.99
Category:

Description

1 Setting
In this problem we will explore the world of funny indices in a toy stock universe composed of 100 stocks. You are are given the prices for each stock from time t : 0 → N (data challenge stock prices.csv). You can assume that the return:
, where is the price of stock s at time t, is conditionally
independent of .
Additionally you are given 15 indices with their corresponding prices at each timestamp (data challenge index prices.csv). Each index Ii is a related to the stock prices. Specifically if is the return of Index Ii at time t then:
(1)
where εi ∼N(0,σi), is i.i.d. (independent of t) particular to each index.
2 Problem
Analyze and answer the following about this data: (Note that since you will be working with returns which are small numbers, its advisable to transform the returns to bps to help with fitting).
1. Each stock belongs to a particular sector S. There are M sectors (M < 100). Find the value M.
2. Find the partition of stocks into sectors. You should store the set of stocks foreach sector to help speed up the next part.
3. Given an additional constraint (if needed) that each index Ii is a function of stocks only from a particular sector and conforms to the functional form given in (1), solve for as many indices as you can. As stated above, the index returns at time t can be predicted using stock returns at time t.
A solution for an index Ii, involves a model which implements fi and reports which sector this index pertains to. By construction, these indices have the noise εi tuned such that a correct solution should be able to achieve ≥ 40% predictive correlation. You are also encouraged to reason about the possible functional forms for index Ii in a data-driven approach.
1
4. Collect all the indices you could solve (lets say k) and compute the covariance
Σk×k for your predictions µk×N, (you will have k predictions for each timestamp).
5. Construct a trading strategy using µ and Σ from the previous part. (you will have a prediction µt for each time t and Σ is a static estimate. You are given the following constraints/conditions:
• you are able to trade the Index Ii at its price at time t − 1, using price information from stocks at time t. Effectively this will allow you to use
ˆIi the predictions on the return Rt and the estimated covariance Σ from above.
• You need to decide an allocation for each index at each time using your predictions. Additionally is constrained as 1, or your max long/short position is constrained to $1.
• Your long-short positions should net out completely, i.e. .
6. Finally, report the mean, stdev and sharpe of your trading strategy. Write asmall note discussing assumptions in the above execution scheme.
3 Guidelines
It would help to keep the following points in mind while attempting the problem:
• If you get stuck trying to figure out the sector partition, feel free to skip ahead to index return prediction and just put in all stock returns as indicators.
• We encourage trying a vast variety of fitting techniques but still having some valid reasoning behind them. While some of these indicies are inherently ”funny”, most of them should be easy to fit with relatively less data and simple ideas. Training time for a model should be a few minutes in the worst case.
• When working with returns which are inherently small numbers, a lot of fitting issues might arise if these are not converted to bps or standardized in some other way.
• Finally, we hope you enjoy discovering the many small eureka-voila! moments while exploring the dataset even if you’re not able to complete the problem. Please reach out to us with any suggestions!
2

Reviews

There are no reviews yet.

Be the first to review “Exercises – Funny Indices Solved”

Your email address will not be published. Required fields are marked *