<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Quantisan.com</title>
	
	<link>http://www.quantisan.com</link>
	<description>An engineer's training to trade for a living</description>
	<lastBuildDate>Thu, 11 Mar 2010 13:46:09 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Quantisan" /><feedburner:info uri="quantisan" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Quantisan</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Data Scraping the Toronto Stock Exchange: Extracting 3,660 companies’ data</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/UNsfsoFPiQw/</link>
		<comments>http://www.quantisan.com/data-scraping-the-toronto-stock-exchange-extracting-3660-companies-data/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 12:29:08 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Quantitative Tools]]></category>
		<category><![CDATA[Canadian]]></category>
		<category><![CDATA[data scraping]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[TSX]]></category>
		<category><![CDATA[TSX Venture]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/?p=3404</guid>
		<description><![CDATA[One of the tasks that I&#8217;ve always wanted to make more efficient in my stock trading is the work of scanning for stocks to trade.  One look at my trading strategy posts and you&#8217;ll see that I have devised many stock scanning systems in the past few years.  The most recent system that [...]


Related posts:<ol><li><a href='http://www.quantisan.com/finding-in-play-stocks-based-on-earnings-release/' rel='bookmark' title='Permanent Link: Finding in-play stocks based on earnings release date'>Finding in-play stocks based on earnings release date</a></li>
<li><a href='http://www.quantisan.com/using-option-pain-max-pain-to-estimate-stock-price/' rel='bookmark' title='Permanent Link: Using Option Pain (Max Pain) to estimate stock price'>Using Option Pain (Max Pain) to estimate stock price</a></li>
<li><a href='http://www.quantisan.com/another-reason-against-stocking-into-a-registered-trading-account-this-year/' rel='bookmark' title='Permanent Link: Another reason against stocking into a registered trading account this year'>Another reason against stocking into a registered trading account this year</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of the tasks that I&#8217;ve always wanted to make more efficient in my stock trading is the work of scanning for stocks to trade.  One look at my <a href="/category/trading-how-tos/trading-strategy/">trading strategy posts</a> and you&#8217;ll see that I have devised many stock scanning systems in the past few years.  The most recent system that I&#8217;ve used is one that uses <a href="/week-of-sept-13-2009-in-play-stocks-breakout-results/">options data to filter stocks</a>.  However, it is not automated.  So it takes a lot of time to gather and analyze the data.  Furthermore, the set of tools that I use is limited to U.S. stocks.  Now that I have taken an interest in the Canadian stock market, I can&#8217;t seem to find any public tool that I like.  Thus, I am biting the bullet now and taking my time to develop a custom system once and for all.</p>
<p>Before we can analyze stock data, we need to extract them first.  Where better else for that than go straight to the source at TMX.com, the parent company of Toronto Stock Exchange (TSX) and TSX Venture Exchange (TSXV).  TMX.com provide a list of publicly traded companies in ten Excel files.  The files are divided by sectors.  Each contain a number of fundamental company data, such as market capitalization and outstanding shares.  So step 1 is to extract those data.</p>
<p>This is where I am at now.  I attached the source code for an alpha/developmental release below for anyone interested.  It is a working program to scrape the data from TMX.com&#8217;s files.  But it&#8217;s still a work-in-progress.  That&#8217;s why I am calling it a version 0.1.</p>
<p>The next milestone is to program a Stocks class to hold, organize, and manage all three thousand, six hundred, and sixty companies&#8217; data.  This is an easy task to do by extending the built-in dictionary class in Python.  However, I haven&#8217;t gotten to that chapter yet in my scientific programming with Python learning book.  I stopped at chapter 8 to work on this project.  Chapter 9 is the inheritence and hierarchical material.</p>
<p>The goal of this project is to build an automated data scraping program for TSX and TSXV data from various sources into my computer.  Once I have my data, that&#8217;s when the real fun starts.</p>
<p>Regarding the code below, I know that source code is useless for most people.  Once the project is complete, I will compile the code into a standalone application and post it on this site.  <a href="/feed/">Subscribe to my RSS feed</a> so that you can keep up-to-date with the progress of this project and my other ramblings on trading.</p>
<pre class="brush: python;">
# extractTMX.py
# version: 0.1 alpha release
# revision date: March, 2010
# by Paul, Quantisan.com

&quot;&quot;&quot;A data scraping module to extract company listing excel files from TMX.COM&quot;&quot;&quot;

import xlrd									# to read Excel file
#import sys
from finClasses import Stock				# custom Stock class

def _verify():
	&quot;&quot;&quot;Verification function for a rundown of the module&quot;&quot;&quot;
	pass									# copy test block here when finished

def findCol(sheet, key):
	&quot;&quot;&quot;Find the column corresponding to header string 'key'&quot;&quot;&quot;
	firstRow = sheet.row_values(0)
	for col in range(len(firstRow)):
		if key in firstRow[col]: return col		# return first sighting
	else:										# not found
		raise ValueError(&quot;%s is not found!&quot; % key)

def scrapeXLS(book):
	&quot;&quot;&quot;Data scraping function for TMX Excel file&quot;&quot;&quot;

	listingDict = {}						# dict of ('ticker': market cap)

	for index in range(book.nsheets):
		sh = book.sheet_by_index(index)

		mcCol = findCol(sh, &quot;Market Value&quot;)
		assert type(mcCol) is int, &quot;mcCol is a %s&quot; % type(mcCol)
		osCol = findCol(sh, &quot;O/S Shares&quot;)
		assert type(osCol) is int, &quot;osCol is a %s&quot; % type(osCol)
		secCol = findCol(sh, &quot;Sector&quot;)		# multiple matches but taking first
		assert type(secCol) is int, &quot;secCol is a %s&quot; % type(secCol)
		hqCol = findCol(sh, &quot;HQ\nRegion&quot;)
		assert type(hqCol) is int, &quot;hqCol is a %s&quot; % type(hqCol)

		for rx in range(1, sh.nrows):
			sym = str(sh.cell_value(rowx=rx, colx=4))		# symbol

			s = sh.cell_value(rowx=rx, colx=2)	# exchange col.
			if s == &quot;TSX&quot;: exch = &quot;T&quot;
			elif s == &quot;TSXV&quot;: exch = &quot;V&quot;
			else: raise TypeError(&quot;Unknown exchange value&quot;)

			mc = sh.cell_value(rowx=rx, colx=mcCol)		# market cap
			# check for empty market cap cell
			mc = int(mc) if type(mc) is float else 0

			os = int(sh.cell_value(rowx=rx, colx=osCol))	# O/S shares
			sec = str(sh.cell_value(rowx=rx, colx=secCol))	# sector
			hq = str(sh.cell_value(rowx=rx, colx=hqCol))	# HQ region

			listingDict[sym] = Stock(symbol=sym,exchange=exch,
				mktCap=mc,osShares=os, sector=sec,hqRegion=hq)
	return listingDict

def fetchFiles(fname):
	infile = open(fname, 'r')				# text file of XLS file names
	listing = {}
	for line in infile:						# 1 file name per line
		if line[0] == '#': continue			# skip commented lines

		line = line.strip()					# strip trailing \n
		print &quot;Reading '%s' ...&quot; % line

		xlsFile = &quot;TMX/&quot; + line				# in TMX directory
		book = xlrd.open_workbook(xlsFile)	# import Excel file
		listing.update(scrapeXLS(book))		# append scraped the data to dict
	return listing

#if __name__ == '__main__':					# verify block
#	if len(sys.argv) == 2 and sys.argv[1] == 'verify':
#		_verify()

if __name__ == '__main__':					# test block
	listing = fetchFiles('TMX/TMXfiles.txt')
</pre>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/finding-in-play-stocks-based-on-earnings-release/' rel='bookmark' title='Permanent Link: Finding in-play stocks based on earnings release date'>Finding in-play stocks based on earnings release date</a></li>
<li><a href='http://www.quantisan.com/using-option-pain-max-pain-to-estimate-stock-price/' rel='bookmark' title='Permanent Link: Using Option Pain (Max Pain) to estimate stock price'>Using Option Pain (Max Pain) to estimate stock price</a></li>
<li><a href='http://www.quantisan.com/another-reason-against-stocking-into-a-registered-trading-account-this-year/' rel='bookmark' title='Permanent Link: Another reason against stocking into a registered trading account this year'>Another reason against stocking into a registered trading account this year</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/ceYaO90D-Tp5NSd20lf1YG96bMg/0/da"><img src="http://feedads.g.doubleclick.net/~a/ceYaO90D-Tp5NSd20lf1YG96bMg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ceYaO90D-Tp5NSd20lf1YG96bMg/1/da"><img src="http://feedads.g.doubleclick.net/~a/ceYaO90D-Tp5NSd20lf1YG96bMg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/UNsfsoFPiQw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/data-scraping-the-toronto-stock-exchange-extracting-3660-companies-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/data-scraping-the-toronto-stock-exchange-extracting-3660-companies-data/</feedburner:origLink></item>
		<item>
		<title>Forex Trading:  Income or Capital Gain Tax in Canada?</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/9lWXs9CxwV4/</link>
		<comments>http://www.quantisan.com/forex-trading-income-or-capital-gain-tax-in-canada/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:29:02 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Forex]]></category>
		<category><![CDATA[Canadian]]></category>
		<category><![CDATA[tax]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/?p=3387</guid>
		<description><![CDATA[I&#8217;ve always known that foreign exchange trading is treated as capital gain tax in Canada.  But just to be sure before filing my taxes soon, I&#8217;ve decided to double check the facts from Canada Revenue Agency.  As you know, the difference between income tax and capital gain tax is substantial.  Income tax is taxed at [...]


Related posts:<ol><li><a href='http://www.quantisan.com/not-pay-trading-income-taxes-through-a-tfsa-trading-account/' rel='bookmark' title='Permanent Link: Not pay trading income taxes through a TFSA trading account'>Not pay trading income taxes through a TFSA trading account</a></li>
<li><a href='http://www.quantisan.com/some-tricks-scammers-use-to-game-their-trading-system-with-488-gain/' rel='bookmark' title='Permanent Link: Some tricks scammers use to game their trading system with 488% gain'>Some tricks scammers use to game their trading system with 488% gain</a></li>
<li><a href='http://www.quantisan.com/barred-from-trading-at-work-a-curse-or-a-gift/' rel='bookmark' title='Permanent Link: Barred from Trading at Work: A curse or a gift?'>Barred from Trading at Work: A curse or a gift?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always known that foreign exchange trading is treated as capital gain tax in Canada.  But just to be sure before filing my taxes soon, I&#8217;ve decided to double check the facts from Canada Revenue Agency.  As you know, the difference between income tax and capital gain tax is substantial.  Income tax is taxed at your marginal tax rate.  Whereas capital gain tax is a generous half of your marginal tax rate.  That works out to a 10% to 20% difference.</p>
<p>Taxes in Canada is generally simple to do.  The problem though, is  sifting through the cacophony of information within the Canada Revenue  Agency to find out the applicable rules.  I&#8217;ve copy and pasted a couple of relevant excerpts from the 2010 CRA <a href="http://www.cra-arc.gc.ca/menu/ITSC-e.html">Income Tax  Interpretation Bulletin</a> for the record.</p>
<p>Basically, forex trading can be treated as either income or capital gain tax in Canada (surprise).  According to <a href="http://www.cra-arc.gc.ca/E/pub/tp/it95r/it95r-e.html">IT-95R Foreign exchange gains and losses</a>.</p>
<blockquote><p>2. Where it can be determined that a gain or loss on foreign exchange  arose as a direct consequence of the purchase or sale of goods abroad,  or the rendering of services abroad, and such goods or services are used  in the <strong>business operations</strong> of the taxpayer, such gain or loss is  brought into income account. If, on the other hand, it can be determined  that a gain or loss on foreign exchange arose as a direct consequence  of the<strong> purchase or sale of capital assets</strong>, this gain or loss is either a  capital gain or capital loss, as the case may be. Generally, the nature  of a foreign exchange gain or loss is <strong>not affected by the length of  time</strong> between the date the property is acquired (or disposed of) and the  date upon which payment (or receipt) is effected.</p></blockquote>
<p>As you can see, it is very vague.  That&#8217;s why forex trading can be  considered income or capital gain tax.  It is up to you and your  accountant to figure out which works for you.</p>
<p>A noteworthy point in the above excerpt is that the holding period is not taken into account.  So there&#8217;s no 30-day rule like in the states whereby frequent trading would miss out the capital loss credit if they re-purchase the same asset within 30-day of disposal.</p>
<p>Further down the page in IT-95R, we have the following bullet.</p>
<blockquote><p>6. A taxpayer who has transactions in foreign currency or foreign  currency futures that do not form part of business operations, or are  merely the result of sundry dispositions of foreign currency by an  individual, will be accorded by the Department the <strong>same treatment as  that of a &#8220;speculator&#8221; in commodity futures</strong> see 7 and 8 or IT-346R.  However, if such a taxpayer has special &#8220;Inside&#8221; information concerning  foreign exchange, he will be required to report his gains and losses on  income account.</p></blockquote>
<p><a href="http://www.cra-arc.gc.ca/E/pub/tp/it346r/it346r-e.html">IT-346R Commodity Futures and Certain Commodities</a> explains the tax treatment of speculation in the commodity markets.</p>
<blockquote><p>7. As a general rule, it is acceptable for speculators to report all their gains and losses from transactions in commodity futures or in commodities as<strong> capital gains and losses</strong> with the result that only one-half the gain is taxable, and one-half the loss is allowable subject to certain restrictions, (hereinafter called &#8220;capital treatment&#8221;) provided such reporting is followed consistently from year to year.</p></blockquote>
<p>So there, we have it.  Amateur forex traders, such as myself, can report our forex trading gain/loss as capital gains and losses.  The reason being that forex trading isn&#8217;t part of my business operation because I have another primary source of income (e.g. salary from another job).</p>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/not-pay-trading-income-taxes-through-a-tfsa-trading-account/' rel='bookmark' title='Permanent Link: Not pay trading income taxes through a TFSA trading account'>Not pay trading income taxes through a TFSA trading account</a></li>
<li><a href='http://www.quantisan.com/some-tricks-scammers-use-to-game-their-trading-system-with-488-gain/' rel='bookmark' title='Permanent Link: Some tricks scammers use to game their trading system with 488% gain'>Some tricks scammers use to game their trading system with 488% gain</a></li>
<li><a href='http://www.quantisan.com/barred-from-trading-at-work-a-curse-or-a-gift/' rel='bookmark' title='Permanent Link: Barred from Trading at Work: A curse or a gift?'>Barred from Trading at Work: A curse or a gift?</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/N8M0NrOReCSgq-lwCosaWJ5IELw/0/da"><img src="http://feedads.g.doubleclick.net/~a/N8M0NrOReCSgq-lwCosaWJ5IELw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/N8M0NrOReCSgq-lwCosaWJ5IELw/1/da"><img src="http://feedads.g.doubleclick.net/~a/N8M0NrOReCSgq-lwCosaWJ5IELw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/9lWXs9CxwV4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/forex-trading-income-or-capital-gain-tax-in-canada/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/forex-trading-income-or-capital-gain-tax-in-canada/</feedburner:origLink></item>
		<item>
		<title>Twitter Weekly Summary for 2010-03-07</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/QJuvUTlHjXg/</link>
		<comments>http://www.quantisan.com/twitter-weekly-summary-for-2010-03-07/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 04:50:00 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/twitter-weekly-summary-for-2010-03-07/</guid>
		<description><![CDATA[
just bought some exercise resistance bands online, will start P90X in a couple weeks when they arrive #
with the #market being squeezed at an imp junction, I find strangles to offer the best odds atm for a breakout either way $$ #
good intro resources on Complex Event Processing http://ow.ly/1f3j9 #
spent the morning at the vet [...]


Related posts:<ol><li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-02-22/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-02-22'>Twitter Weekly Summary for 2010-02-22</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-02-28/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-02-28'>Twitter Weekly Summary for 2010-02-28</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-01-23/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-01-23'>Twitter Weekly Summary for 2010-01-23</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>just bought some exercise resistance bands online, will start P90X in a couple weeks when they arrive <a href="http://twitter.com/Quantisan/statuses/10139395339" class="aktt_tweet_time">#</a></li>
<li>with the #<a href="http://search.twitter.com/search?q=%23market" class="aktt_hashtag">market</a> being squeezed at an imp junction, I find strangles to offer the best odds atm for a breakout either way $$ <a href="http://twitter.com/Quantisan/statuses/10093590699" class="aktt_tweet_time">#</a></li>
<li>good intro resources on Complex Event Processing <a href="http://ow.ly/1f3j9" rel="nofollow">http://ow.ly/1f3j9</a> <a href="http://twitter.com/Quantisan/statuses/10085499952" class="aktt_tweet_time">#</a></li>
<li>spent the morning at the vet with my pet, quickest $1k bill that I signed&#8230; those vets can really rake the $$$ in! <a href="http://twitter.com/Quantisan/statuses/10030985774" class="aktt_tweet_time">#</a></li>
<li>Thx 4 #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> #forex #<a href="http://search.twitter.com/search?q=%23traders" class="aktt_hashtag">traders</a> @<a href="http://twitter.com/fx_13" class="aktt_username">fx_13</a> @Ancient_Warrior @<a href="http://twitter.com/JS_Trader" class="aktt_username">JS_Trader</a> @FXDIRK @<a href="http://twitter.com/LisaCNolen" class="aktt_username">LisaCNolen</a> <a href="http://twitter.com/Quantisan/statuses/10030821553" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-02-22/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-02-22'>Twitter Weekly Summary for 2010-02-22</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-02-28/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-02-28'>Twitter Weekly Summary for 2010-02-28</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-01-23/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-01-23'>Twitter Weekly Summary for 2010-01-23</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/AwfcIoO3lU_lrjiiIRDA8AYHTfg/0/da"><img src="http://feedads.g.doubleclick.net/~a/AwfcIoO3lU_lrjiiIRDA8AYHTfg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AwfcIoO3lU_lrjiiIRDA8AYHTfg/1/da"><img src="http://feedads.g.doubleclick.net/~a/AwfcIoO3lU_lrjiiIRDA8AYHTfg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/QJuvUTlHjXg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/twitter-weekly-summary-for-2010-03-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/twitter-weekly-summary-for-2010-03-07/</feedburner:origLink></item>
		<item>
		<title>Another reason against stocking into a registered trading account this year</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/wVxMBwaRzWk/</link>
		<comments>http://www.quantisan.com/another-reason-against-stocking-into-a-registered-trading-account-this-year/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 12:32:10 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Stocks]]></category>
		<category><![CDATA[Canadian]]></category>
		<category><![CDATA[TSX]]></category>
		<category><![CDATA[TSX Venture]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/?p=3372</guid>
		<description><![CDATA[There&#8217;s another reason why I am so reluctant to put money into a TFSA trading account to invest in Canadian stocks.  As you know, in a registered trading account, such as a RRSP self-directed trading account or a Questrade TFSA trading account (aff), you cannot short shares and can only buy because you can&#8217;t trade [...]


Related posts:<ol><li><a href='http://www.quantisan.com/tested-the-pre-2000-tech-bubble-14-year-old-trendline-last-week/' rel='bookmark' title='Permanent Link: Tested the pre-2000 tech bubble, 14 year-old trendline in last 2 weeks'>Tested the pre-2000 tech bubble, 14 year-old trendline in last 2 weeks</a></li>
<li><a href='http://www.quantisan.com/end-of-the-6-week-rally-and-back-with-the-year-long-beartoday/' rel='bookmark' title='Permanent Link: End of the 6-week rally and back with the year-long bear&#8230;today?'>End of the 6-week rally and back with the year-long bear&#8230;today?</a></li>
<li><a href='http://www.quantisan.com/20-year-sp-500-trendline-actually-broken-months-ago/' rel='bookmark' title='Permanent Link: 20 year S&amp;P 500 trendline actually broken months ago'>20 year S&amp;P 500 trendline actually broken months ago</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s another reason why I am so <a href="/is-a-5000-questrade-tfsa-trading-account-cost-effective-part-1/">reluctant to put money into a TFSA trading account</a> to invest in Canadian stocks.  As you know, in a registered trading account, such as a RRSP self-directed trading account or a <a href="/questrade/">Questrade TFSA trading account</a> (aff), you cannot short shares and can only buy because you can&#8217;t trade on margin.  As such, a registered trading account is an account for buy-only trading.</p>
<p>It doesn&#8217;t take a genius to figure out that a buy-only trading strategy is best used &#8230; in a bull market.  As trading wisdom goes, trade with the trend.  So the question is, are we in a bull market in 2010?</p>
<p>Figures 1 and 2 shows the weekly chart of TSX Index and the TSX Venture Index, respectively.</p>
<p>Referring to Fig. 1, TSX is bumping up against some headwind at a 12,000 resistance.  Unless TSX can stay above 12,000 cleanly (a weekly low above that level at least), I am still bearish in the market because that financial crisis back in 2008 (<a href="/another-breakdown-of-a-major-multi-year-support-are-we-going-down-and-i-mean-really-down/">remember those days</a>?) is still overshadowing long term prices and trader sentiments.</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 580px"><a href="http://cache.quantisan.com/images/2010/2010-03-04-TSX_wk.png"><img class=" " src="http://cache.quantisan.com/images/2010/2010-03-04-TSX_wk.png" alt="" width="570" /></a><p class="wp-caption-text">TSX, weekly</p></div>
<p>TSX Venture is depressed even more as seen in Figure 2 below.  Just look at the huge gap from current price to the 200 week moving average (red line).  This isn&#8217;t a good sign as lack of interest in high-risk stocks means traders are generally cautious.</p>
<p>Yes, it&#8217;s true that the equity market has been running up, up, and up for a good year.  However, the fact that TSX is sitting at the same level as in 2001 proves that the long term, multi-year bull market has been cleanly broken.</p>
<p>We might very well see pockets of multi-month rallies materialize (like we&#8217;re seeing now), but unless proven otherwise, the long term trend is not looking green for the markets.  It will not be easy money in the stock market like back in the pre-tech bubble 1990&#8217;s.</p>
<p>As opined by Bill Cara, the <a href="http://www.caracommunity.com/">time for buy-and-hold is gone</a>.  It is well known in the community that the coming years will be volatile with big ups and downs.  That is my little secret for moving to <a href="/category/forex/">trade forex </a>last year and the main reason why I am reluctant to set aside money on a one-sided stock trading account.</p>
<div class="wp-caption aligncenter" style="width: 580px"><a href="http://cache.quantisan.com/images/2010/2010-03-04-CDNX_wk.png"><img class=" " src="http://cache.quantisan.com/images/2010/2010-03-04-CDNX_wk.png" alt="" width="570" /></a><p class="wp-caption-text">TSX Venture, weekly</p></div>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/tested-the-pre-2000-tech-bubble-14-year-old-trendline-last-week/' rel='bookmark' title='Permanent Link: Tested the pre-2000 tech bubble, 14 year-old trendline in last 2 weeks'>Tested the pre-2000 tech bubble, 14 year-old trendline in last 2 weeks</a></li>
<li><a href='http://www.quantisan.com/end-of-the-6-week-rally-and-back-with-the-year-long-beartoday/' rel='bookmark' title='Permanent Link: End of the 6-week rally and back with the year-long bear&#8230;today?'>End of the 6-week rally and back with the year-long bear&#8230;today?</a></li>
<li><a href='http://www.quantisan.com/20-year-sp-500-trendline-actually-broken-months-ago/' rel='bookmark' title='Permanent Link: 20 year S&amp;P 500 trendline actually broken months ago'>20 year S&amp;P 500 trendline actually broken months ago</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Ar-AWM-SY92rYLmK-Nc48nplxoQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/Ar-AWM-SY92rYLmK-Nc48nplxoQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Ar-AWM-SY92rYLmK-Nc48nplxoQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/Ar-AWM-SY92rYLmK-Nc48nplxoQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/wVxMBwaRzWk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/another-reason-against-stocking-into-a-registered-trading-account-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/another-reason-against-stocking-into-a-registered-trading-account-this-year/</feedburner:origLink></item>
		<item>
		<title>First look at Google App Engine for automated trading and quant analysis on the cloud</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/4J_z_cSXdSk/</link>
		<comments>http://www.quantisan.com/first-look-at-google-app-engine-for-automated-trading-and-quant-analysis-on-the-cloud/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:19:31 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Quantitative Tools]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Google App Engine]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/?p=3363</guid>
		<description><![CDATA[I just spent the last few hours looking into Google App Engine to use it for trading.  Google App Engine (GAE) is a cloud computing development and hosting platform for web applications.  GAE is similar to the well-known Amazon EC2 service but it is also very different.  The main difference between GAE and EC2 is [...]


Related posts:<ol><li><a href='http://www.quantisan.com/4-automated-trading-development-platforms-for-beginner-to-advanced-traders/' rel='bookmark' title='Permanent Link: 4 automated trading development platforms for beginner to advanced traders'>4 automated trading development platforms for beginner to advanced traders</a></li>
<li><a href='http://www.quantisan.com/why-i-am-not-a-big-fan-of-mql4-or-trading-platform-scripting/' rel='bookmark' title='Permanent Link: Why I am not a big fan of MQL4 or trading platform scripting'>Why I am not a big fan of MQL4 or trading platform scripting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I just spent the last few hours looking into Google App Engine to use it for trading.  Google App Engine (GAE) is a cloud computing development and hosting platform for web applications.  GAE is similar to the well-known Amazon EC2 service but it is also very different.  The main difference between GAE and EC2 is that GAE is not as flexible as EC2 but it is a lot easier to develop on.  Think of it like using C++ (EC2) to write your own trading platform to using EasyLanguage on TradeStation or MQL on Metatrader (GAE).</p>
<p>Another advantage for using Google App Engine is that it is free!  Well, to a certain extent.  It is free for a limited monthly usage.  However, Google&#8217;s free quota is known to be very generous (think Gmail) and this is no exception.  Based on the numbers, it looks comparable to a typical $20/month virtual private server (VPS) hosting package.  My guess is that you can run a decent personal quant program on it if you keep the resources for yourself (private use).  For more information on the free quota, you can read the <a href="http://code.google.com/appengine/docs/quotas.html">current GAE quota</a> web page or the <a href="http://en.wikipedia.org/wiki/Google_App_Engine">Wikipedia page for GAE</a>.</p>
<p>You might be wondering how did I spend a few hours just reading on GAE?  The answer is that I&#8217;ve done a brief research, planning, and assessment to see how GAE can be put to use in terms of quantitative analysis for automated and discretionary trading.  Without going through all of my notes and logic, here&#8217;s the gist of my conclusion.</p>
<h2>For Automated Trading</h2>
<p>Since GAE is also a SDK, it has a restricted programming API.  You  can&#8217;t just plug in any custom library of your own (i.e. your broker&#8217;s  API) into your program.  That is its advantage and its disadvantage.  Furthermore, GAE  only support HTTP and HTTPS.  So you can&#8217;t open a socket for your  connection either.  These limitations won&#8217;t be changing anytime soon as GAE is designed to be like that for  security reasons.  Basically, there&#8217;s no way for your web application on GAE to  connect with your broker for trading.  So much for that idea.</p>
<h2>For Discretionary Trading</h2>
<p>Things look brighter for discretionary trading though.  A big bonus with using Google App Engine is that it supports the Google Finance API.  Google Finance offers free real-time stock quotes.  Combine it with the programming capability of the Google App Engine and you have yourself a free number cruncher in the cloud.  However, GAE is definitely no match for your personal computer, so why would you go through all that trouble?</p>
<p>One possible scenario in which this could be useful is for traders that is often on the road or traders such as myself in which we have a day job.  In that case, you can set you quant analytics on GAE as a private web application and then you can access it as a web page anywhere on your mobile phone.</p>
<p>One of the obvious limitation with using GAE is that it has limited features for scientific computing.  For example, it doesn&#8217;t support Numpy in the Python SDK.  As such, I can&#8217;t imagine using GAE for anything more than simple technical analysis for now.  I certainly hope that GAE can include more powerful scientific computing capabilities in the near future.</p>
<p>Until then, I really can&#8217;t see Google App Engine offering much help aside from performing algorithmic tasks to help with your trading analysis.  Their open issues log does announce that <a href="http://code.google.com/p/googleappengine/issues/detail?id=190">Numpy is being integrated into GAE</a> though.   So that&#8217;s a great sign for things to come!  I am very hopeful of GAE&#8217;s  potential as a free cloud server to host my quant analytics on.  We&#8217;ll just have to wait for now.</p>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/4-automated-trading-development-platforms-for-beginner-to-advanced-traders/' rel='bookmark' title='Permanent Link: 4 automated trading development platforms for beginner to advanced traders'>4 automated trading development platforms for beginner to advanced traders</a></li>
<li><a href='http://www.quantisan.com/why-i-am-not-a-big-fan-of-mql4-or-trading-platform-scripting/' rel='bookmark' title='Permanent Link: Why I am not a big fan of MQL4 or trading platform scripting'>Why I am not a big fan of MQL4 or trading platform scripting</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/nV2I5Rj3L72QFFcWrLaBeXE9SZg/0/da"><img src="http://feedads.g.doubleclick.net/~a/nV2I5Rj3L72QFFcWrLaBeXE9SZg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nV2I5Rj3L72QFFcWrLaBeXE9SZg/1/da"><img src="http://feedads.g.doubleclick.net/~a/nV2I5Rj3L72QFFcWrLaBeXE9SZg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/4J_z_cSXdSk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/first-look-at-google-app-engine-for-automated-trading-and-quant-analysis-on-the-cloud/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/first-look-at-google-app-engine-for-automated-trading-and-quant-analysis-on-the-cloud/</feedburner:origLink></item>
		<item>
		<title>February 2010 Trading Performance Review</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/9usqmcAHF28/</link>
		<comments>http://www.quantisan.com/february-2010-trading-performance-review/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 13:14:06 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Self Assessment]]></category>
		<category><![CDATA[monthly review]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/?p=3357</guid>
		<description><![CDATA[I barely traded this month.  The total number of trades in February for my forex demo account is ten.  That&#8217;s far from my regular 150 &#8211; 250 trades a month.  Ever since my trading system was broken because of technical difficulties, I&#8217;ve changed my priorities in trading.  I spent most of my time in February [...]


Related posts:<ol><li><a href='http://www.quantisan.com/january-2010-trading-performance-review/' rel='bookmark' title='Permanent Link: January 2010 Trading Performance Review'>January 2010 Trading Performance Review</a></li>
<li><a href='http://www.quantisan.com/october-2009-trading-performance-review/' rel='bookmark' title='Permanent Link: October 2009 Trading Performance Review'>October 2009 Trading Performance Review</a></li>
<li><a href='http://www.quantisan.com/december-2009-trading-performance-review/' rel='bookmark' title='Permanent Link: December 2009 Trading Performance Review'>December 2009 Trading Performance Review</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I barely traded this month.  The total number of trades in February for my forex demo account is ten.  That&#8217;s far from my regular 150 &#8211; 250 trades a month.  Ever since my trading system was broken because of technical difficulties, I&#8217;ve <a href="/what-to-do-when-life-gets-in-your-way-of-trading/">changed my priorities</a> in trading.  I spent most of my time in February learning a new programming language to ramp up my quant and automated trading projects.</p>
<p>I also tried a few longer term trades this month.  The results haven&#8217;t been uplifting.  I am about breakeven by the end of the month with a net gain of &#8230;. $2 in a $5550 demo account.  As you can see, there&#8217;s really not much point in me continuing paper trading at this stage.  It is taking valuable time away from me to fix what&#8217;s broken so that I can use my previously profitable trading system again.  As such, I&#8217;m going to put near 100% of my effort to program a semi-automated trading system for the coming weeks, or probably months.</p>
<p>On another note.  Seeing that it is tax season here in Canada.  I thought about my tax situation and considered <a href="/questrade/">opening a Questrade TFSA trading account</a> (affiliate link) to legitimately <a href="/not-pay-trading-income-taxes-through-a-tfsa-trading-account/">avoid income taxes from trading</a>.  But after considering the <a href="/is-a-5000-questrade-tfsa-trading-account-cost-effective-part-1/">cost and benefit</a> of such a move, I concluded that <a href="/is-a-5000-questrade-tfsa-trading-account-cost-effective-%e2%80%93-part-4/">a TFSA trading account isn&#8217;t cost effective for me</a> at the moment.</p>
<p>As I&#8217;ve spent most of the month doing backend work, there isn&#8217;t very much to review for my trading this month.  So let&#8217;s just dive right into my statistics for the record.</p>
<h2>Performance Statistics</h2>
<p><strong>Monthly Metric    February    (January)</strong></p>
<p>Sarting Fund    $5,550.02<br />
End of Month Fund    $5,551.99</p>
<p>Total Net Profit    $1.97    (-$67.42)<br />
Gross Profit    $37    ($375)<br />
Gross Loss    -$35    (-$442)<br />
Profit Factor    1.06    (0.85)<br />
Net Profit %    0.04%    (-1.20%)<br />
Max. Drawdown %    0.50%    (3.95%)</p>
<p>Sterling Ratio    0.00    (-0.15)<br />
Excess Return    -0.02%    (-1.26%)<br />
SDev Return per Trade    0.15%    (0.11%)<br />
Kurtosis    -1.36    (1.85)<br />
Skewness    0.79    (1.01)</p>
<p>With only ten trades this month, I don&#8217;t have enough samples to make meaningful calculations for the above statistics.</p>
<p>95th Percentile P&amp;L    $12.55    ($12.23)<br />
5th Percentile P&amp;L    -$6.60    (-$8.43)<br />
Net Profit Mid 90% Only    -$4.75    (-$117.84)</p>
<p>Interestingly, I noticed that my typical top and bottom 5th percentile profit/loss are quite consistent.</p>
<p>Total # of Trades    10    (186)<br />
Percent Profitable    40.00%    (41.45%)<br />
# of Winning Trades    4    (63)<br />
# of Losing Trades    6    (89)<br />
# of Break-even Trades    0    (34)</p>
<p>My percent profitable trades seem to be near 40% month to month.  That&#8217;s good to know as it&#8217;s useful to calculate my statistical return expectancy as I&#8217;ve done in my <a href="/is-a-5000-questrade-tfsa-trading-account-cost-effective-%e2%80%93-part-3/">TFSA trading cost-benefit analysis</a>.</p>
<p>Average Trade Profit %    0.00%    (-0.01%)<br />
Average Winning %    0.17%    (0.11%)<br />
Average Losing %    -0.11%    (-0.09%)<br />
Ratio Win% / Loss%    1.59    (1.20)</p>
<p>By being more discriminating in my trades, I&#8217;ve effectively increased my win/loss ratio. That&#8217;s good.</p>
<p>Max. Conseq. Winners    3    (8)<br />
Max. Conseq. Losers    5    (20)<br />
Largest Winning Trade    $13.81    ($22.66)<br />
Largest Losing Trade    -$7.08    (-$14.30)</p>
<p>Avg. Time Held [hrs]    1.67    (0.73)<br />
Avg. max. unrealized profit/ Realized profit        (11.59)</p>
<h2>Goal for March</h2>
<p>My goal from January is <a href="/january-2010-trading-performance-review/">to learn MQL4</a>.  I changed my plan since then due <a href="/why-i-am-not-a-big-fan-of-mql4-or-trading-platform-scripting/">my lack of faith with using a proprietary scripting language</a>.  I learned Python programming this month and is now learning to use specialized libraries to serve my trading needs.</p>
<p>My goal for March is to write a rudimentary data analysis and visualization program for historical forex data.</p>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/january-2010-trading-performance-review/' rel='bookmark' title='Permanent Link: January 2010 Trading Performance Review'>January 2010 Trading Performance Review</a></li>
<li><a href='http://www.quantisan.com/october-2009-trading-performance-review/' rel='bookmark' title='Permanent Link: October 2009 Trading Performance Review'>October 2009 Trading Performance Review</a></li>
<li><a href='http://www.quantisan.com/december-2009-trading-performance-review/' rel='bookmark' title='Permanent Link: December 2009 Trading Performance Review'>December 2009 Trading Performance Review</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/01-qJxzd0hIJ9J4a_syBvIZ5ta4/0/da"><img src="http://feedads.g.doubleclick.net/~a/01-qJxzd0hIJ9J4a_syBvIZ5ta4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/01-qJxzd0hIJ9J4a_syBvIZ5ta4/1/da"><img src="http://feedads.g.doubleclick.net/~a/01-qJxzd0hIJ9J4a_syBvIZ5ta4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/9usqmcAHF28" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/february-2010-trading-performance-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/february-2010-trading-performance-review/</feedburner:origLink></item>
		<item>
		<title>40 monitors, 6 computers, 1 day trader</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/ZYx89GUoSuE/</link>
		<comments>http://www.quantisan.com/40-monitors-6-computers-1-day-trader/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 15:06:50 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[trading computer]]></category>
		<category><![CDATA[workspace]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/?p=3350</guid>
		<description><![CDATA[I&#8217;m still recuperating from my food poisoning from last week.  Meanwhile, I came across this unbelievable trading workspace showcase from LifeHacker.

I have no idea how this trader can juggle 40 monitors during his day trading.  I am satisfied with just one 24&#8243; monitor on my desk.  However, I&#8217;m neither a day trader or a professional [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still recuperating from my food poisoning from last week.  Meanwhile, I came across this unbelievable <a href="http://lifehacker.com/5481921/the-day-traders-paradise">trading workspace showcase</a> from LifeHacker.</p>
<p style="text-align: left;">
<div class="wp-caption aligncenter" style="width: 580px"><a href="http://cache.quantisan.com/images/2010/40montradingdesk.jpg"><img class=" " src="http://cache.quantisan.com/images/2010/40montradingdesk.jpg" alt="" width="570" /></a><p class="wp-caption-text">40 monitors trading workspace</p></div>
<p style="text-align: left;">I have no idea how this trader can juggle 40 monitors during his day trading.  I am satisfied with just one 24&#8243; monitor on my desk.  However, I&#8217;m neither a day trader or a professional trader, so perhaps I&#8217;m missing something?</p>
<p style="text-align: left;">What do you think of this 40 monitors setup?  A dream come true or a charts nightmare?</p>
<p style="text-align: left;">


<p>No related posts.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/7-irttXVx-7PySgH5euz-3JcxLY/0/da"><img src="http://feedads.g.doubleclick.net/~a/7-irttXVx-7PySgH5euz-3JcxLY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7-irttXVx-7PySgH5euz-3JcxLY/1/da"><img src="http://feedads.g.doubleclick.net/~a/7-irttXVx-7PySgH5euz-3JcxLY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/ZYx89GUoSuE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/40-monitors-6-computers-1-day-trader/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/40-monitors-6-computers-1-day-trader/</feedburner:origLink></item>
		<item>
		<title>Twitter Weekly Summary for 2010-02-28</title>
		<link>http://feedproxy.google.com/~r/Quantisan/~3/AYLS1F17hvs/</link>
		<comments>http://www.quantisan.com/twitter-weekly-summary-for-2010-02-28/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 04:50:00 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.quantisan.com/twitter-weekly-summary-for-2010-02-28/</guid>
		<description><![CDATA[
Happiness ain&#39;t all it&#39;s cracked up to be &#8211; life &#8211; 26 February 2010 &#8211; New Scientist: http://bit.ly/bfXdQ1 via @addthis #
RT @fx_13: Trade Like a Dealer: (And Avoid Death by a Thousand Stops) http://bit.ly/c1qTfM #
RT @TechCrunch John Doerr On Bloom Energy Launch: “This Is Like The Google IPO” http://tcrn.ch/9Pda1Q #
RT @inegoveritas: How do you say [...]


Related posts:<ol><li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-02-06/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-02-06'>Twitter Weekly Summary for 2010-02-06</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-01-29/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-01-29'>Twitter Weekly Summary for 2010-01-29</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-01-16/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-01-16'>Twitter Weekly Summary for 2010-01-16</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Happiness ain&#39;t all it&#39;s cracked up to be &#8211; life &#8211; 26 February 2010 &#8211; New Scientist: <a href="http://bit.ly/bfXdQ1" rel="nofollow">http://bit.ly/bfXdQ1</a> via @<a href="http://twitter.com/addthis" class="aktt_username">addthis</a> <a href="http://twitter.com/Quantisan/statuses/9760672180" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/fx_13" class="aktt_username">fx_13</a>: Trade Like a Dealer: (And Avoid Death by a Thousand Stops) <a href="http://bit.ly/c1qTfM" rel="nofollow">http://bit.ly/c1qTfM</a> <a href="http://twitter.com/Quantisan/statuses/9730570546" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TechCrunch" class="aktt_username">TechCrunch</a> John Doerr On Bloom Energy Launch: “This Is Like The Google IPO” <a href="http://tcrn.ch/9Pda1Q" rel="nofollow">http://tcrn.ch/9Pda1Q</a> <a href="http://twitter.com/Quantisan/statuses/9702615163" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/inegoveritas" class="aktt_username">inegoveritas</a>: How do you say &quot;Chainsaw Massacre&quot; in Russian? @<a href="http://twitter.com/mbusigin" class="aktt_username">mbusigin</a>  <img src='http://www.quantisan.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  #<a href="http://search.twitter.com/search?q=%23canadavsrussia" class="aktt_hashtag">canadavsrussia</a> <a href="http://twitter.com/Quantisan/statuses/9606040932" class="aktt_tweet_time">#</a></li>
<li>Wired: How Google&#8217;s Algorithm Rules the Web <a href="http://shar.es/mmEqR" rel="nofollow">http://shar.es/mmEqR</a> via @<a href="http://twitter.com/sharethis" class="aktt_username">sharethis</a> <a href="http://twitter.com/Quantisan/statuses/9558892135" class="aktt_tweet_time">#</a></li>
<li>I am really resisting temptation to trade more these days.  But I need to focus on programming to crunch some price data&#8230; <a href="http://twitter.com/Quantisan/statuses/9558507455" class="aktt_tweet_time">#</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-02-06/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-02-06'>Twitter Weekly Summary for 2010-02-06</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-01-29/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-01-29'>Twitter Weekly Summary for 2010-01-29</a></li>
<li><a href='http://www.quantisan.com/twitter-weekly-summary-for-2010-01-16/' rel='bookmark' title='Permanent Link: Twitter Weekly Summary for 2010-01-16'>Twitter Weekly Summary for 2010-01-16</a></li>
</ol></p>
<p><a href="http://feedads.g.doubleclick.net/~a/hntZ-CC9fWx4htp2Yc34jqG7ZCE/0/da"><img src="http://feedads.g.doubleclick.net/~a/hntZ-CC9fWx4htp2Yc34jqG7ZCE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hntZ-CC9fWx4htp2Yc34jqG7ZCE/1/da"><img src="http://feedads.g.doubleclick.net/~a/hntZ-CC9fWx4htp2Yc34jqG7ZCE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Quantisan/~4/AYLS1F17hvs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.quantisan.com/twitter-weekly-summary-for-2010-02-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.quantisan.com/twitter-weekly-summary-for-2010-02-28/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.975 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-11 08:48:00 -->
