An all weather portfolio Based on the literature, permanent portfolio is an investment strategy that is able to yield moderate returns and relatively low volatility. Investor is recommended to invest equally (25%) into GLD, Index, Bond and Cash and rebalance it back to this proportion on regular intervals.
This approach is something that I’m keen to adopt for a portion of my portfolio.
To investigate the feasibility, I simulated a portfolio starting at $300 on Nov 2004.
CONTINUE READING
I simply adapted the code in this post here (https://www.r-bloggers.com/backtesting-a-simple-stock-trading-strategy/) for the following momentum strategy.
This is a momentum based strategy: Long if current day is <50 days of 200 days high. Nil position otherwise.
Returns are pretty impressive for Singapore market. That being said, it will be useful to try it with different parameters and different markets!
#Inspired by the blog post here-->https://www.r-bloggers.com/backtesting-a-simple-stock-trading-strategy/ #http://etfprophet.com/days-since-200-day-highs/ #Simple momentum strategy rm(list = ls(all = TRUE)) library(quantmod) ## Loading required package: xts ## Loading required package: zoo ## ## Attaching package: 'zoo' ## The following objects are masked from 'package:base': ## ## as.
CONTINUE READING