I know this has been flogged many times and thanks to Drizzt and his spreadsheets, I've dissected inner workings on how things are done. So just a few things for you newbies to play around to track your stock.
Firstly, Google Finance integrates well with Google Spreadsheet.
To call up the last traded price of a stock, input this into a cell. I will use SPDR STI ETF as an example.
=GoogleFinance("SGX:ES3";"price")
This will call out the latest price for ES3 (SPDR STI ETF listed on SGX).
There are a lot of other things you can call up from Google Finance to Google Spreadsheet. For example, the currency conversion. For example USD to SGD since you bought some USD denominated stock. So you input this into a cell:
=googlefinance("CURRENCY:USDSGD")
This is great. But some of us are buying SGS Bonds directly and Google Finance does not have the quotes for the PH1S 30 year SGS bond. How? Yahoo Finance has the quote for PH1S. You input this into a cell.
=importData("http://finance.yahoo.com/d/quotes.csv?s=PH1S.SI&f=l1")
The crucial info is the "&f" you see after the stock code. "l1" pulls out the last traded price for the stock. For more of the &f string, see this website.
https://code.google.com/p/yahoo-finance-managed/wiki/enumQuoteProperty
Try these out when constructing your own spreadsheet to track your investments.
Firstly, Google Finance integrates well with Google Spreadsheet.
To call up the last traded price of a stock, input this into a cell. I will use SPDR STI ETF as an example.
=GoogleFinance("SGX:ES3";"price")
This will call out the latest price for ES3 (SPDR STI ETF listed on SGX).
There are a lot of other things you can call up from Google Finance to Google Spreadsheet. For example, the currency conversion. For example USD to SGD since you bought some USD denominated stock. So you input this into a cell:
=googlefinance("CURRENCY:USDSGD")
This is great. But some of us are buying SGS Bonds directly and Google Finance does not have the quotes for the PH1S 30 year SGS bond. How? Yahoo Finance has the quote for PH1S. You input this into a cell.
=importData("http://finance.yahoo.com/d/quotes.csv?s=PH1S.SI&f=l1")
The crucial info is the "&f" you see after the stock code. "l1" pulls out the last traded price for the stock. For more of the &f string, see this website.
https://code.google.com/p/yahoo-finance-managed/wiki/enumQuoteProperty
Try these out when constructing your own spreadsheet to track your investments.

