<?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; Share Market</title>
	<atom:link href="http://www.traineetrader.com/category/share-market/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>eSignal 11 Review</title>
		<link>http://www.traineetrader.com/esignal-11-review/</link>
		<comments>http://www.traineetrader.com/esignal-11-review/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 07:36:18 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[ASX]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[eSignal]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[eSignal 11]]></category>
		<category><![CDATA[Trade System]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=1495</guid>
		<description><![CDATA[<p><img width="504" height="311" src="http://www.traineetrader.com/wp-content/uploads/2011/02/detailedQuote.png" class="attachment-featured-image wp-post-image" alt="eSignal11-detailedQuote" title="eSignal11-detailedQuote" /></p><br />eSignal 11 is the latest software release from interactive data. The first and most obvious change you will notice is the dark almost Bloomberg like user interface. eSignal 11 has been completely re-written from the ground up and as yet is not feature complete with version 10.5. eSignal 11 the Main Screen The first thing [...]]]></description>
			<content:encoded><![CDATA[<p><img width="504" height="311" src="http://www.traineetrader.com/wp-content/uploads/2011/02/detailedQuote.png" class="attachment-featured-image wp-post-image" alt="eSignal11-detailedQuote" title="eSignal11-detailedQuote" /></p><br /><div>eSignal 11 is the latest software release from interactive data. The first and most obvious change you will notice is the dark almost Bloomberg like user interface. eSignal 11 has been completely re-written from the ground up and as yet is not feature complete with version 10.5.</div>
<h4><span id="more-1495"></span>eSignal 11 the Main Screen</h4>
<div>The first thing you will notice when you login to eSignal 11 is how good it looks. This statement is no exaggeration I was really blown away with the interface enhancements. The Image below shows pretty much the default layout for the main screen.</div>
<div style="text-align: center;"><img class="aligncenter size-full wp-image-1496" title="eSignal11-mainPag-View" src="http://www.traineetrader.com/wp-content/uploads/2011/02/mainPageView2.png" alt="" width="521" height="480" /></div>
<div>eSignal 11 allows for ultimate customizability without adding complexity. The user interface is broken down into pages this allows for ultimate flexibility and is great for work flow.</div>
<h4>The Top Menu Bar</h4>
<div style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2011/02/TopMenuBar.png"><img class="aligncenter size-full wp-image-1497" title="eSignal11-Top-Menu-Bar" src="http://www.traineetrader.com/wp-content/uploads/2011/02/TopMenuBar.png" alt="" width="808" height="29" /></a></div>
<div>You can access nearly all of eSignals features from the top menu bar. I will go into these menu options in more depth below. In eSignal 11 this menu bar does not use the standard UI menus which I think is a good thing.</div>
<h4>eSMenu</h4>
<div><img class="aligncenter size-full wp-image-1500" title="eSignal11-esMenubar" src="http://www.traineetrader.com/wp-content/uploads/2011/02/esMenubar.png" alt="" width="406" height="606" />The eS menu bar as shown above is pretty much just like the File menu in most other applications. From this menu bar you can create New Pages, Open Pages, Save Page Create new Layouts, arrange windows and modify application properties.</div>
<h4>New Menu</h4>
<h4 style="text-align: center;"><img class="aligncenter size-full wp-image-1501" title="eSignal11-NewMenuBar" src="http://www.traineetrader.com/wp-content/uploads/2011/02/NewMenuBar.png" alt="" width="224" height="506" /></h4>
<div>The New menu allows you to create new page elements. The page elements can then be arrange however you wish.</div>
<h4 style="text-align: left;">Tools Menu</h4>
<h4 style="text-align: center;"><img class="aligncenter size-full wp-image-1502" title="eSignal11-toolsMenuBar" src="http://www.traineetrader.com/wp-content/uploads/2011/02/toolsMenuBar.png" alt="" width="194" height="288" /></h4>
<div>The tools menu at this point in eSignal 11&#8242;s development cycle is some what limited. There is Symbol Search, Alerts and Formula Output. At the bottom of the Tools menu there are options to enable or disable the Quote Ticker and Quote Bar.</div>
<h4 style="text-align: left;">Watch List</h4>
<div style="text-align: center;"><img class="aligncenter size-full wp-image-1504" title="esignal11-menu-watchlist" src="http://www.traineetrader.com/wp-content/uploads/2011/02/esignalmenuwatchlist.png" alt="" width="235" height="411" /></div>
<div>The watch list menu provides some features for working with watch lists.  I find this menu fairly redundant all the tools and options in this menu can be accessed by simply right clicking on a watch list.</div>
<h4 style="text-align: left;">Trade</h4>
<div><img class="aligncenter size-full wp-image-1505" title="eSignal-menubar-trade" src="http://www.traineetrader.com/wp-content/uploads/2011/02/menubartrade.png" alt="" width="294" height="350" />The Trade menu handles most of the eSignal trade integration functions. From this menu you can handle orders, mange connections to brokers and Money Management planner.</div>
<h4 style="text-align: left;">Support</h4>
<div><img class="aligncenter size-full wp-image-1506" title="eSignal-menuBarSupport" src="http://www.traineetrader.com/wp-content/uploads/2011/02/menuBarSupport.png" alt="" width="150" height="165" /></div>
<div>The support menu basically links to the web based help content, feature requests and bug reporting.</div>
<h4>Detailed Quote Window</h4>
<div>The detailed quote window show&#8217;s detailed information about the selected instrument and is very Bloomberg like in appearance.</div>
<h4><img class="aligncenter size-full wp-image-1511" title="eSignal11-detailedQuote" src="http://www.traineetrader.com/wp-content/uploads/2011/02/detailedQuote.png" alt="" width="504" height="311" />Charting</h4>
<div style="text-align: left;">This is one area where eSignal really stands out, if you can think it you can chart it. You can extend the built-in features using EFS. Some of the charting features of eSignal 11 include.</div>
<ul>
<li>Unlimited Overlays</li>
<li>Sub-Charts</li>
<li>View other symbols in sub-chart</li>
<li>Selectable Studies, Lines</li>
<li>Drag-and-Drop Studies</li>
<li>Translucency</li>
<li>Bars Aligned with Sessions</li>
<li>Technical Indicators</li>
<li>Add-On Studies</li>
<li>EFS</li>
<li>Back Testing</li>
<li>Area Chart</li>
<li>Bar Chart</li>
<li>Candlestick Chart</li>
<li>Line Chart</li>
<li>Drawing Tools</li>
<li>Tick Intervals</li>
<li>Percentage Scale</li>
</ul>
<div>The images below shows the standard charts you can produce in eSignal.</div>
<h4><a href="http://www.traineetrader.com/wp-content/uploads/2011/02/esignalchart.png"><img class="aligncenter size-full wp-image-1513" title="esignalchart" src="http://www.traineetrader.com/wp-content/uploads/2011/02/esignalchart.png" alt="" width="555" height="381" /></a>Bottom Line</h4>
<div style="text-align: left;">eSignal 11 is not yet feature complete with it&#8217;s predecessor and I wouldn&#8217;t recommend it for production environments just yet. That being said eSignal 11 is excellent for analysis and is very easy on the eyes. The dark colours make it very easy to spend long periods of time analyzing data. In the coming months eSignal 11 will be force to be reckoned with and excellent value for money. You can run eSignal 10.5xx and eSignal 11 co-currently and you get the best of both worlds. In the coming months I will be putting eSignal through it&#8217;s paces but so far I am very happy with it.</div>
<div style="text-align: center;"><iframe src="http://www.youtube.com/embed/zyw37l9nvGs?hd=1" frameborder="0" width="500" height="314"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/esignal-11-review/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>Timothy Sykes TIMFundamentals DVD Review</title>
		<link>http://www.traineetrader.com/timothy-sykes-timfundamentals-dvd-review/</link>
		<comments>http://www.traineetrader.com/timothy-sykes-timfundamentals-dvd-review/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 05:33:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[DVD]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Traders]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[TIMFundamentals]]></category>
		<category><![CDATA[Timothy Sykes]]></category>
		<category><![CDATA[Trading Tools]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/timothy-sykes-timfundamentals-dvd-review/</guid>
		<description><![CDATA[Timothy Sykes is nearly impossible to slap a conventional label on. He has managed to achieve what some people take a lifetime to achieve in just 28 years. He has been trader, hedge fund manager, reality TV star, publisher, author and now an educator. Sykes most notable achievement was his great trading gains made from [...]]]></description>
			<content:encoded><![CDATA[<p>Timothy Sykes is nearly impossible to slap a conventional label on. He has managed to achieve what some people take a lifetime to achieve in just 28 years. He has been trader, hedge fund manager, reality TV star, publisher, author and now an educator. Sykes most notable achievement was his great trading gains made from 1999-2002, where he turned $12,415 to $1.65 million trading penny stocks. Tim has had many successes and also some well documented failures. There is no denying he really knows his niche and has performed very well throughout 2009 and the start of 2010.</p>
<p>Today I will be looking at the <a href="http://bit.ly/cEdgMI" target="_blank">TIMFundamentals</a> DVD package. This package consists of TIMFundamentals a 4 DVDs in total and a thick workbook. TIMFundamentals is aimed at new traders and traders who want to learn Timothy Sykes strategy.</p>
<p>&#160;</p>
<h3><strong>Timothy Sykes: TIMFundamentals DVD One approximate runtime 1 hour 3 minutes</strong>&#160;</h3>
<p><a href="http://bit.ly/cEdgMI" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.traineetrader.com/wp-content/uploads/2010/04/image.png" width="244" height="184" /></a> The first DVD is a recorded coaching session of Tim doing some 1-1 coaching and is split into four chapters. As usual the first 26 pages of the workbook detail Tim’s other products. This may be useful to some people, but most people will derive little value from this advertising. This <a href="http://bit.ly/cEdgMI" target="_blank">DVD</a> pretty much consists of Tim going through the basics of how he undertakes his research. This DVD covers some important topics and is helpful for people wanting to learn how to trade Tim’s strategy. This DVD shows how Tim goes about identifying potential trades and the websites he uses. It would have been helpful if we could actually see what Tim and his student were actually looking at on the screen.&#160;&#160;&#160; </p>
<p><strong>Topics covered include:</strong></p>
<ul>
<li>The benefits of using free sites.</li>
<li>Ticker gathering process.</li>
<li>Typical moves.</li>
<li>Identifying the usual suspects.</li>
<li>Self fulfilling prophecies.</li>
<li>Some example trades.</li>
<li>Stock promoters. </li>
</ul>
<h3><strong>Timothy Sykes: TIMFundamentals DVD Two approximate runtime 1 hour 30 minutes</strong></h3>
<p><a href="http://bit.ly/cEdgMI" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.traineetrader.com/wp-content/uploads/2010/04/image1.png" width="244" height="181" /></a> In DVD two we resume with Tim and his coaching student going through the watch list building process.&#160; In this DVD we gain some excellent insight into Tim’s research process. Once again some very interesting concepts are introduced. You will need to make sure you take notes when watching this <a href="http://bit.ly/cEdgMI" target="_blank">DVD</a> as some excellent topics points are made that are not written in the workbook.</p>
<p><strong>Topics covered include:</strong></p>
<ul>
<li>Specific forums and message boards for research.</li>
<li>More research sites revealed.</li>
<li>Press releases and there usefulness.</li>
<li>Some detailed variables. </li>
<li>Some basic fundamental indicators.</li>
</ul>
<h3>Timothy Sykes: TIMFundamentals DVD Three approximate runtime 1 hour 50 minutes</h3>
<p><a href="http://bit.ly/cEdgMI" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.traineetrader.com/wp-content/uploads/2010/04/image2.png" width="244" height="139" /></a> DVD three is split into ten chapters and is in screencast format. This is the practical part of the Tim Fundamentals DVD, we get to see Tim create his actual watch lists.&#160; This DVD is highly practical and reinforces the concepts presented in the first DVD. Tim spends quite sometime going through how he uses Clearstation in his research process. Tim also shows us Covestor and his ranking and briefly talks about auto trading. In short this DVD gives excellent practical advice for researching and building of watch lists. </p>
<h3>Timothy Sykes: TIMFundamentals DVD Four approximate runtime 1 hour 34 minutes</h3>
<p>In the final <a href="http://bit.ly/cEdgMI" target="_blank">DVD</a> Tim continues his research and watch list building. In this DVD we also get to see a behind the scenes look at his <a href="http://bit.ly/cEdgMI" target="_blank">TimAlerts</a> program. In this DVD Tim continues to filter his watch list. This DVD as the previous is very practical in nature and has some valuable information. It is good that Tim is going through his actual techniques he uses and goes into a lot of detail. In some parts of this DVD there is blurring and the image is un-viewable, Tim needs to get Camtasia and make sure he does the screen capture on a computer with decent RAM and a fast CPU. Finally the DVD goes over actually trading the stocks that were researched the previous day. In his conclusion Tim makes some very good points about the research process.&#160; </p>
<p><strong>Bottom Line</strong></p>
<p>TIMFundamentals is for new traders or people who have little experience in the stock market. The concepts presented are simple, practical and easy to understand. The first two DVD’s moved slowly however they had useful content. The final DVD’s were highly practical and showed the tools that Tim uses on a daily basis. If you are interested in seeing how Tim trades and what he does on a daily basis then <a href="http://bit.ly/cEdgMI" target="_blank">TIMFundamentals</a> is for you. This is an excellent introduction to the research process. The one thing that surprised me is that Tim has not automated his processes. TIMFundamentals delivers on its promises and provides you with a look behind the scenes on the Timothy Sykes research process.&#160; </p>
<p><strong>Pros</strong></p>
<ul>
<li>Excellent for beginners.</li>
<li>Research process explained in detail.</li>
<li>Both theory and practical concepts covered.</li>
<li>The best free research websites revealed. </li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>First two DVD’s slow.</li>
<li>Screen cast quality not the best.</li>
</ul>
<h3><strong>Related Reviews</strong> </h3>
<p> <strong></strong>
<ul>
<li><a href="http://www.traineetrader.com/dvd-review-pennystocking-by-timothy-sykes/" target="_blank">Timothy Sykes DVD Review: PennyStocking.</a></li>
<li><a href="http://www.traineetrader.com/timothy-sykes-pennystocking-part-deux-dvd-review/" target="_blank">Timothy Sykes DVD Review: PennyStocking Part Deux.</a></li>
<li><a href="http://www.traineetrader.com/timothy-sykes-shortstocking-dvd-review/" target="_blank">Timothy Sykes DVD Review: ShortStocking</a> </li>
<li><a href="http://www.traineetrader.com/timothy-sykes-dvd-tim-raw-review/" target="_blank">Timothy Sykes DVD Review: Tim Raw.</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/timothy-sykes-timfundamentals-dvd-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing Stock Data From Yahoo Using Python</title>
		<link>http://www.traineetrader.com/importing-stock-data-from-yahoo-using-python/</link>
		<comments>http://www.traineetrader.com/importing-stock-data-from-yahoo-using-python/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 05:16:45 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Matlab]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Quantitative Trading]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ipython]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[stock]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=935</guid>
		<description><![CDATA[As I discussed in my previous post I have started to explore the possibilities of using python for quant fiance applications. To be honest I have only spent about 2 hours working on this project.  In that short amount of time I have been able to: Connect to Interactive Brokers via IbPy. Connect and download [...]]]></description>
			<content:encoded><![CDATA[<p>As I discussed in my previous post I have started to explore the possibilities of using python for quant fiance applications. To be honest I have only spent about 2 hours working on this project.  In that short amount of time I have been able to:</p>
<ul>
<li>Connect to Interactive Brokers via IbPy.</li>
<li>Connect and download free stock data from Yahoo finance via ystockquote.</li>
<li>Visualise stock data using matplotlib.</li>
</ul>
<p>I wont  go through connecting to Interactive Broker here as max has written an excellent tutorial on his <a href="http://www.maxdama.com/2009/12/interactive-brokers-via-python-updated.html" target="_blank">site</a>. Max provides some excellent resources on quant trading.</p>
<h3><strong>Getting Stock Quotes From Yahoo via Python</strong></h3>
<p><a href="http://www.goldb.org/" target="_blank">Corey Goldberg</a> has written a simple module that is a good starting point for getting stock data. I am yet to modify the code but when I do I will post the modified source code. You can download the source code for ystockquote.py below:</p>
<pre class="brush: python">#!/usr/bin/env python
#
#  Copyright (c) 2007-2008, Corey Goldberg (corey@goldb.org)
#
#  license: GNU LGPL
#
#  This library is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2.1 of the License, or (at your option) any later version.

import urllib

"""
This is the "ystockquote" module.

This module provides a Python API for retrieving stock data from Yahoo Finance.

sample usage:
&gt;&gt;&gt; import ystockquote
&gt;&gt;&gt; print ystockquote.get_price('GOOG')
529.46
"""

def __request(symbol, stat):
    url = 'http://finance.yahoo.com/d/quotes.csv?s=%s&amp;f=%s' % (symbol, stat)
    return urllib.urlopen(url).read().strip().strip('"')

def get_all(symbol):
    """
    Get all available quote data for the given ticker symbol.

    Returns a dictionary.
    """
    values = __request(symbol, 'l1c1va2xj1b4j4dyekjm3m4rr5p5p6s7').split(',')
    data = {}
    data['price'] = values[0]
    data['change'] = values[1]
    data['volume'] = values[2]
    data['avg_daily_volume'] = values[3]
    data['stock_exchange'] = values[4]
    data['market_cap'] = values[5]
    data['book_value'] = values[6]
    data['ebitda'] = values[7]
    data['dividend_per_share'] = values[8]
    data['dividend_yield'] = values[9]
    data['earnings_per_share'] = values[10]
    data['52_week_high'] = values[11]
    data['52_week_low'] = values[12]
    data['50day_moving_avg'] = values[13]
    data['200day_moving_avg'] = values[14]
    data['price_earnings_ratio'] = values[15]
    data['price_earnings_growth_ratio'] = values[16]
    data['price_sales_ratio'] = values[17]
    data['price_book_ratio'] = values[18]
    data['short_ratio'] = values[19]
    return data

def get_price(symbol):
    return __request(symbol, 'l1')

def get_change(symbol):
    return __request(symbol, 'c1')

def get_volume(symbol):
    return __request(symbol, 'v')

def get_avg_daily_volume(symbol):
    return __request(symbol, 'a2')

def get_stock_exchange(symbol):
    return __request(symbol, 'x')

def get_market_cap(symbol):
    return __request(symbol, 'j1')

def get_book_value(symbol):
    return __request(symbol, 'b4')

def get_ebitda(symbol):
    return __request(symbol, 'j4')

def get_dividend_per_share(symbol):
    return __request(symbol, 'd')

def get_dividend_yield(symbol):
    return __request(symbol, 'y')

def get_earnings_per_share(symbol):
    return __request(symbol, 'e')

def get_52_week_high(symbol):
    return __request(symbol, 'k')

def get_52_week_low(symbol):
    return __request(symbol, 'j')

def get_50day_moving_avg(symbol):
    return __request(symbol, 'm3')

def get_200day_moving_avg(symbol):
    return __request(symbol, 'm4')

def get_price_earnings_ratio(symbol):
    return __request(symbol, 'r')

def get_price_earnings_growth_ratio(symbol):
    return __request(symbol, 'r5')

def get_price_sales_ratio(symbol):
    return __request(symbol, 'p5')

def get_price_book_ratio(symbol):
    return __request(symbol, 'p6')

def get_short_ratio(symbol):
    return __request(symbol, 's7')

def get_historical_prices(symbol, start_date, end_date):
    """
    Get historical prices for the given ticker symbol.
    Date format is 'YYYYMMDD'

    Returns a nested list.
    """
    url = 'http://ichart.yahoo.com/table.csv?s=%s&amp;' % symbol + \
          'd=%s&amp;' % str(int(end_date[4:6]) - 1) + \
          'e=%s&amp;' % str(int(end_date[6:8])) + \
          'f=%s&amp;' % str(int(end_date[0:4])) + \
          'g=d&amp;' + \
          'a=%s&amp;' % str(int(start_date[4:6]) - 1) + \
          'b=%s&amp;' % str(int(start_date[6:8])) + \
          'c=%s&amp;' % str(int(start_date[0:4])) + \
          'ignore=.csv'
    days = urllib.urlopen(url).readlines()
    data = [day[:-2].split(',') for day in days]
    return data</pre>
<p>As you can see python is a very simple easy to read and understand language.</p>
<h3><strong>A Very Simple Example</strong></h3>
<p>In this simple example we will work in the interactive ipython environment with matplotlib. We will download the data separate the data and store it in separate list data structures. This is a very inefficient way of doing things and is not optimal. This example is for demonstration purposes.</p>
<pre class="brush: python">import ystockquote

# Get Quotes 01/01/2006 - 01/01/2009
GOOG = ystockquote.get_historical_prices('GOOG', '20060101', '20090101')

# Create empty lists, quick and dirty
GOOGOpen = [ ]
GOOGClose = [ ]
GOOGDate = [ ]
GOOGHigh = [ ]
GOOGLow = [ ]
GOOGAdj = [ ]
GOOGVolume = [ ]

# Populate lists from downloaded data
for i in range(1, 755):
	GOOGDate.append(GOOG[i][0])
	GOOGOpen.append(GOOG[i][1])
	GOOGHigh.append(GOOG[i][2])
	GOOGLow.append(GOOG[i][3])
	GOOGClose.append(GOOG[i][4])
	GOOGVolume.append(GOOG[i][5])
 	GOOGAdj.append(GOOG[i][6])

plot(GOOGAdj)
title("Google Adjusted Close")
ylabel(r"GOOG Closing Price ($USD)", fontsize = 12)
xlabel(r"Date", fontsize = 12)
grid(True)</pre>
<p>The image below shows the output we get when we save the plot as a .png file.</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2010/04/GOOGADJ.png"><img class="aligncenter size-full wp-image-943" title="Google Adjusted close - Python matplotlib" src="http://www.traineetrader.com/wp-content/uploads/2010/04/GOOGADJ.png" alt="Google Adjusted close - Python matplotlib" width="637" height="470" /></a></p>
<p>As you can see we need to adjust the x category labels. We will do this in an upcoming tutorial.</p>
<h3><strong>Creating a simple linked chart in Python</strong></h3>
<p>In Matlab it is very easy to create linked graphs, it is also possible to create linked graphs using matplotlib. The example below shows how we can link volume and adjusted close for Google.</p>
<pre class="brush: python">import ystockquote

# Get Quotes 01/01/2006 - 01/01/2009
GOOG = ystockquote.get_historical_prices('GOOG', '20060101', '20090101')

# Create empty lists, quick and dirty
GOOGOpen = [ ]
GOOGClose = [ ]
GOOGDate = [ ]
GOOGHigh = [ ]
GOOGLow = [ ]
GOOGAdj = [ ]
GOOGVolume = [ ]

# Populate lists from downloaded data
for i in range(1, 755):
	GOOGDate.append(GOOG[i][0])
	GOOGOpen.append(GOOG[i][1])
	GOOGHigh.append(GOOG[i][2])
	GOOGLow.append(GOOG[i][3])
	GOOGClose.append(GOOG[i][4])
	GOOGVolume.append(GOOG[i][5])
 	GOOGAdj.append(GOOG[i][6])

#create canvas add two plots linked via x-axis
fig = figure()
ax = fig.add_subplot(311)
ax2 = fig.add_subplot(312, sharex=ax)
ax.plot(GOOGAdj)
ax2.plot(GOOGVolume)</pre>
<p>Below you can see the output, you can scroll and zoom these graphs and they remain aligned.</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2010/04/linkgoog.gif"><img class="aligncenter size-large wp-image-951" title="Linked Data Graphs Google" src="http://www.traineetrader.com/wp-content/uploads/2010/04/linkgoog-1024x553.gif" alt="Linked Data Graphs Google" width="614" height="332" /></a>Below shows what happens when you zoom in on a chart.</p>
<p style="text-align: center;"><a href="http://www.traineetrader.com/wp-content/uploads/2010/04/zoomlink.gif"><img class="aligncenter size-full wp-image-952" title="Linked Data Graphs Google Zoomed" src="http://www.traineetrader.com/wp-content/uploads/2010/04/zoomlink.gif" alt="zoomlink" width="623" height="337" /></a></p>
<p style="text-align: left;">As you can see from the above examples python is easy to use and is very flexible. In my next post I will go through some more advanced charting and drawing functions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/importing-stock-data-from-yahoo-using-python/feed/</wfw:commentRss>
		<slash:comments>2</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>The Best Economic Calendars &#8211; Keep Up To Date With The Latest Announcements</title>
		<link>http://www.traineetrader.com/the-best-economic-calendars-keep-up-to-date-with-the-latest-announcements/</link>
		<comments>http://www.traineetrader.com/the-best-economic-calendars-keep-up-to-date-with-the-latest-announcements/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 01:49:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Futures]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Calendar]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/the-best-economic-calendars-keep-up-to-date-with-the-latest-announcements/</guid>
		<description><![CDATA[As traders of any market it is important to know what is going on in the world. By this statement I don’t mean you have to sit glued to CNBC or some other brain-dead news service. Every day there are announcements and releases of economic data that have the potential to move markets. Today I [...]]]></description>
			<content:encoded><![CDATA[<p>As traders of any market it is important to know what is going on in the world. By this statement I don’t mean you have to sit glued to CNBC or some other brain-dead news service. Every day there are announcements and releases of economic data that have the potential to move markets. Today I thought I would share with you the economic calendars I use and some tools I use for analysis.</p>
<p><strong><span style="font-size: medium;">Economic Calenders</span></strong></p>
<p>When it comes to economic calendars you will find an assortment of them on-line. There are only two online calendars that I use on daily basis. They are the <a href="http://www.forexfactory.com/calendar.php" target="_blank">Forex Calendar</a> @ Forex Factory and <a href="http://www.bloomberg.com/markets/ecalendar/index.html" target="_blank">Bloomberg Calendar</a> the screenshots of these calendars shown below:</p>
<p align="center"><a href="http://www.forexfactory.com/calendar.php" target="_blank"><img style="display: block; margin-left: auto; margin-right: auto; border: 0px;" title="Forex Factory - Calendar" src="http://www.traineetrader.com/wp-content/uploads/2009/11/image.png" border="0" alt="Forex Factory - Calendar" width="504" height="204" /></a></p>
<p align="center"><a href="http://www.bloomberg.com/markets/ecalendar/index.html" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Bloomberg Economic Calendar" src="http://www.traineetrader.com/wp-content/uploads/2009/11/image1.png" border="0" alt="Bloomberg Economic Calendar" width="504" height="369" /></a></p>
<p>Out of these two calendars my favourite would have to be the Forex Calendar it has more features and has a much easier workflow then Bloomberg. </p>
<p><strong><span style="font-size: medium;">Forex Calendar Features</span></strong></p>
<p>The first thing you will want to do with both these calendars is adjust your time zone. After I have done this I like to get out my trading notebook and I enter  the announcements that will be relevant to me on that given day. To get more detail about a specific announcement simply click on the detail button. The detail window gives you the following information:</p>
<ul>
<li>Source</li>
<li>Measures</li>
<li>Usual Effect</li>
<li>Frequency</li>
<li>Next Release</li>
<li>FF Notes</li>
<li>Why Traders care</li>
<li>Derived via</li>
<li>Acro Expand</li>
<li>History</li>
<li>Related items</li>
</ul>
<p>The screenshot below shows the Forex Calendar detail feature in action:</p>
<p align="left"><a href="http://www.traineetrader.com/wp-content/uploads/2009/11/image2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Forex Calendar Detail" src="http://www.traineetrader.com/wp-content/uploads/2009/11/image_thumb.png" border="0" alt="Forex Calendar Detail" width="504" height="456" /></a> The other unique feature the Forex calendar has is the ability to chart historical release data. Like the detail feature you simply click on the chart icon and an interactive chart will be generated within the same window.  The image below shows the chart feature in action:</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Forex Calendar chart" src="http://www.traineetrader.com/wp-content/uploads/2009/11/image3.png" border="0" alt="Forex Calendar chart" width="504" height="223" /></p>
<p><strong><span style="font-size: medium;">Software Tools</span></strong></p>
<p>I use the free tool FF Calendar to news software as it provides an easy way for me to build a database of future and historic news events on my local computer. This is very handy for some system design work I do. The screenshot below shows my news events history database:</p>
<p align="left"><a href="http://www.traineetrader.com/wp-content/uploads/2009/11/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="History database" src="http://www.traineetrader.com/wp-content/uploads/2009/11/image_thumb1.png" border="0" alt="History database" width="504" height="452" /></a>Once my database is populated I can then run a script that overlays each of the economic events on the appropriate chart. This allows for me to graphically view the impact if any on the underlying markets. The screenshot below shows the auto generated chart content on the EUR/USD 1 minute spot chart:</p>
<p align="left"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Chart Overlay " src="http://www.traineetrader.com/wp-content/uploads/2009/11/image5.png" border="0" alt="Chart Overlay " width="504" height="323" />In my next post I will talk about the classic reference book that I often refer to surrounding news releases <a href="http://www.amazon.com/gp/product/0132447290?ie=UTF8&amp;tag=forexescapade-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0132447290" target="_blank">The Secrets of Economic Indicators</a>: Hidden Clues to Future Economic Trends and Investment Opportunities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/the-best-economic-calendars-keep-up-to-date-with-the-latest-announcements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>eSignal OnDemand &#8211; Trading Software Review &#8211; Is it worth the money?</title>
		<link>http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/</link>
		<comments>http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 05:37:35 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[ASX]]></category>
		<category><![CDATA[eSignal]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Trading Platform]]></category>
		<category><![CDATA[Trading System]]></category>
		<category><![CDATA[Trading Tools]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/</guid>
		<description><![CDATA[In my search for a reliable trading platform for my trading system developments I have been testing eSignal OnDemand software. My main reason for testing eSignal OnDemand is their extensive data coverage of global markets. I should note that eSignal OnDemand offers delayed or snapshot data only. This means that eSignal OnDemand is most suitable [...]]]></description>
			<content:encoded><![CDATA[<p>In my search for a reliable trading platform for my trading system developments I have been testing eSignal OnDemand software. My main reason for testing eSignal OnDemand is their extensive data coverage of global markets. I should note that eSignal OnDemand offers delayed or snapshot data only. This means that eSignal OnDemand is most suitable for longer term portfolio monitoring or end-of-day based trading systems. </p>
<p><strong>eSignal OnDemand Software</strong></p>
<p>After signing up at eSignal OnDemand you will then be able to download and install the software. After installation the first screen most of you will see is this:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/esignalFirstrun.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="eSignal First run under Windows 7- Click to Enlarge" src="http://www.traineetrader.com/wp-content/uploads/2009/10/esignalFirstrun_thumb.png" border="0" alt="eSignal First run under Windows 7- Click to Enlarge" width="504" height="295" /></a></p>
<p>Under Windows 7 it is simply a matter of allowing the eSignal data manger access through the firewall and you will be downloading historical data in no time. I really like the integrated browser within eSignal and the extensive getting started guide. The screenshot below shows the browser running in eSignal:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/esigNewUser.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="eSignal New User- Help" src="http://www.traineetrader.com/wp-content/uploads/2009/10/esigNewUser_thumb.png" border="0" alt="eSignal New User- Help" width="504" height="242" /></a> </p>
<p align="left">eSignals extensive documentation makes learning eSignal a less daunting process. I strongly recommend anyone starting out in eSignal to not skip this documentation.</p>
<p align="left"><strong>eSignal onDemand Symbol Search</strong></p>
<p align="left">One of the first things you will want to do is find a stock, index, future or option contracts symbol. This is easily achieved using eSignal OnDemand symbol search window. The symbol search tool is very powerful and you will often need to narrow your search criteria. Once again eSignal OnDemand makes this an easy process through the use of drop down lists.  The search feature allows you to quickly add the symbol to the quote board, open up a chart or perform other analysis tasks with the click of a button. Below are some screenshots of eSignal OnDemand symbol search in action.</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/eSignalSearch.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="eSignalSearch" src="http://www.traineetrader.com/wp-content/uploads/2009/10/eSignalSearch_thumb.png" border="0" alt="eSignalSearch" width="515" height="659" /></a></p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/eSignalExport.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="eSignalExport" src="http://www.traineetrader.com/wp-content/uploads/2009/10/eSignalExport_thumb.png" border="0" alt="eSignalExport" width="516" height="587" /></a></p>
<p><strong>eSignal OnDemand Quote Window</strong></p>
<p>The quote window allows you to gain a quick snapshot of how a financial instrument is performing. From the quote window you can quickly open charts and analysis tools by right clicking the instrument. You can also take a snapshot of the current quote window and save it as an image file locally or on a ftp server. The image below shows a brief snapshot of my current eSignal OnDemand quote window:</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Quote Window" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image.png" border="0" alt="eSignal Quote Window" width="508" height="348" /></p>
<p><strong>eSignal OnDemand Quote Board</strong></p>
<p>The Quote Board is very similar to the quote window however it provides a little more data on individual financial instruments. You can very quickly visually track how a stock or financial instrument is travelling at a given point in time. The Quote Board is colour coded and shows the open, high, low, close and percent change of a given instrument. An example of my Quote Board is shown below:</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Quote Board" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image1.png" border="0" alt="eSignal Quote Board" width="509" height="272" /> </p>
<p><strong>eSignal OnDemand Advanced Chart</strong></p>
<p>This is the area that eSignal OnDemand really advances in their charting. The charting features are so extensive it would take two maybe three post just to do them justice. Instead I will go over a quick run down of the features.</p>
<p>Chart Types</p>
<ol>
<li>Bar Chart</li>
<li>Candle Stick Chart</li>
<li>Line Chart</li>
<li>Area Chart</li>
<li>PNF Chart</li>
<li>PB Chart</li>
<li>Renko Chart</li>
<li>Kagi Chart</li>
</ol>
<p>Some of these Chart types shown below (Click to Enlarge):</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Bar Chart" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb.png" border="0" alt="eSignal Bar Chart" width="244" height="115" /></a> <a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image3.png" target="_blank"><img style="display: inline; border: 0px;" title="eSignal Candle Stick Chart" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb1.png" border="0" alt="eSignal Candle Stick Chart" width="244" height="115" /></a></p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image4.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Line Chart" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb2.png" border="0" alt="eSignal Line Chart" width="244" height="115" /></a> <a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Area Chart" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb3.png" border="0" alt="eSignal Area Chart" width="244" height="115" /></a></p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image6.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal PB Graph" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb4.png" border="0" alt="eSignal PB Graph" width="244" height="115" /></a></p>
<p><strong>Chart Drawing tools and Indicators</strong></p>
<p>eSignal OnDemand has an extensive array of drawing tools and built-in chart studies, rather then go through them all the screenshots below show some of the available options.</p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Line Drawing tools" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image7.png" border="0" alt="eSignal Line Drawing tools" width="184" height="552" /> <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal studies" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image8.png" border="0" alt="eSignal studies" width="164" height="347" /> <a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image9.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Formula" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb5.png" border="0" alt="eSignal Formula" width="160" height="450" /></a></p>
<p><strong>eSignal OnDemand Page Layout</strong></p>
<p>Using the page layout feature it is very easy to create a specific screen setup for a given workflow and then switch between layouts quickly. This allows for increased productivity and allows you to quickly change perspectives. The layout below is a simple one I created for quickly looking at stocks.</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/image10.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="eSignal Layout Click to enlarge" src="http://www.traineetrader.com/wp-content/uploads/2009/10/image_thumb6.png" border="0" alt="eSignal Layout Click to enlarge" width="504" height="316" /></a></p>
<p>Other Excellent features include:</p>
<ul>
<li>The ability to export data to csv or html format.</li>
<li>The ability to replay bars of a given security.</li>
<li>The ability to back test trading strategies. (I will cover this in a future post as the features are so extensive).</li>
<li>Price filtering of bars.</li>
<li>Portfolio tools.</li>
<li>Extensive keyboard customisation settings.</li>
</ul>
<p><strong>Bottom Line</strong></p>
<p>I am very impressed with the range of features and data coverage at such a low monthly cost. I have found the software to be stable and after the initial learning curve fairly easy to use. The charting features and data coverage make this a truly fantastic package for a retail trader who only makes a few trades in a week or month. It is also a good starting point for someone who wishes to get into trading but might be at work during market hours. The bar replay feature allows for you to get a feel for some market dynamics.</p>
<p>In an upcoming post I will detail what eSignal OnDemand has to offer for the quant or algorithmic trader. Overall eSignal OnDemand allows you to start analysing the market at a low cost and when you are ready to move to a real time service you will be able to transfer skills learned. eSignal will also integrate with most brokers so you can make trades directly from eSignal.</p>
<p><strong><em>A Final Note</em></strong></p>
<p><em>eSignal OnDemand will not offer to much to the high frequency trader or day trader. For these practises real time data is essential. eSignal OnDemand does not have free market scanners and some advanced features are sold as an add on service.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The Kirk Report &#8211; Is it worth becoming a member?</title>
		<link>http://www.traineetrader.com/the-kirk-report-is-it-worth-becoming-a-member/</link>
		<comments>http://www.traineetrader.com/the-kirk-report-is-it-worth-becoming-a-member/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 11:29:33 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Kirk Report]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/the-kirk-report-is-it-worth-becoming-a-member/</guid>
		<description><![CDATA[If you have not heard of the Kirk report you would have to be in the minority. Charles E. Kirk is the Godfather of the finance blog world. His archives date back to September 2003 and has steadily built a large subscriber base.Like many others I read the Kirk Report on a daily basis. For [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.traineetrader.com/wp-content/uploads/2009/01/thedon.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" title="TheDon" src="http://www.traineetrader.com/wp-content/uploads/2009/01/thedon-thumb.jpg" border="0" alt="TheDon" width="240" height="305" align="right" /></a> If you have not heard of the Kirk report you would have to be in the minority. Charles E. Kirk is the Godfather of the finance blog world. His archives date back to September 2003 and has steadily built a large subscriber base.Like many others I read the Kirk Report on a daily basis. For the last year I have subscribed to the free version of the Kirk report and have been very impressed with the quality of the content. Kirk’s site is quite unique in the fact that it has no advertising. Instead a membership based model is used. So why has it taken me so long to subscribe? I think the main reason for my delay has been I didn’t really know what I would be getting for my money.  If you go to the membership section of the site there is no detailed information of subscriber benefits. It is for this reason I decided to give my thoughts on the members only section and the signup process.</p>
<p><strong><span style="font-size: medium;">The Signup Process</span></strong></p>
<p>To signup to the Kirk reports member only section click on <a href="http://www.kirkreport.com/donate.html" target="_blank">member information</a> page. After doing this a page similar to the one shown below will appear.</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="kirk" src="http://www.traineetrader.com/wp-content/uploads/2009/01/kirk1.jpg" border="0" alt="kirk" width="504" height="397" /></p>
<p>I choose to pay via PayPal and the process was extremely straightforward. After the transaction is complete you are redirected to instruction on how to log on to the members only section. You will also receive an email welcoming you to the Kirk report. Once you have logged on you will see a clean easy to use interface as shown below:</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="The kirk report Member" src="http://www.traineetrader.com/wp-content/uploads/2009/01/image.png" border="0" alt="The kirk report Member" width="524" height="484" /></p>
<p>As a member you get access to:</p>
<ul>
<li>Kirk’s stock screen machine</li>
<li>Monthly Q&amp;A sessions</li>
<li>Premarket/Afterhours posts</li>
<li>A market timing indicator</li>
<li>Recommended Readings</li>
<li>Tools of the trade</li>
<li>Educational posts</li>
<li>Retirement/Lazy portfolios</li>
<li>Model retirement portfolio</li>
</ul>
<p><strong><span style="font-size: medium;">Stock Screen Machine</span></strong></p>
<p>Naturally after signing up this was the first area of the members only section that I wanted to investigate. At the bottom of the page is a tutorial which goes over how to use the tools effectively and gives a bit of background information. There are quite a few screens that will help you find stocks to play. The screens provided include:</p>
<p><strong>Stock Screen Machine Filters</strong></p>
<ul>
<li>New &amp; Hot</li>
<li>Most Popular</li>
<li>Consistent Performers</li>
<li>Losing Popularity</li>
<li>All Screens</li>
</ul>
<p><strong>Kirk&#8217;s Favourite Stock Screens</strong></p>
<ul>
<li>Back Up The Truck</li>
<li>Cheapo Growth</li>
<li>Cream Of The Crop</li>
<li>Good Minds Think Alike</li>
<li>Market Leaders</li>
<li>Passing The Bar</li>
<li>Pounding The Table</li>
<li>Safety First &amp; Then Potential</li>
<li>Value/Growth/Momentum</li>
</ul>
<p>Another benefit of Kirk’s stock screens is the ability to views charts of all the stocks listed with a singe click, download an excel file contain the stocks or a text file. I have found this to be very hand as it allows me to use BulkQuotesXL and AnalyzerXL on the list directly. The image below shows a selected stock screen filter:</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="Kirk's Stock Screen Tool" src="http://www.traineetrader.com/wp-content/uploads/2009/01/image1.png" border="0" alt="Kirk's Stock Screen Tool" width="434" height="397" /></p>
<p>The monthly Q&amp;A section is a complete archive of all the past Q&amp;A topics and is all easily accessible on one page. I found it really helpful to see the lists of news that Kirk reads and the blogs he reads. These two lists are both very extensive and contain some sites that even the most seasoned professional may not have come across.  Kirk also has a list of recommended readings which is fairly standard but helpful to the beginner. The tools of the trade section of the website lists in great detail Kirks trading setup and I have to say I am somewhat jealous <img src='http://www.traineetrader.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  The lazy portfolio section of the website is of a very high standard and there are lots of resources. In total there are 25 different lazy portfolios presented. At the end of each day Kirk sends all his subscribers a concise email with links to posts along with other relevant information. The final section of the members only section that is worth its weight in gold is the members mailbag. This section of the website goes over all the previous questions kirks members have asked him. There is a lot of content and it makes very interesting reading.</p>
<p><strong><span style="font-size: medium;">Bottom Line</span></strong></p>
<p>Becoming a member of the Kirk report really is easy and the value most people will derive will far exceed the initial outlay. If you only got access to the screen machines it would be $50 well spent. The mailbag section and the tools of the trade section make for very useful and interesting reading. If you have been a regular reader of the Kirk report but have been sitting on the fence it is time to take the plunge. The only criticism I have is the lack of comments and community interaction. It would be great to see a members only forum or comments to be enabled on posts. Also it would be good if the recommended reading section offered links to the Amazon page of books presented. That being said a Kirk report membership offers extraordinary value for  money.Well I am off to read some more Q&amp;A’s and mailbag questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/the-kirk-report-is-it-worth-becoming-a-member/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Timothy Sykes DVD &#8211; Tim Raw Review</title>
		<link>http://www.traineetrader.com/timothy-sykes-dvd-tim-raw-review/</link>
		<comments>http://www.traineetrader.com/timothy-sykes-dvd-tim-raw-review/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 13:52:48 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[DVD]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Timothy Sykes]]></category>
		<category><![CDATA[TIMRaw]]></category>
		<category><![CDATA[Trader]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/timothy-sykes-dvd-tim-raw-review/</guid>
		<description><![CDATA[I hate to admit it but after watching Timothy Sykes first DVD on PennyStocking, I was left wanting to know more about his strategy and the way he trades. I like many others, thought that Timothy Sykes was a one hit wonder, which got lucky during extraordinary market conditions. This all changed when I actually [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px initial initial;" title="Get TimRaw on DVD!" src="http://www.traineetrader.com/wp-content/uploads/2009/01/timraw.jpg" border="0" alt="Get TimRaw on DVD!" width="255" height="351" align="right" /></a> I hate to admit it but after watching Timothy Sykes first DVD on PennyStocking, I was left wanting to know more about his strategy and the way he trades. I like many others, thought that Timothy Sykes was a one hit wonder, which got lucky during extraordinary market conditions. This all changed when I actually read his book and watched his DVD’s. While investment banks, hedge funds and financial institutions are collapsing Tim’s returns continue to beat the market norm. If you find yourself asking yourself how is he doing this? Then the Tim Raw <a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank">DVD</a> is for you.</p>
<p>As the name suggests Tim Raw has very little editing, no fancy production techniques and comes on four DVD’s.</p>
<p><strong><span style="font-size: medium;">Tim Raw DVD Disc One – Tim Lessons -Approx Runtime: 2hrs 30min</span></strong></p>
<p>All in all this is a solid introduction to trading techniques and methods. You will find a multitude of generalised information and anecdotes throughout the DVD’s. I found the first DVD to be a bit slow and less structured then the remaining DVD’s yet there were some great tips. It is very helpful to take notes, as the first two DVD’s are not divided into any structured chapters. Some topics covered on this first DVD include:</p>
<p><strong>Lesson 1</strong></p>
<ul>
<li>Disclaimer</li>
<li>“I am not responsible for any of your losses. If you do have any gains I would like to take credit for that, as I have taught you”</li>
<li>A brief Introduction to who Timothy Sykes is</li>
<li>The GYGT trade Lesson- Business reality vs Stock reality</li>
<li>Nov 2007 The introduction of TIM (Transparent Investment Management)</li>
<li>SEC Pattern day trading rule (intro)</li>
<li>Tim Alerts (intro)</li>
<li>A little bit of cross selling other DVD Products</li>
<li>PennyStocking in Bull Markets</li>
<li>Are all PennyStocks Frauds? <a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px initial initial;" title="IntroTimRaw" src="http://www.traineetrader.com/wp-content/uploads/2009/01/introtimraw2.png" border="0" alt="IntroTimRaw" width="344" height="194" align="right" /></a></li>
<li>An in depth look at the CYGT saga</li>
<li>Sub Penny shares…. Should you play them?</li>
<li>PennyStocking success stories and Covester</li>
<li>How do you spend your PennyStocking profits?</li>
<li>The Simplicity of PennyStocking</li>
<li>Limit Orders Vs Market Orders</li>
<li>A more in depth view of the pattern day trading rule</li>
<li>A brief overview of ShortStocking concepts</li>
<li>Trading Psychology a brief overview</li>
<li>Habits of a good Trader</li>
<li>Getting Over losing streaks</li>
</ul>
<p><strong>Lesson 2</strong></p>
<ul>
<li>Managing other peoples money</li>
<li>Starting a Hedge Fund – One man shops won’t work</li>
<li>Licences needed</li>
<li>Prop Firms</li>
<li>The Financial media jungle</li>
<li>CNBC and Noise</li>
<li>Alternative Investment strategies</li>
<li>Recommended Brokers</li>
<li>Analysts</li>
<li>High price stocks</li>
<li>Tax Law selling</li>
<li>Seasonal patterns</li>
</ul>
<p><strong>Book Reviews</strong></p>
<p>The book review section was extremely average due to the lack of information provided by Tim. Despite the lack of information provided the books that were introduced were good and definitely important reading. You can gain just as much insight by visiting Tim’s Trading library section of his website.</p>
<p>Below is a selection of the books reviewed for a full list visit Tim’s <a href="http://timothysykes.com/library/" target="_blank">library</a>.</p>
<ol>
<li>Book of Investing Wisdom</li>
<li>The Predictors</li>
<li>Mobs messiahs and markets</li>
<li>Bernard Baruch</li>
<li>Rouge Trader</li>
<li>The Man Who made Wallstreet <a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px initial initial;" title="BookReviewTimRaw" src="http://www.traineetrader.com/wp-content/uploads/2009/01/bookreviewtimraw2.png" border="0" alt="BookReviewTimRaw" width="340" height="255" align="right" /></a></li>
<li>The Rich and how they got that way</li>
<li>The next great bubble boom</li>
<li>Lessons from the greatest stock traders of all times</li>
<li>Sell and Sell Short</li>
<li>Trading for a living</li>
<li>How to make money selling stocks short</li>
<li>Full of Bull</li>
<li>Your money and your brain</li>
<li>A mathematician plays the stock market</li>
<li>Practical Speculation</li>
<li>Millionaire traders</li>
<li>My life as a quant</li>
<li>Way of the turtle</li>
<li>Trend following</li>
<li>The Complete turtle trader</li>
<li>Inside the house of money</li>
<li>Fooling some of the people all of the time</li>
<li>The education of a speculator</li>
<li>Hedge Hunters</li>
<li>Jesse Livermore worlds greatest stock trader</li>
<li>Reminiscences of a stock operator</li>
<li>The wall street jungle</li>
<li>A random walk down wallstreet</li>
<li>Unconventional success</li>
<li>The white sharks of wall street</li>
<li>The boy wonder of wall street</li>
<li>Wall Street a History</li>
<li>Scam Dogs and Mo Mo Mama’s</li>
<li>Trading with enemy</li>
<li>Market Wizards</li>
<li>Morgan</li>
<li>Encyclopaedia of chart patterns</li>
<li>The Go Go years</li>
<li>The new market wizards</li>
<li>The wolf of Wall Street</li>
<li>Confessions of a Wall Street analyst</li>
<li>Running money</li>
<li>Wall Street Meat</li>
<li>Hedge Hogging</li>
<li>The book of Daniel Drew</li>
<li>Where are the customer’s yachts?</li>
<li>Soros the life and times</li>
<li>Sold short</li>
<li>Hedge Fund Masters</li>
<li>The poker face of Wall Street</li>
<li>Fooled by Randomness</li>
<li>All about options</li>
</ol>
<p>After the book reviews the following topics are looked at:</p>
<ul>
<li>A Word about Stock promoters</li>
<li>A Little history Tulip Mania</li>
</ul>
<p><strong><span style="font-size: medium;">Tim Raw DVD Disc Two – Timothy Sykes Seminar Part One – Approx Runtime: 1hr 48min</span></strong></p>
<p>The final DVD’s go through a recent seminar Tim gave. I found these DVD’s to be a very interesting insight into the way Tim trades. For anyone who is unable to attend a seminar in person this DVD is a great substitute. There are so many substandard educational products in the trading sphere it is good to actually come across a DVD, which contains an honest and open view of the industry. Some topics covered on this DVD include:<a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px initial initial;" title="classRoomLevelIITimRawDiscTwo" src="http://www.traineetrader.com/wp-content/uploads/2009/01/classroomleveliitimrawdisctwo2.png" border="0" alt="classRoomLevelIITimRawDiscTwo" width="344" height="192" align="right" /></a></p>
<ul>
<li>Introductions</li>
<li>A brief introduction to candlestick charting</li>
<li>Use of stop losses and routing of orders</li>
<li>A look at a level II screen</li>
<li>¾ stocks follow the market</li>
<li>Bitter sellers an Explanation</li>
<li>Pig Farming in China &#8211; A technical look</li>
<li>A look at multiple timeframes</li>
<li>The Kramer effect</li>
<li>A look at covester website</li>
<li>Stock MSG boars and Jonathan Levit</li>
<li>Stocks that aren’t moving</li>
<li>Everyone has an angle</li>
<li>A look at a spam stock</li>
<li>Midday volume dry up</li>
<li>10% Spreads! Crazy</li>
<li>Naked Short Selling</li>
<li>A few Seasonal Trends</li>
<li>Stock Market Fundamentals Market Cap</li>
<li>Breakouts</li>
<li>Support and Resistance</li>
</ul>
<p><strong><span style="font-size: medium;">Tim Raw DVD Disc Three – Seminar Part Two -Approx Runtime: 2hrs 9min</span></strong></p>
<p>Some topics covered include:<a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank"><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px initial initial;" title="classRoomOneTimRawDiscTwo" src="http://www.traineetrader.com/wp-content/uploads/2009/01/classroomonetimrawdisctwo2.png" border="0" alt="classRoomOneTimRawDiscTwo" width="344" height="192" align="right" /></a></p>
<ul>
<li>A discussion of the pattern day trading rule.</li>
<li>Looking for market inefficiencies.</li>
<li>A technical look at PR run ups.</li>
<li>Cup and Handle pattern</li>
<li>Some morning patterns</li>
<li>Short Squeezes</li>
<li>Taking into account all available variables</li>
<li>Wait for good setups</li>
<li>Buying Frauds</li>
<li>Tim’s Favourite Breakout</li>
<li>A Short Q&amp;A</li>
<li>More chart patterns</li>
<li>Multiple timeframes</li>
<li>Supernovas</li>
<li>The Crow</li>
<li>The Death Spiral</li>
<li>Identifying short squeezes on the level II Screen</li>
<li>Doubling your losses Newsletter – Read the fine print</li>
<li>Yahoo finances – Understanding key statistics</li>
</ul>
<p><strong><span style="font-size: medium;">Tim Raw DVD Disc Four – Seminar Part Three -Approx Runtime: 1hrs 44min</span></strong></p>
<p>The final disc which I found to be the most interesting looks more closely at how Tim trades. Topics covered include:</p>
<ul>
<li>Examples of simple breakouts</li>
<li>Short selling into strength</li>
<li>Fake out Breakouts</li>
<li>Morning panic</li>
<li>An example of how Tim researches a play</li>
<li>Breakdowns- looking at multiple timeframes</li>
<li>Take losses quickly</li>
<li>Forcing opportunities</li>
<li>A look at media outlets</li>
<li>Don’t trust insider buying</li>
<li>Liquidity issues</li>
<li>Plan for everything the night before</li>
<li>Tim’s routine</li>
<li>The sites Tim uses</li>
<li>Building watch lists</li>
<li>Don’t trust just one data source</li>
<li>How Tim finds his stocks</li>
</ul>
<p><strong><span style="font-size: medium;">Final Thoughts</span></strong></p>
<p>Tim’s Raw <a href="http://www.traineetrader.com/products/TimDVDS/" target="_blank">DVD</a> is a great introduction to his PennyStocking strategy and some general trading concepts. Tim’s Raw DVD should be watched before moving on to the PennyStocking DVD and PennyStocking Part Deux. It is evident throughout this DVD series that Tim knows his stuff when it comes to the Penny Stock niche. In the fast pace world of finance a new guru pops up every few months and then fades into obscurity. Tim’s profits and trades are well documented and transparent and his blog details the day-to-day happenings and events, which are pertinent to PennyStockers. I was very impressed with this DVD it is packed full of trading wisdom.</p>
<p><strong>Pros</strong></p>
<ul>
<li>No assumed knowledge.</li>
<li>Presented in easy to understand manner.</li>
<li>A vast amount of topics covered.</li>
<li>Allows new trader to gain an insight into how a successful trader approaches trading.</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>Dis-Jointed in parts</li>
<li>DVD chapter selection sparse.</li>
<li>Book review section not very informative.</li>
</ul>
<p><strong><span style="font-size: medium;">Bottom Line</span></strong></p>
<p>A vast array of topics are presented in an easy to understand manner. This is a perfect <a href="http://bit.ly/cEdgMI" target="_blank">DVD</a> for anyone who is considering PennyStocking. The production quality is raw but the content presented more then makes up for this. Tim is really maturing as a trader and educator (Maybe the influence of a good woman??).</p>
<p>A Master of PennyStocks gives us a master insight into the world of PennyStocks. I must say thank you Tim you have opened my eyes to opportunities that exist that I would have never even given a second of thought too. Although I don’t currently trade Penny Stocks the perspective and insight presented is still very relevant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/timothy-sykes-dvd-tim-raw-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

