<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Trainee Trader &#187; Misc</title>
	<atom:link href="http://www.traineetrader.com/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.traineetrader.com</link>
	<description>Trainee Trader provides articles and tutorials related to Forex, Derivatives, Equities and Futures markets.</description>
	<lastBuildDate>Thu, 22 Dec 2011 05:16:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Simulated Random Walk in MATLAB</title>
		<link>http://www.traineetrader.com/simulated-random-walk-in-matlab/</link>
		<comments>http://www.traineetrader.com/simulated-random-walk-in-matlab/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 09:11:38 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[Matlab]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Quantitative Trading]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[m file]]></category>
		<category><![CDATA[Random Walk]]></category>
		<category><![CDATA[Simulation]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1580</guid>
		<description><![CDATA[<p><img width="390" height="249" src="http://www.traineetrader.com/wp-content/uploads/2011/09/simRandomWalk.jpg" class="attachment-featured-image wp-post-image" alt="simRandomWalk" title="simRandomWalk" /></p><br />Put in simple terms, a Random Walk basically involves taking successive random steps and tracing the trajectory. I adapted the example from part one of Wilmott on Quantitative Finance and wrote a quick MATLAB script to simulate a simple random walk. Basically flip a coin if it is heads multiply the equity seed by 1.01 [...]]]></description>
			<content:encoded><![CDATA[<p><img width="390" height="249" src="http://www.traineetrader.com/wp-content/uploads/2011/09/simRandomWalk.jpg" class="attachment-featured-image wp-post-image" alt="simRandomWalk" title="simRandomWalk" /></p><br /><p>Put in simple terms, a Random Walk basically involves taking successive random steps and tracing the trajectory. I adapted the example from part one of Wilmott on Quantitative Finance and wrote a quick MATLAB script to simulate a simple random walk. Basically flip a coin if it is heads multiply the equity seed by 1.01 and if its tails multiply by 0.99.</p>
<h3><span id="more-1580"></span>Results</h3>
<p>The graphs below show succesive runs of the script. I simulated 10,000 coin tosses in each test.</p>
<p><strong>Sim one</strong>: You flipped 5069 heads &amp; 4931 tails</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-1585" title="Random Walk One" src="http://www.traineetrader.com/wp-content/uploads/2011/09/sim1-1024x555.png" alt="Random Walk One" width="620" height="336" /></p>
<p><strong>Sim Two</strong>: You flipped 4946 heads &amp; 5054 tails</p>
<p style="text-align: left;"><img class="aligncenter size-large wp-image-1587" title="Random Walk 2 MATLAB" src="http://www.traineetrader.com/wp-content/uploads/2011/09/sim2-1024x555.png" alt="Random Walk 2 MATLAB" width="620" height="336" /><strong>Sim Three</strong>: You flipped 5026 heads &amp; 4974 tails</p>
<p style="text-align: left;"><img class="aligncenter size-large wp-image-1588" title="Random Walk 3 MATLAB" src="http://www.traineetrader.com/wp-content/uploads/2011/09/sim3-1024x555.png" alt="Random Walk 3 MATLAB" width="620" height="336" /><strong>Sim Four</strong>: You flipped 5042 heads &amp; 4958 tails</p>
<h3 style="text-align: left;"><img class="aligncenter size-large wp-image-1589" title="Random Walk 4 MATLAB" src="http://www.traineetrader.com/wp-content/uploads/2011/09/sim4-1024x555.png" alt="Random Walk 4 MATLAB" width="620" height="336" />MATLAB Code</h3>
<p style="text-align: left;">Writing the code in MATLAB is very straightforward I wrote the code in less then five minutes so it is a bit rough around the edges. I probably could refactor it but it does the job.</p>
<pre class="brush: matlab">
% Simple Simulated Random Walk Adapted
% from part 1 Paul Wilmott on Quant Fin

% create matrix with random int either 1 or 2
randMat = randi(2,10000,1);
randEquity = [1:10000];

headCount = 0;
tailCount = 0;
equitySeed = 100.00;

for i=1:10000
    if randMat(i)==1
        % we flipped a heads
        headCount = headCount + 1;
        equitySeed = 1.01 * equitySeed;
        randEquity(i) = equitySeed;
    else
        % must have flipped tails
        tailCount = tailCount + 1;
        equitySeed = 0.99 * equitySeed;
        randEquity(i) = equitySeed;
    end
end

fprintf('You flipped %i heads &#038; %i tails\n', headCount, tailCount);
plot(randEquity);
title('\bf \fontname{Arial} \fontsize{16}Simulated Random Walk');
xlabel('\bf \fontname{Arial} \fontsize{12}Number of Coin Tosses');
ylabel('\bf \fontname{Arial} \fontsize{12}Price in ($)');

% clean-up
clear equitySeed headCount tailCount randMat i;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/simulated-random-walk-in-matlab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back at My Trading Desk Ready for Action</title>
		<link>http://www.traineetrader.com/back-at-my-trading-desk-ready-for-action/</link>
		<comments>http://www.traineetrader.com/back-at-my-trading-desk-ready-for-action/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 05:49:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Return]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1541</guid>
		<description><![CDATA[<p><img width="640" height="341" src="http://www.traineetrader.com/wp-content/uploads/2011/09/aud.png" class="attachment-featured-image wp-post-image" alt="aud" title="aud" /></p><br />I am coming back after three months fully refreshed and ready to take advantage of some crazy market conditions. Thanks for all the emails and messages. I am slowley catching up only 3k more emails to read 1000 comments to go through Akismet prevented 80,000 spam message from hitting the blog. We also have a [...]]]></description>
			<content:encoded><![CDATA[<p><img width="640" height="341" src="http://www.traineetrader.com/wp-content/uploads/2011/09/aud.png" class="attachment-featured-image wp-post-image" alt="aud" title="aud" /></p><br /><p>I am coming back after three months fully refreshed and ready to take advantage of some crazy market conditions. Thanks for all the emails and messages. I am slowley catching up only 3k more emails to read 1000 comments to go through Akismet prevented 80,000 spam message from hitting the blog. We also have a shiny new HTML5 theme that  makes the site much easier to read.  In the upcoming posts I will document my transition MetaTrader5 and have a look at MQL5.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/back-at-my-trading-desk-ready-for-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eSignal 11 Creating your Own Watch List &amp; Ordering by Sector</title>
		<link>http://www.traineetrader.com/esignal-11-creating-your-own-watch-list-ordering-by-sector/</link>
		<comments>http://www.traineetrader.com/esignal-11-creating-your-own-watch-list-ordering-by-sector/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 02:02:20 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[ASX]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[eSignal]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Quantitative Trading]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[eSignal 11]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[GCIS]]></category>
		<category><![CDATA[Watch List]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1460</guid>
		<description><![CDATA[eSignal 11 is the newest cab of the rank from Interactive Data, it is a complete rewrite of the famous eSignal software. I will write a full review in an upcoming article. You can read my review of the older version of eSignal on demand, back in October 2009. As I work with a lot [...]]]></description>
			<content:encoded><![CDATA[<p>eSignal 11 is the newest cab of the rank from Interactive Data, it is a complete rewrite of the famous eSignal software. I will write a full review in an upcoming article. You can read my review of the older version of <a href="http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/" target="_blank">eSignal on demand</a>, back in October 2009. As I work with a lot of financial data I like to keep things organized and my workflow as simple as possible. With eSignal data acquisition, testing and analysis it couldn&#8217;t be more simple.</p>
<h4>Getting The Symbol List&#8217;s For ASX Listed Companies</h4>
<p>The first step in the process is to download the symbol lists from the<a href="http://www.asx.com.au/asx/research/listedCompanies.do" target="_blank"> ASX website</a>. The ASX listed companies list is updated daily at 12Am. The easiest way to get the data is to download the CSV file, then we can work with it in Excel. As you can see in the image below there are three columns of data: Company Name, ASX Code and GICS Industry Group.</p>
<p style="text-align: center;"><img class="size-full wp-image-1462 aligncenter" title="Excel-csv-data" src="http://www.traineetrader.com/wp-content/uploads/2011/02/Excel-csv-data.png" alt="" width="495" height="139" /></p>
<p style="text-align: left;">If you are unfamiliar with the GCIS or Global Industry Classification Standard you can read up on it <a href="http://en.wikipedia.org/wiki/Global_Industry_Classification_Standard" target="_blank">here</a>. Basically it is just the industry group assigned to a specific company by Standard and Poor&#8217;s.</p>
<h4>Converting and Sorting the Symbol List</h4>
<p style="text-align: left;">eSignal requires the symbol code and then an exchange code to be added on the end. So for example BHP in eSignal would have the code BHP-ASX. There is over 2000 companies that we wish to change the code for so we need to automate the process. In Excel this can be done with a simple formula and a fill. What we want to do is take the text string in column B of our spreed-sheet and add the text string &#8220;-ASX&#8221; to the end of the stock code. To do this we use the CONCATENATE function, this function takes n text strings and adds them together to form a new string.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-1465" title="Excel-data-concatenate" src="http://www.traineetrader.com/wp-content/uploads/2011/02/Excel-data-concatenate.png" alt="" width="494" height="57" />As you can see from the above image in cell D1 we simply type: =CONCATENATE(B4, &#8220;-ASX&#8221;) and we fill down for the entire range and we now have our eSignal symbols ready for export. In order to export our symbol list by GCIS sector we need to custom sort the data first. Simply go to Sort -&gt; Custom Sort and then sort by GCIS Industry Group as shown below.</p>
<h4><img class="aligncenter size-full wp-image-1466" title="custom-sort-symbols" src="http://www.traineetrader.com/wp-content/uploads/2011/02/custom-sort-symbols.png" alt="" width="501" height="231" />Creating a New Page in eSignal 11 and Adding a Watch List</h4>
<p style="text-align: left;">The first step is to create a new page in eSignal, to do this go to eSignal menu -&gt; New Page or CTRL + SHIFT + N.</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2011/02/eSignal-NewPage.png"><img class="aligncenter size-full wp-image-1467" title="eSignal-NewPage" src="http://www.traineetrader.com/wp-content/uploads/2011/02/eSignal-NewPage.png" alt="" width="610" height="545" /></a></p>
<p style="text-align: left;">In the New Window template select Watch List. This will add a blank watch list to the page. After the Watch List has been added it is a good idea to save the page. You can do this be right clicking on the page tab and selecting save.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-1469" title="eSignal11-NewPage-watch-list" src="http://www.traineetrader.com/wp-content/uploads/2011/02/eSignal11-NewPage-watch-list.png" alt="" width="519" height="301" />For each GCIS group I will create a new list. To do this simply click on the gear icon to the right of the blank symbol list, now rename the list to the appropriate GCIS group.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1470" title="eSignal11-NewPage-watch-list-rename" src="http://www.traineetrader.com/wp-content/uploads/2011/02/eSignal11-NewPage-watch-list-rename.png" alt="" width="360" height="179" /></p>
<p style="text-align: left;">Copy and paste the group symbols from the Excel spreed-sheet, save the list rinse and repeat. The image below shows my ASX sorted GCIS watch lists.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2011/02/eSignal-NewPage-asx-data.png"><img class="aligncenter size-full wp-image-1471" title="eSignal-NewPage-asx-data" src="http://www.traineetrader.com/wp-content/uploads/2011/02/eSignal-NewPage-asx-data.png" alt="" width="608" height="541" /></a>In total there are 21 separate lists with 2227 symbols.</p>
<p style="text-align: left;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/esignal-11-creating-your-own-watch-list-ordering-by-sector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Numerical Computing Environments for Traders</title>
		<link>http://www.traineetrader.com/numerical-computing-environments-for-traders/</link>
		<comments>http://www.traineetrader.com/numerical-computing-environments-for-traders/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 04:52:07 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Matlab]]></category>
		<category><![CDATA[Octave]]></category>
		<category><![CDATA[Quant]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Scilab]]></category>
		<category><![CDATA[SciPy]]></category>
		<category><![CDATA[Trading]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1271</guid>
		<description><![CDATA[Microsoft Excel is an excellent tool and you will be able to accomplish most of your work in it. However there will come a time when you need to test a complex model, run a large simulation or work with a huge data set that would grind Excel to a halt. Numerical Computing Environments When [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Excel is an excellent tool and you will be able to accomplish most of your work in it. However there will come a time when you need to test a complex model, run a large simulation or work with a huge data set that would grind Excel to a halt.</p>
<h2>Numerical Computing Environments</h2>
<p>When all is said and done there are 5 main options that each have a large community base. You should try out each environment to see which works best for you and is most cost effective. I have found a happy medium using SciPy and Matlab. I will however be testing out SciLab over the next few weeks.</p>
<h2>Matlab</h2>
<p style="text-align: center;"><a href="http://www.mathworks.com/products/matlab/"><img class="aligncenter size-full wp-image-1280" title="matlab" src="http://www.traineetrader.com/wp-content/uploads/2011/01/matlab.jpg" alt="" width="500" height="559" /></a></p>
<p>Matlab is the &#8220;Big Daddy&#8221; or the King of Numerical computing environments. I don&#8217;t think I really need to add much more. It does pretty much everything and you can extend it with .m code, however you need deep pockets.</p>
<h2>Scilab</h2>
<p style="text-align: center;"><a href="http://www.scilab.org/"><img class="aligncenter size-full wp-image-1277" title="scilab" src="http://www.traineetrader.com/wp-content/uploads/2011/01/scilab.jpg" alt="Scilab Numerical Computing" width="500" height="383" /></a></p>
<p style="text-align: left;"><a href="http://www.scilab.org/" target="_blank">Scilab </a>provides features similar to Matlab and has a built-in Matlab translator. Scilab comes in a complete package and is easy to setup and run. Scilab also has a code editor and allows for C++ code integration.</p>
<h2>Octave</h2>
<p style="text-align: center;"><a href="http://www.gnu.org/software/octave/"><img class="aligncenter size-full wp-image-1278" title="octave" src="http://www.traineetrader.com/wp-content/uploads/2011/01/octave.jpg" alt="" width="500" height="375" /></a></p>
<p><a href="http://www.gnu.org/software/octave/" target="_blank">Octave</a> is essentially an open source Matlab clone. You will have to port your code between Matlab and octave as they have subtle differences and Octave has no IDE.</p>
<h2>SciPy</h2>
<p style="text-align: center;"><a href="http://www.scipy.org/"><img class="aligncenter size-full wp-image-1279" title="scipy" src="http://www.traineetrader.com/wp-content/uploads/2011/01/scipy.jpg" alt="" width="500" height="266" /></a></p>
<p><span style="font-weight: normal;"><a href="http://www.scipy.org/" target="_blank">SciPy</a> + numpy + matplotlib provides modules for plotting, large datasets, statistics, optimisation, numerical integration, linear algebra, Fourier transforms, signal processing, image processing, ODE solvers, special functions and of course all the power and simplicity of the python. This is the option I have gone with.</span></p>
<h2><span style="font-weight: normal;">R </span></h2>
<p><a href="http://www.r-project.org/"><img class="aligncenter size-full wp-image-1281" title="R" src="http://www.traineetrader.com/wp-content/uploads/2011/01/R.jpg" alt="" width="500" height="334" /></a></p>
<p><span style="font-weight: normal;"><a href="http://www.r-project.org/" target="_blank">R </a>is a software environment for statistical computing and graphics. R is a very powerful yet arcane programming language. I would only recommend for people comfortable programming. I have it on the computer but have as yet not put in the time to learn R.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/numerical-computing-environments-for-traders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Beauty of Simplicity</title>
		<link>http://www.traineetrader.com/the-beauty-of-simplicity/</link>
		<comments>http://www.traineetrader.com/the-beauty-of-simplicity/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 02:13:13 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Reading]]></category>
		<category><![CDATA[Simple]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1254</guid>
		<description><![CDATA[When I made the decision to continue with Trainee Trader I knew I had to update the theme. The old theme was a professionally designed theme that I wasn’t happy with at all. I decided that I wanted to be able to easily customize the theme without having to interface with the WordPress API. After [...]]]></description>
			<content:encoded><![CDATA[<p>When I made the decision to continue with Trainee Trader I knew I had to update the theme. The old theme was a professionally designed theme that I wasn’t happy with at all. I decided that I wanted to be able to easily customize the theme without having to interface with the WordPress API. After some research I narrowed my choice down to <a href="http://www.traineetrader.com/products/HeadwayThemes/" target="_blank">Headway </a>or <a href="http://www.traineetrader.com/products/DiyThemes/" target="_blank">Thesis </a>theme.</p>
<h2>Why I Went with Headway Theme</h2>
<p>Headway offers extreme customisation and yet it is very simple for people to use (even non-code monkeys). Headway allows you to design visually via a visual editor and gives you a lot of flexibility while keeping things simple. Headway also has professional level SEO tools built right into the theme design. At the moment I am finalising the exact layout I want for the website and once I have sorted that out offline I simply upload the skin and instant customisation. Right now I am running the pretty much default theme as you can see below. It is clean easy to read and navigate and a great placeholder while I finalise Trainee Trader 3.0.</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/products/HeadwayThemes/"><img class="aligncenter size-full wp-image-1255" title="Headway Default" src="http://www.traineetrader.com/wp-content/uploads/2011/01/TTCurrent.jpg" alt="Headway themes" width="500" height="284" /></a></p>
<p>The image below shows Headways in post SEO options and a mockup of how google will display the search engine listing.</p>
<h2><a href="http://www.traineetrader.com/products/HeadwayThemes/"><img class="aligncenter size-full wp-image-1256" title="seo" src="http://www.traineetrader.com/wp-content/uploads/2011/01/seo.jpg" alt="Headway SEO Options" width="500" height="515" /></a>Simplify Your Workflow</h2>
<p style="text-align: left;">As a programmer I am always looking for the simplest solution for a problem. I am sure you have heard this Einstein quote a million times but I have to include it:</p>
<blockquote>
<p style="text-align: left;">“Everything should be made as simple as possible, but no simpler.”</p>
</blockquote>
<p style="text-align: left;">I am really trying to apply this principle to my everyday workflow. I have found since I switched to Mac OS X operating system that getting things done on the computer has been a lot more simple. I still run Windows 7 however I have installed that on my bootcamp portion and only use it if I absolutely have to.</p>
<h2>Two Software Applications Everybody Should Use</h2>
<p style="text-align: left;"><a href="http://www.evernote.com/" target="_blank">Evernote</a> and <a href="http://www.traineetrader.com/products/DropBox/" target="_blank">Dropbox</a> allow me to store and sync data with multiple computers and handheld devices. <a href="http://www.traineetrader.com/products/DropBox/" target="_blank">Dropbox</a> allows for the storage and syncing between multiple devices and backing up online. The image below shows the devices I have syncing data so I never find myself in a situation where I am transfer files via USB.Best Of all DropBox gives you 2 gig of storage space free.</p>
<p style="text-align: left;"><a href="http://www.traineetrader.com/products/DropBox/"><img class="aligncenter size-full wp-image-1258" title="myDropBox" src="http://www.traineetrader.com/wp-content/uploads/2011/01/myDropBox.png" alt="My DropBox Layout" width="398" height="341" /></a><a href="http://www.evernote.com/" target="_blank">Evernote</a> allows you to take notes pictures and recordings clip websites and keeps them organised for you online and allows you to seamless retrieve them. The free accounts are somewhat limited as the only allow for 60mb transfer. However if you use this simply for text notes with the occasional drawing then you shouldn&#8217;t have an issue.</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/the-beauty-of-simplicity/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Back by Popular Demand-2011 The Return of Trainee Trader</title>
		<link>http://www.traineetrader.com/back-by-popular-demand-2011-the-return-of-trainee-trader/</link>
		<comments>http://www.traineetrader.com/back-by-popular-demand-2011-the-return-of-trainee-trader/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 11:07:00 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blog Post]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[2011]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1245</guid>
		<description><![CDATA[We are now six days into the New Year and I have finalized my plans for the year ahead. This year I am dedicating myself full time to trade system design, testing and implementation.  I will probably be doing a bit of consulting work to on the side. This year I need a razor sharp [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.traineetrader.com/wp-content/uploads/2011/01/oilPump.jpg"><img class="aligncenter size-full wp-image-1247" title="Oil Pumps" src="http://www.traineetrader.com/wp-content/uploads/2011/01/oilPump.jpg" alt="" width="500" height="328" /></a>We are now six days into the New Year and I have finalized my plans for the year ahead. This year I am dedicating myself full time to trade system design, testing and implementation.  I will probably be doing a bit of consulting work to on the side. This year I need a razor sharp focus to ensure that I achieve all of my goals.</p>
<h2>Reflections on 2010</h2>
<p>2010 was a less then memorable year for me, as most of you know my health has been the thorn in my side. I completed my graduate diploma in Financial Planning so I can now legally give personal financial advice. However anything I write on TraineeTrader.com is not intended to be taken as advice and is intended for entertainment and educational purposes only. Most of my year has been spent in and out of hospital and at doctor’s appointments. I did manage to do some iPhone development and started to do some OS X system development, which was fun. I also did some work with 3d graphics pipeline and Houdini.</p>
<h2>2011 The Year Ahead</h2>
<p>This year I will be doing a lot of trade system research and design. I don’t intend to publish my trading method, however I will write about the process. I will be going back to basics and starting from scratch, which will give readers a chance to follow along and develop there own trading system. I will also post more non-trading and technical articles.</p>
<h2>Fat Fingers and Fat Traders</h2>
<p style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2011/01/junkFood.jpg"><img class="aligncenter size-full wp-image-1249" title="Silhouette of cheese burger and summer garden vegetables" src="http://www.traineetrader.com/wp-content/uploads/2011/01/junkFood.jpg" alt="" width="500" height="384" /></a></p>
<p>This year it is also time to shed some excess kilos and get back in shape. In sedentary white-collar jobs it is essential to have an exercise or training plan. At the moment I am reading the four-hour body by Tim Ferris and it has been quite an interesting read so far.</p>
<h2>Goals</h2>
<ul>
<li>$50k after tax income from trading</li>
<li>$75-$100k after tax income from consulting and other business endeavours.</li>
<li>Be rolled for $5-$10 2-7 Triple Draw by the end of the year.</li>
<li>Change my body composition and lose 10kg of fat or 22 pounds for my non –metric system friends.</li>
</ul>
<p>These goals will not be a walk in the park but with some hard work and perseverance I will get there.</p>
<p>Follow me on this journey.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/back-by-popular-demand-2011-the-return-of-trainee-trader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MetaTrader Indicator Design: Spread &amp; Magnified Price</title>
		<link>http://www.traineetrader.com/metatrader-indicator-design-spread-magnified-price/</link>
		<comments>http://www.traineetrader.com/metatrader-indicator-design-spread-magnified-price/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 07:04:08 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Quantitative Trading]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[Indicator]]></category>
		<category><![CDATA[MQ4]]></category>
		<category><![CDATA[MT4]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1209</guid>
		<description><![CDATA[I have written a very simple indicator for MetaTrader that shows a magnified version of the current price. For this indicator I wanted to show the fractional pip value with less emphasis. I also wanted to be able to display the current spread, so it is easily viewable from the chart window. I have made [...]]]></description>
			<content:encoded><![CDATA[<p>I have written a very simple indicator for MetaTrader that shows a magnified version of the current price. For this indicator I wanted to show the fractional pip value with less emphasis.</p>
<p>I also wanted to be able to display the current spread, so it is easily viewable from the chart window.</p>
<p>I have made the following varibles modifible when attaching the indicator to the chart:<br />
<strong> fontColor</strong> &#8211; This is the colour of the price display if bidAsk=&#8221;False&#8221;.<br />
<strong> spreadColor</strong>- This is the colour of the spread display.<br />
<strong> fontSize</strong> &#8211; This is the size of the bid and spread prices.<br />
<strong> corner</strong>- This controls which corner you want your price and spread detail displayed in.<br />
<strong> bidAskColor</strong>- This is set to true by default, if you wish to display solid colour only set to false.</p>
<p>Below is a screenshot of SpreadPriceInd.mq4 in action:</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/SpreadPriceInd.png"><img class="aligncenter size-large wp-image-1216" title="SpreadPriceInd" src="http://www.traineetrader.com/wp-content/uploads/2010/09/SpreadPriceInd-1024x516.png" alt="mt4 indicator SpreadPric.mq4" width="614" height="310" /></a></p>
<p>The source code for the indicator is shown below:</p>
<pre class="brush: cpp">//+------------------------------------------------------------------+
//|                                               SpreadPriceInd.mq4 |
//|                                  Copyright © 2010, TraineeTrader |
//|                                     http://www.traineetrader.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2010, TraineeTrader"
#property link      "http://www.traineetrader.com"

#property indicator_chart_window
   // usr mod vars
   extern color     fontColor = Yellow;
   extern color     spreadColor = Blue;
   extern int       fontSize=24;
   extern string    font="Arial";
   extern int       corner=1;
   extern int       diffDig = 10;
   extern bool      bidAskColor = True;

   double           prevPrice; // easier if global

int init()
  {
   return(0);
  }

int deinit()
  {
   //kill chart objects
   ObjectDelete("nonFracPrice");
   ObjectDelete("fracPrice");
   ObjectDelete("marketSpread");
   return(0);
  }

int start()
  {
   int xOffset = fontSize - 8; // for fractional pip offset
   string priceBase; 

   if (bidAskColor == True)
   // shown movements in price by color change
   {
    if (Bid &gt; prevPrice){ fontColor = LawnGreen; }
    else{ fontColor = Red; }
    prevPrice = Bid;
   }

   // Usually 5 or 3
   priceBase = DoubleToStr(Bid, Digits);
   int SLength = StringLen(priceBase);

   // Create chart objects
   ObjectCreate("nonFracPrice", OBJ_LABEL, 0, 0, 0);
   ObjectSetText("nonFracPrice", StringSubstr(priceBase, 0, SLength-1),
fontSize, font, fontColor);
   ObjectSet("nonFracPrice", OBJPROP_CORNER, corner);
   ObjectSet("nonFracPrice", OBJPROP_XDISTANCE, xOffset);
   ObjectSet("nonFracPrice", OBJPROP_YDISTANCE, 1);

   ObjectCreate("fracPrice", OBJ_LABEL, 0, 0, 0);
   ObjectSetText("fracPrice", StringSubstr(priceBase, SLength-1, 1),
 fontSize-diffDig, font, fontColor);
   ObjectSet("fracPrice", OBJPROP_CORNER, corner);
   ObjectSet("fracPrice", OBJPROP_XDISTANCE, 1);
   ObjectSet("fracPrice", OBJPROP_YDISTANCE, 1);

   ObjectCreate("marketSpread", OBJ_LABEL, 0, 0, 0);
   ObjectSetText("marketSpread", DoubleToStr(MarketInfo(Symbol(),
MODE_SPREAD)/10,2),fontSize, font, spreadColor);
   ObjectSet("marketSpread", OBJPROP_CORNER, corner);
   ObjectSet("marketSpread", OBJPROP_XDISTANCE, 1);
   ObjectSet("marketSpread", OBJPROP_YDISTANCE, 40);
   return(0);
  }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/metatrader-indicator-design-spread-magnified-price/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Has Timothy Sykes Turned to Scientology for His Stock Picks?</title>
		<link>http://www.traineetrader.com/timothy-sykes-stock-picks-scientology/</link>
		<comments>http://www.traineetrader.com/timothy-sykes-stock-picks-scientology/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 05:32:43 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[DVD]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Traders]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Timothy Sykes]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=899</guid>
		<description><![CDATA[It has been a while since I have visted Timothy Sykes website and I was a bit shocked when I did a google search and the following image results came up: As you can see the image on the very end looks to be Timothy Sykes addressing a congregation of Scientologists. After closer inspection however [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I have visted Timothy Sykes website and I  was a bit shocked when I did a google search and the following image results came up:</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/products/TimDVDS/"><img class="aligncenter size-full wp-image-900" title="Timothy Sykes Scientology?" src="http://www.traineetrader.com/wp-content/uploads/2010/03/TimScience.jpg" alt="Timothy Sykes Scientology?" width="475" height="115" /></a>As you can see the image on the very end looks to be Timothy Sykes addressing a congregation of Scientologists. After closer inspection however it is clear to see it is a Photoshop fake. So if Timothy Sykes does not have the divine power of Alien life-forms to pick stocks for him how does he do it?</p>
<h3>Timothy Sykes The King of Pump &amp; Dump&#8217;s</h3>
<p style="text-align: left;">I am not implying that <a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank">Timothy Sykes</a> promotes these garbage stocks, he merely identifies them. Most of the time he will short these stocks, occasionally he will ride them on the way up. If you want a more in depth statistical analysis of Tim&#8217;s trades check <a href="http://www.cxoadvisory.com/blog/reviews/blog1-26-10/" target="_blank">CXO&#8217;s blog</a> a summary of his findings are shown below:</p>
<blockquote><p>Notable characteristics of the balance of 295 trades are:</p>
<p>74% of the trades are profitable.</p>
<p>On a trade-weighted basis, the average net return per trade is 6.1%.</p>
<p>The standard deviation of trade returns is 13%.</p>
<p>On a dollar-weighted basis (derived from the trade data provided), the average net return per trade is about 4.0%. In other words, large trades tend to be less profitable than small trades.</p>
<p>The arithmetic (geometric) mean monthly net return of the underlying portfolio is 10.5% (10.3%).&#8221;</p></blockquote>
<p style="text-align: left;">His final summary shown below:</p>
<blockquote>
<p style="text-align: left;">&#8221; In summary, evidence from simple tests on available data supports a belief that Timothy Sykes can identify pump-and-dump patterns in real time with economically meaningful consistency, but scalability is multiply constrained such that his subscribers may not be able to mimic his trades reliably. Niche constraints may preclude exploitation by large traders, a large group of small traders and funds.&#8221;</p>
</blockquote>
<p style="text-align: left;">I have yet to go over the numbers myself but the conclusion does seem reasonable. In the past I have reviewed:</p>
<ul>
<li><a href="http://www.traineetrader.com/dvd-review-pennystocking-by-timothy-sykes/" target="_blank">DVD Review: PennyStocking by Timothy Sykes.</a></li>
<li><a href="http://www.traineetrader.com/timothy-sykes-pennystocking-part-deux-dvd-review/" target="_blank">Timothy Sykes PennyStocking Part Deux – DVD Review.</a></li>
<li><a href="http://www.traineetrader.com/timothy-sykes-dvd-tim-raw-review/" target="_blank">Timothy Sykes DVD – Tim Raw Review</a></li>
</ul>
<p style="text-align: left;">Overall I was happy with the material presented in these DVD&#8217;s however they left me wanting to investigate Tim&#8217;s trading tactics more and see if  they could be applied to the Australian market. Over the coming weeks I will be watching and taking notes on all of Tim&#8217;s new DVD&#8217;s and see if I can turn this knowledge into a tradable system. I will be watching the following DVD&#8217;s</p>
<ul>
<li>Shortstocking.</li>
<li>Tim Fundamentals I and II.</li>
<li>Learn level II.</li>
<li>TimTactics.</li>
<li>Best of Livestock.</li>
<li>Read SEC Filings.</li>
</ul>
<p>It is a lot of material to get through but if the previous <a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank">DVD&#8217;s </a>are anything to go by I am sure they will be entertaining. I will leave my final judgement till I have gone over all the material.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/timothy-sykes-stock-picks-scientology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista Applications I cant Live without</title>
		<link>http://www.traineetrader.com/windows-vista-applications-i-cant-live-without/</link>
		<comments>http://www.traineetrader.com/windows-vista-applications-i-cant-live-without/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 06:45:11 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/windows-vista-applications-i-cant-live-without/</guid>
		<description><![CDATA[After reformatting my hard drive and reinstalling Windows Vista Business Edition I have been left with a clean slate. I am left looking at a blank desktop it is not until I start trying to work on a project that I realise how many third party applications I have come to rely on so in [...]]]></description>
			<content:encoded><![CDATA[<p>After reformatting my hard drive and reinstalling Windows Vista Business Edition I have been left with a clean slate. I am left looking at a blank desktop it is not until I start trying to work on a project that I realise how many third party applications I have come to rely on so in this post I will go through them.</p>
<p><span style="font-size: x-small;"> </span></p>
<p><span style="font-size: x-small;"> </span></p>
<p><span style="font-size: medium;"><strong>Internet Tools</strong></span></p>
<ul>
<li><span style="font-size: x-small;"><strong>Firefox </strong><em>(Free)</em> – Open source web browser. <a href="http://www.mozilla.com/firefox/" target="_blank">Download Firefox</a>.</span></li>
<li><span style="font-size: x-small;"><strong>FlashGet</strong> <em>(Free)</em> – Free Download accelerator. <a href="http://www.flashget.com/index_en.htm" target="_blank">Download FlashGet.</a> </span></li>
<li><span style="font-size: x-small;"><strong>COMODO Firewall</strong> <em>(Free)</em></span> – Simple easy to use free firewall. <a href="http://personalfirewall.comodo.com/download_firewall.html" target="_blank">Download COMODO Firewall.</a></li>
<li><strong>Windows Live Writer</strong> <em>(Free)</em> – A excellent free tool to compose blog posts. <a href="http://download.live.com/writer" target="_blank">Download Live Writer.</a></li>
</ul>
<p><span style="font-size: x-small;"><strong> </strong></span></p>
<p><strong><span style="font-size: medium;">Trading Tools</span></strong></p>
<ul>
<li><span style="font-size: x-small;"><strong>Rapid Miner</strong> <em>(Free)</em> – Free data mining toolkit. <a href="http://rapid-i.com/content/view/26/84/" target="_blank">Download Rapid Miner.</a></span></li>
<li><span style="font-size: x-small;"><strong>QuantLib </strong><em>(Free)</em> – A free finance programming library. <a href="http://quantlib.org/download.shtml" target="_blank">Download QuantLib.</a> </span></li>
<li><span style="font-size: x-small;"><strong>Octave </strong><em>(Free)</em> – A free MATLAB implementation. <a href="http://www.gnu.org/software/octave/download.html" target="_blank">Download Octave.</a></span></li>
<li><span style="font-size: x-small;"><strong>MetaTrader</strong> <em>(Free)</em> – A free FOREX application. <a href="http://www.metaquotes.net/downloads" target="_blank">Download Metatrader.</a></span></li>
<li><span style="font-size: x-small;"><strong>Microsoft Visual Studio 2008 Profesional</strong> <em>(Commercial)</em> – Programming suite. <a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx" target="_blank">Visit Site.</a></span></li>
<li><span style="font-size: x-small;"><strong>Trader XL Pro</strong> <em>(Commercial) – </em>An all in one trading solution. <a href="http://www.regnow.com/trialware/download/Download_TXLe_-_6.1.20_-_trial.exe?item=4449-2&amp;affiliate=95164" target="_blank">Download Trial.</a></span></li>
<li><span style="font-size: x-small;"><strong>Microsft Excel 2007</strong> <em>(Commercial)</em> – A must have for any trader. <a href="http://office.microsoft.com/en-gb/excel/default.aspx" target="_blank">Visit Site.</a></span></li>
</ul>
<p><strong><span style="font-size: medium;">System Tools</span></strong></p>
<ul>
<li> <span style="font-size: x-small;"><strong>NotePad++</strong> <em>(Free)</em> – A free feature packed replacement for notepad. <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">Download Notepad++.</a></span></li>
<li><span style="font-size: x-small;"><strong>AVG antivirus</strong> <em>(Free/Commercial)</em> – Easy to use virus scanning solution. <a href="http://free.avg.com/download-avg-anti-virus-free-edition" target="_blank">Visit Site.</a></span></li>
<li><span style="font-size: x-small;"><strong>PDF Creator</strong> <em>(Free)</em> – Easily create PDF files from any application. <a href="http://sourceforge.net/projects/pdfcreator/" target="_blank">Download PDF Creator.</a></span></li>
<li><span style="font-size: x-small;"><strong>7-zip</strong> <em>(Free)</em> – Open any compressed file you should come across. <a href="http://www.7-zip.org/" target="_blank">Download 7-Zip.</a></span></li>
<li><span style="font-size: x-small;"><strong>Sync Toy</strong> <em>(Free)</em> – Backup or sync your files to a storage device. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E0FC1154-C975-4814-9649-CCE41AF06EB7&amp;displaylang=en" target="_blank">Download Sync Toy.</a></span></li>
<li><span style="font-size: x-small;"><strong>CCleaner </strong><em>(Free)</em> – Clean and optimize your system. <a href="http://www.ccleaner.com/download" target="_blank">Download CCleaner.</a></span></li>
<li><span style="font-size: x-small;"><strong>VirtualBox </strong><em>(Free)</em> – Create a sandbox for testing apps on production system. <a href="http://www.virtualbox.org/wiki/Downloads" target="_blank">Download VirtualBox.</a></span></li>
<li><span style="font-size: x-small;"><strong>KeePass</strong> <em>(Free)</em> – A simple tool for managing login credentials. <a href="http://keepass.info/download.html" target="_blank">Download KeePass.</a></span></li>
</ul>
<p><strong><span style="font-size: medium;">Image and Video Tools</span></strong></p>
<ul>
<li><span style="font-size: x-small;"><strong>Paint.Net</strong> <em>(Free)</em> – A free Image editing application. <a href="http://www.getpaint.net/download.html" target="_blank">Download Paint.Net.</a></span></li>
<li><span style="font-size: x-small;"><strong>IrfanView </strong><em>(Free)</em> – Open any image file. <a href="http://www.irfanview.com/" target="_blank">Download IrfanView.</a></span></li>
<li><span style="font-size: x-small;"><strong>VLC</strong> <em>(Free)</em> – Play any format video file. <a href="http://www.videolan.org/vlc/" target="_blank">Download VLC.</a></span></li>
</ul>
<p><strong><span style="font-size: medium;">Poker Tools</span></strong></p>
<ul>
<li><span style="font-size: x-small;"><strong>PokerStove</strong> <em>(Free)</em> – A free poker equity calculator. <a href="http://www.pokerstove.com/" target="_blank">Download PokerStove.</a></span></li>
<li><span style="font-size: x-small;"><strong>PokerHands </strong><em>(Still in Beta Testing Free)</em> – Good draw poker tracking software. <a href="http://www.cartridgesoftware.com/" target="_blank">Download PokerHands.</a></span></li>
<li><span style="font-size: x-small;"><strong>PokerProLabs Tools</strong> <em>(Commercial)</em> – A suite of useful tools. <a href="http://www.pokerprolabs.com/" target="_blank">Visit site.</a></span></li>
<li><span style="font-size: x-small;"><strong>Hold’em Manager</strong> <em>(Commercial)</em> Tracking software for hold’em. <a href="http://www.holdemmanager.net/download.html" target="_blank">Visit site.</a></span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/windows-vista-applications-i-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Money, Finance, Stock Market Links</title>
		<link>http://www.traineetrader.com/money-finance-stock-market-links/</link>
		<comments>http://www.traineetrader.com/money-finance-stock-market-links/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 23:55:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=476</guid>
		<description><![CDATA[R.I.P Adsense Referral Ads. Fireworks may be harder to get. 25 essentials for networking success. North Dakota Oil Rush. The Financial Wisdom from Fight Club. 3 ideas that are pushing the edge of science. The good the bad and the ugly of $7 Gas. The vicious cycle of staying up late. The problem with Banks. How to find stocks which [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.traineetrader.com/wp-content/uploads/2008/07/chain.jpg"><img class="alignright size-full wp-image-477" title="chain" src="http://www.traineetrader.com/wp-content/uploads/2008/07/chain.jpg" alt="" width="201" height="300" /></a>R.I.P Adsense Referral <a href="http://adsense.blogspot.com/2008/06/were-retiring-adsense-referrals.html" target="_blank">Ads</a>.</p>
<p>Fireworks may be harder to <a href="http://www.courant.com/business/hc-fireworks0701.art0jul01,0,2328413.story" target="_blank">get</a>.</p>
<p>25 essentials for networking <a href="http://www.dumblittleman.com/2008/06/25-absolute-essentials-for-networking.html" target="_blank">success</a>.</p>
<p>North Dakota Oil <a href="http://www.money.co.uk/article/1000787-third-of-county-to-make-a-million-on-north-dakota-oil-rush.htm" target="_blank">Rush</a>.</p>
<p>The Financial Wisdom from <a href="http://www.wisebread.com/an-important-financial-lesson-from-fight-club" target="_blank">Fight Club</a>.</p>
<p>3 ideas that are pushing the edge of <a href="http://discovermagazine.com/2008/jun/29-3-ideas-that-are-pushing-the-edge-of-science" target="_blank">science</a>.</p>
<p>The good the bad and the ugly of $7 <a href="http://earth2tech.com/2008/07/01/the-good-the-bad-the-ugly-of-7-gas/" target="_blank">Gas</a>.</p>
<p>The vicious cycle of staying up <a href="http://www.phdcomics.com/comics.php?f=1015" target="_blank">late</a>.</p>
<p>The problem with <a href="http://www.portfolio.com/news-markets/top-5/2008/07/01/UBS-and-Lehman-Bank-Worries?rss=true" target="_blank">Banks</a>.</p>
<p>How to find stocks which make a big <a href="http://stockbee.blogspot.com/2008/06/how-to-find-stocks-which-make-big-moves.html" target="_blank">move</a>.</p>
<p>Shocker of the day: Intraday price <a href="http://blog.afraidtotrade.com/shocker-of-a-day-intraday-action-revealed/" target="_blank">action</a>.</p>
<p>The ratings <a href="http://www.wsj.com/article/SB121435051391301517.html?mod=opinion_main_review_and_outlooks" target="_blank">racket</a>.</p>
<p>Stock market trend <a href="http://alphatrends.blogspot.com/2008/07/stock-market-trend-analysis-video-7108.html" target="_blank">analysis</a>.</p>
<p>How big a contribution could oil speculation be <a href="http://www.econbrowser.com/archives/2008/06/how_big_a_contr.html" target="_blank">making</a>?</p>
<p>Coaching hedge fund and portfolio <a href="http://traderfeed.blogspot.com/2008/07/coaching-hedge-fund-portfolio-managers.html" target="_blank">managers</a>.</p>
<p>Lessons in <a href="http://traderfeed.blogspot.com/2008/07/coaching-hedge-fund-portfolio-managers.html" target="_blank">productivity</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/money-finance-stock-market-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

