G'Day Mates,
Listening to the latest episode of Bloomberg's MIB podcast, I wanted to see if I could create a 'factor tilting' framework, as discussed by Andrew Ang (head of factor investing at Blackrock) in the episode. Unfortunately my python programming skills are not good enough to be able to do this on my own, so I thought I'd reach out to the community to see if someone is able and willing to help create such a framework.
The attached strategy has four very basic factors based on Value, Quality, Momentum, and Growth, and are currently (statically) equally weighted at 25% each (after winsorized and normalized/zscored). If I understand it correctly, a 'relative strength factor tilting' would give more/less weight based on each factors relative strength as compared to the other three factors. Perhaps by using average rolling Returns of each factor during some look-back window (say last 6 months) as a measure of 'strength'? Each factor's relative strength can then be used as either over-weight/tilt or under-weigth/tilt, depending on if one believes in factor strength Momentum or Reversal.
I'm not sure if the Q built-in RSI factor can be used for this purpose, or if creating a specific CustomFactor is needed, or if it's better to create individual CustomFactors for the above four factors, and then use them as input in the factor relative strength calculation (inside or outside of a Pipeline?), similar to what @Grant does in his Cluster of Factors algo?
If anyone would be willing to help creating this 'relative strength factor tilting' framework, I'd be very grateful.