Posts

SRS analysis I haven’t paid much attention to SRS contributions as a way to reduce taxable income. But lately, I realised you could boost investment portfolio returns through this avenue at literally 0 cost. I find this blog post written by a local finance blogger to be really helpful in understanding the SRS contributions and withdrawal mechanics. For my own understanding, I also did some quick analysis using google sheet (see ‘Analysis in google sheet’ section) to evaluate if this works, and to my surprise, I found that free lunch does exist in Singapore!

CONTINUE READING

Birth of an idea of all places: In the Jungle Having to juggle both work and masters in computer science at the same time, it’s really hard to afford any more time to my side projects. But back in August, I had a break away from both school and work by going back for reservist. As it’s really bored in there where I spent most of the time in a small building (with no aircon!

CONTINUE READING

Setting up a database for my Jarvis As I run more sophiscated trading strategies, I require a proper database for training parameters and records. Previously, I was using a mix of SQLite, RDA and CSV files - but going forward I will be using Mysql (workbench) to house my data. Below is an example of database tables for my market neutral strategies. I will be using these tables for the following,

CONTINUE READING

DAX index and Germany ETF I will keep it short in this post since I espoused on this strategy a couple of times. I discovered another market neutral opportunity this month. And this is based on ratio between Germany DAX index and MSCI based Germany ETF (EWG) Based on backtest, sharpe ratio is close to 1.16. The composition between these 2 indexes are largely similar and any significant deviation shouldn’t persist for long.

CONTINUE READING

Jarvis Humans are imperfect. Humans are prone to biases. Humans are dumb. Humans have egos. Humans rely on intuitions which are way way overrated. And all these are blockers to sustainable positive performances in the area of investment portfolio management. But not all is lost… I’ve found a way to aid me in my invesment decision making processes. And that’s Jarvis! My expert advisor to advise me what to do in different scenarios.

CONTINUE READING

UK index and UK ETF I discovered another market neutral opportunity this month. And this is based on ratio between FTSE 100 index and MSCI based UK ETF (EWU) Based on backtest, sharpe ratio is close to 0.9. The composition between these 2 indexes are largely similar and any significant deviation shouldn’t persist for long. The optimal lookback period for the MA component in bollinger band is approximately 40 days.

CONTINUE READING

Asset allocation notification I’m in the midst of automating/ guiding my life with algorithms (largely inspired by Ray Dalio) - and 1 of the guidelines that I set is on asset allocation, Emerging market and Developed Market should be of the same proportion Bonds + Cash proportion should be equivalent to my age. This can deviate in times of crisis when I want to be more opportunistic. If it deviates from the portfolio policy statement, it will send me a pushover notification to my phone:)

CONTINUE READING

Email notification I finally bit the bullet and updated my previously hideous email notification! You may find the updated email notification template here - alongside with the code. Feel free to ping me if you are keen to be on the email list too. ~ Jirong import smtplib, ssl import datetime import pandas as pd from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart #Format text data = pd.read_csv('/home/jirong/Desktop/github/ETF_watchlist/Output/yahoo_crawled_data.csv') data['Change_fr_52_week_high'] = round(100 * data['Change_fr_52_week_high'], 1) data = data[['Name', 'Price', 'Change_fr_52_week_high']].

CONTINUE READING

Market neutral strategy As the negative news pile up (trade wars, slump in economy growths, etc), I sought for market neutral stategies that could perform well in any market environment. An idea that struck me recently is to exploit the pair between Berkshire and SnP 500 ETF. The SnP500 ETF/ Berkshire ratio has been falling over the years - insinuating that Berkshire still outperforms the index in the last couple of years.

CONTINUE READING

Converting NAs to obscure numbers to prevent the data from messing up the recoding. 1 issue that I encounter while I data-munge is that NAs in data seem to mess up my recoding. Here’s a neat swiss army knife utility function I developed recently. suppressMessages(library(dplyr)) # Converting NA to obscure number to prevent awkward recoding situations that require & !is.na(<variable>) # Doesn't work for factors #' @title Convert NA to obscure number #' @param dp_dataframe Dataframe in consideration #' @param np_obscure_num Numeric - Obscure number #' @param bp_na_to_num Boolean if TRUE, convert NA to num.

CONTINUE READING