<?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; Fundamentals</title>
	<atom:link href="http://www.traineetrader.com/category/forex/fundamentals/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>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>6 MetaTrader Indicators To Help you Tell the Time in the FOREX Market</title>
		<link>http://www.traineetrader.com/6-metatrader-indicators-to-help-you-tell-the-time-in-the-forex-market/</link>
		<comments>http://www.traineetrader.com/6-metatrader-indicators-to-help-you-tell-the-time-in-the-forex-market/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 08:47:50 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Indicators]]></category>
		<category><![CDATA[MQ4]]></category>
		<category><![CDATA[MT4]]></category>
		<category><![CDATA[Time Zone]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/6-metatrader-indicators-to-help-you-tell-the-time-in-the-forex-market/</guid>
		<description><![CDATA[I have been looking around for some good MetaTrader indicators that will help me time my trades a bit better. When trading FOREX it is important to be familiar with world time zones and news announcements. As FOREX is a global market it is not enough to know about what is happening in your time [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking around for some good MetaTrader indicators that will help me time my trades a bit better. When trading FOREX it is important to be familiar with world time zones and news announcements. As FOREX is a global market it is not enough to know about what is happening in your time zone. Most of these indicators are available from the FOREX factory and are freeware.</p>
<h3>Display Info MT4 Indicator </h3>
<p>This is an excellent indicator that can be configured and modified as desired. Hanover has done an excellent job as he does with all his indicators he has released. This indicator will display the following info, for all currency pairs offered by your broker:</p>
<ul>
<li>Symbol (A=AUD, C=CAD, E=EUR, F=CHF, G=GBP, J=JPY, N=NZD, U=USD)</li>
<li>Current bid price</li>
<li>Daily range to date:ave daily range (DR as a % of ADR) (note: Sunday candles not included in ADR)</li>
<li>Spread (spread as a % of ADR)</li>
<li>Dollars per pip (per full lot traded)</li>
<li>Swap paid(+) or charged(-) by broker on long and short positions</li>
</ul>
<p>The screenshot below shows the Display Info indicator in action.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/image.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="Display Info MT4 Indicator MT4" border="0" alt="Display Info MT4 Indicator MT4" src="http://www.traineetrader.com/wp-content/uploads/2010/09/image_thumb.png" width="500" height="233" /></a> <a href="http://www.forexfactory.com/showthread.php?t=245064" target="_blank">Download Display Info MT4 Indicator</a></p>
<h3>Plot News MT4 Indicator</h3>
<p>The Plot News Indicator is one of the most useful indicators I have come across.&#160; This indicator can be configured to alert you of up coming news events, it also allows you to see the market impact of every news announcement. Once again this indicator is written by hanover. The screenshot below shows the Plot News indicator in action.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/image1.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="Plot News MT4 Indicator MT4" border="0" alt="Plot News MT4 Indicator MT4" src="http://www.traineetrader.com/wp-content/uploads/2010/09/image_thumb1.png" width="500" height="233" /></a> <a href="http://www.forexfactory.com/showthread.php?t=250544" target="_blank">Download Plot News MT4 Indicator</a></p>
<h3>Auto-Session v1.5 MT4 Indicator</h3>
<p>This indicator graphically displays the overlap between different trading sessions. The indicator also displays the pip range from the given session. The screenshot below shows the Auto-Session v1.5 indicator in action.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/image2.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="Auto-Session v1.5 MT4 Indicator" border="0" alt="Auto-Session v1.5 MT4 Indicator" src="http://www.traineetrader.com/wp-content/uploads/2010/09/image_thumb2.png" width="500" height="235" /></a> <a href="http://www.forexfactory.com/showthread.php?t=239188&amp;page=2" target="_blank">Download Auto-Session v1.5 MT4 Indicator</a></p>
<h3>TimeZone Indicator</h3>
<p>The TimeZone indicator displays time zones of the different currencies in a separate window. The screenshot below shows the Auto-Session v1.5 indicator in action.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/image3.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="TimeZone MT4 Indicator" border="0" alt="TimeZone MT4 Indicator" src="http://www.traineetrader.com/wp-content/uploads/2010/09/image_thumb3.png" width="500" height="233" /></a><a href="http://www.forexfactory.com/showthread.php?t=239188&amp;page=2" target="_blank">Download TimeZone MT4 Indicator</a>&#160; </p>
<h3>p4Clock MT4 Indicator</h3>
<p>The p4clock indicator has been around for quite sometime and displays different time zones in your preferred corners. It also displays your brokers time and how long is left in the current bar. The screenshot below shows the p4Clock indicator in action.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/image4.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="p4Clock MT4 Indicator" border="0" alt="p4Clock MT4 Indicator" src="http://www.traineetrader.com/wp-content/uploads/2010/09/image_thumb4.png" width="500" height="233" /></a> <a href="http://www.forexfactory.com/showthread.php?t=239188&amp;page=2" target="_blank">Download p4Clock MT4 Indicator</a>&#160; </p>
</p>
</p>
<h3>Forex Market Hours MT4 Indicator</h3>
<p>Forex Market Hours Indicator graphically displays the market overlap and the time in GMT that markets open. The screenshot below shows the Forex Market Hours indicator in action.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/09/image5.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 Market Hours MT4 Indicator" border="0" alt="Forex Market Hours MT4 Indicator" src="http://www.traineetrader.com/wp-content/uploads/2010/09/image_thumb5.png" width="500" height="235" /></a> <a href="http://www.forexfactory.com/showthread.php?t=239188&amp;page=2" target="_blank">Download Market Hours MT4 Indicator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/6-metatrader-indicators-to-help-you-tell-the-time-in-the-forex-market/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Forex From Scratch FREE eBook</title>
		<link>http://www.traineetrader.com/forex-from-scratch-free-ebook/</link>
		<comments>http://www.traineetrader.com/forex-from-scratch-free-ebook/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 02:09:27 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Banking]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[Yen]]></category>
		<category><![CDATA[eBook]]></category>
		<category><![CDATA[Trading]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/forex-from-scratch-free-ebook/</guid>
		<description><![CDATA[Forex From Scratch is an eBook designed to teach prospective currency traders the fundamentals. It is written in an easy to understand language and can be printed and read at your leisure. Essentially the eBook came about due to the volume of email I was getting asking for basic Forex information. I hope to revise [...]]]></description>
			<content:encoded><![CDATA[<p>Forex From Scratch is an eBook designed to teach prospective currency traders the fundamentals. It is written in an easy to understand language and can be printed and read at your leisure. Essentially the eBook came about due to the volume of email I was getting asking for basic Forex information. I hope to revise the book and expand on it so your feedback would be greatly appreciated.</p>
<h4>Sample Pages</h4>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/08/image1.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Forex From Scratch eBook" border="0" alt="Forex From Scratch eBook" src="http://www.traineetrader.com/wp-content/uploads/2010/08/image_thumb.png" width="500" height="246" /></a> </p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/08/image2.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Forex From Scratch eBook" border="0" alt="Forex From Scratch eBook" src="http://www.traineetrader.com/wp-content/uploads/2010/08/image_thumb1.png" width="500" height="246" /></a> </p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2010/08/image3.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Forex From Scratch eBook" border="0" alt="Forex From Scratch eBook" src="http://www.traineetrader.com/wp-content/uploads/2010/08/image_thumb2.png" width="500" height="248" /></a> </p>
<p>Download the eBook now FREE, just enter your details below and we will send you a FREE copy. A full table of contents is shown below.</p>
<p><!-- Begin MailChimp Signup Form --><br />
<!--[if IE]></p>
<style type="text/css" media="screen">
	#mc_embed_signup fieldset {position: relative;}
	#mc_embed_signup legend {position: absolute; top: -1em; left: .2em;}
</style>
<p><![endif]--><br />
<!--[if IE 7]></p>
<style type="text/css" media="screen">
	.mc-field-group {overflow:visible;}
</style>
<p><![endif]--><br />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script><br />
<script type="text/javascript" src="http://downloads.mailchimp.com/js/jquery.validate.js"></script><br />
<script type="text/javascript" src="http://downloads.mailchimp.com/js/jquery.form.js"></script></p>
<div id="mc_embed_signup">
<form action="http://traineetrader.us2.list-manage.com/subscribe/post?u=1ce92adc7191ca987adebc92b&amp;id=802e9fd095" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" style="font: normal 100% Arial, sans-serif;font-size: 10px;">
<fieldset style="-moz-border-radius: 4px;border-radius: 4px;-webkit-border-radius: 4px;border: 1px solid #000000;padding-top: 1.5em;margin: .5em 0;background-color: #FFFFFF;color: #000;text-align: left;">
<legend style="white-space: normal;text-transform: capitalize;font-weight: bold;color: #666666;background: #CCCCCC;padding: .5em 1em;border: 1px solid #000000;-moz-border-radius: 4px;border-radius: 4px;-webkit-border-radius: 4px;font-size: 1.2em;"><span>Get Your Free Book</span></legend>
<div class="indicate-required" style="text-align: right;font-style: italic;overflow: hidden;color: #000;margin: 0 9% 0 0;">* indicates required</div>
<div class="mc-field-group" style="margin: 1.3em 5%;clear: both;overflow: hidden;">
<label for="mce-EMAIL" style="display: block;margin: .3em 0;line-height: 1em;font-weight: bold;">Email Address <strong class="note-required">*</strong><br />
</label></p>
<input type="text" value="" name="EMAIL" class="required email" id="mce-EMAIL" style="margin-right: 1.5em;padding: .2em .3em;width: 90%;float: left;z-index: 999;">
</div>
<div class="mc-field-group" style="margin: 1.3em 5%;clear: both;overflow: hidden;">
<label for="mce-FNAME" style="display: block;margin: .3em 0;line-height: 1em;font-weight: bold;">First Name <strong class="note-required">*</strong><br />
</label></p>
<input type="text" value="" name="FNAME" class="required" id="mce-FNAME" style="margin-right: 1.5em;padding: .2em .3em;width: 90%;float: left;z-index: 999;">
</div>
<div class="mc-field-group" style="margin: 1.3em 5%;clear: both;overflow: hidden;">
    <label class="input-group-label" style="display: block;margin: .3em 0;line-height: 1em;font-weight: bold;">Email Format </label></p>
<div class="input-group" style="padding: .7em .7em .7em 0;font-size: .9em;margin: 0 0 1em 0;">
<ul style="margin: 0;padding: 0;">
<li style="list-style: none;overflow: hidden;padding: .2em 0;clear: left;display: block;margin: 0;">
<input type="radio" value="html" name="EMAILTYPE" id="mce-EMAILTYPE-0" style="margin-right: 2%;padding: .2em .3em;width: auto;float: left;z-index: 999;"><label for="mce-EMAILTYPE-0" style="display: block;margin: .4em 0 0 0;line-height: 1em;font-weight: bold;width: auto;float: left;text-align: left !important;">html</label></li>
<li style="list-style: none;overflow: hidden;padding: .2em 0;clear: left;display: block;margin: 0;">
<input type="radio" value="text" name="EMAILTYPE" id="mce-EMAILTYPE-1" style="margin-right: 2%;padding: .2em .3em;width: auto;float: left;z-index: 999;"><label for="mce-EMAILTYPE-1" style="display: block;margin: .4em 0 0 0;line-height: 1em;font-weight: bold;width: auto;float: left;text-align: left !important;">text</label></li>
<li style="list-style: none;overflow: hidden;padding: .2em 0;clear: left;display: block;margin: 0;">
<input type="radio" value="mobile" name="EMAILTYPE" id="mce-EMAILTYPE-2" style="margin-right: 2%;padding: .2em .3em;width: auto;float: left;z-index: 999;"><label for="mce-EMAILTYPE-2" style="display: block;margin: .4em 0 0 0;line-height: 1em;font-weight: bold;width: auto;float: left;text-align: left !important;">mobile</label></li>
</ul></div>
</div>
<div id="mce-responses" style="float: left;top: -1.4em;padding: 0em .5em 0em .5em;overflow: hidden;width: 90%;margin: 0 5%;clear: both;">
<div class="response" id="mce-error-response" style="display: none;margin: 1em 0;padding: 1em .5em .5em 0;font-weight: bold;float: left;top: -1.5em;z-index: 1;width: 80%;background: FBE3E4;color: #D12F19;"></div>
<div class="response" id="mce-success-response" style="display: none;margin: 1em 0;padding: 1em .5em .5em 0;font-weight: bold;float: left;top: -1.5em;z-index: 1;width: 80%;background: #E3FBE4;color: #529214;"></div>
</p></div>
<div>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn" style="clear: both;width: auto;display: block;margin: 1em 0 1em 5%;"></div>
</fieldset>
<p>	<a href="#" id="mc_embed_close" class="mc_embed_close" style="display: none;">Close</a><br />
</form>
</div>
<p><script type="text/javascript">
var fnames = new Array();var ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';var err_style = '';
try{
    err_style = mc_custom_error_style;
} catch(e){
    err_style = 'margin: 1em 0 0 0; padding: 1em 0.5em 0.5em 0.5em; background: FFEEEE none repeat scroll 0% 0%; font-weight: bold; float: left; z-index: 1; width: 80%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; color: FF0000;';
}
var mce_jQuery = jQuery.noConflict();
mce_jQuery(document).ready( function($) {
  var options = { errorClass: 'mce_inline_error', errorElement: 'div', errorStyle: err_style, onkeyup: function(){}, onfocusout:function(){}, onblur:function(){}  };
  var mce_validator = mce_jQuery("#mc-embedded-subscribe-form").validate(options);
  options = { url: 'http://traineetrader.us2.list-manage.com/subscribe/post-json?u=1ce92adc7191ca987adebc92b&#038;id=802e9fd095&#038;c=?', type: 'GET', dataType: 'json', contentType: "application/json; charset=utf-8",
                beforeSubmit: function(){
                    mce_jQuery('#mce_tmp_error_msg').remove();
                    mce_jQuery('.datefield','#mc_embed_signup').each(
                        function(){
                            var txt = 'filled';
                            var fields = new Array();
                            var i = 0;
                            mce_jQuery(':text', this).each(
                                function(){
                                    fields[i] = this;
                                    i++;
                                });
                            mce_jQuery(':hidden', this).each(
                                function(){
                                	if ( fields[0].value=='MM' &#038;&#038; fields[1].value=='DD' &#038;&#038; fields[2].value=='YYYY' ){
                                		this.value = '';
									} else if ( fields[0].value=='' &#038;&#038; fields[1].value=='' &#038;&#038; fields[2].value=='' ){
                                		this.value = '';
									} else {
	                                    this.value = fields[0].value+'/'+fields[1].value+'/'+fields[2].value;
	                                }
                                });
                        });
                    return mce_validator.form();
                }, 
                success: mce_success_cb
            };
  mce_jQuery('#mc-embedded-subscribe-form').ajaxForm(options);</p>
<p>});
function mce_success_cb(resp){
    mce_jQuery('#mce-success-response').hide();
    mce_jQuery('#mce-error-response').hide();
    if (resp.result=="success"){
        mce_jQuery('#mce-'+resp.result+'-response').show();
        mce_jQuery('#mce-'+resp.result+'-response').html(resp.msg);
        mce_jQuery('#mc-embedded-subscribe-form').each(function(){
            this.reset();
    	});
    } else {
        var index = -1;
        var msg;
        try {
            var parts = resp.msg.split(' - ',2);
            if (parts[1]==undefined){
                msg = resp.msg;
            } else {
                i = parseInt(parts[0]);
                if (i.toString() == parts[0]){
                    index = parts[0];
                    msg = parts[1];
                } else {
                    index = -1;
                    msg = resp.msg;
                }
            }
        } catch(e){
            index = -1;
            msg = resp.msg;
        }
        try{
            if (index== -1){
                mce_jQuery('#mce-'+resp.result+'-response').show();
                mce_jQuery('#mce-'+resp.result+'-response').html(msg);            
            } else {
                err_id = 'mce_tmp_error_msg';
                html = '
<div id="'+err_id+'" style="'+err_style+'"> '+msg+'</div>
<p>';</p>
<p>                var input_id = '#mc_embed_signup';
                var f = mce_jQuery(input_id);
                if (ftypes[index]=='address'){
                    input_id = '#mce-'+fnames[index]+'-addr1';
                    f = mce_jQuery(input_id).parent().parent().get(0);
                } else if (ftypes[index]=='date'){
                    input_id = '#mce-'+fnames[index]+'-month';
                    f = mce_jQuery(input_id).parent().parent().get(0);
                } else {
                    input_id = '#mce-'+fnames[index];
                    f = mce_jQuery().parent(input_id).get(0);
                }
                if (f){
                    mce_jQuery(f).append(html);
                    mce_jQuery(input_id).focus();
                } else {
                    mce_jQuery('#mce-'+resp.result+'-response').show();
                    mce_jQuery('#mce-'+resp.result+'-response').html(msg);
                }
            }
        } catch(e){
            mce_jQuery('#mce-'+resp.result+'-response').show();
            mce_jQuery('#mce-'+resp.result+'-response').html(msg);
        }
    }
}
</script><br />
<!--End mc_embed_signup-->
</p>
</p>
<h4>Table Of Contents</h4>
<p><strong>1. What’s All This Talk about Money?</strong></p>
<p>1.1. Introduction to Money</p>
<p>1.2. Characteristics of Money</p>
<p>1.3. Vodka as Money</p>
<p>1.4. Paying the Man</p>
<p><strong>2. The Forex Market, Exchange Rate &amp; Bid Ask Spreads</strong> </p>
<p>2.1. Introduction to the Forex Market</p>
<p>2.2. Over the Counter Markets</p>
<p>2.3. Example: Travel &amp; the Exchange Rate</p>
<p>2.4. Exchange Rates: Indirect Quotes</p>
<p>2.5. Exchange Rates: Direct Quote</p>
<p>2.6. Base Currency or Commodity Currency</p>
<p>2.7. Exchange Rates: The Bid Price</p>
<p>2.8. Exchange Rates: The Ask Price</p>
<p>2.9. Why is the Ask price always more than the Bid price? </p>
<p><strong>3. Pips, lots and a little bit of math</strong></p>
<p>3.1. Introduction</p>
<p>3.2 What is a Pip?</p>
<p>3.3. How Much is a Pip worth?</p>
<p>3.4. What is a Lot?</p>
<p>3.4. Pip Calculation: Indirect Currency</p>
<p>3.5. Pip Calculation: Direct Currency</p>
<p>3.5. Pip Calculation Summary</p>
<p><strong>4. Understanding the lingo</strong></p>
<p>4.1. Introduction &amp; Key Forex Terms</p>
<p>4.2. The Spot Market</p>
<p>4.3. The Long and Short of it</p>
<p>4.4. A Closer Look at Currency Symbols</p>
<p>4.5. Liquidity</p>
<p><strong>5. The Big Three in Forex: Leverage, Margin &amp; Equity</strong> </p>
<p>5.1. Introduction</p>
<p>5.2. Leverage</p>
<p>5.3. Margin</p>
<p>5.4. Equity</p>
<p>5.5. Final Word on Margin</p>
<p><strong>6. The Best Trading Times in the 24 Hour Market 22</strong></p>
<p>6.1. Introduction</p>
<p>6.2. When Can I Trade Forex?</p>
<p>6.3. Best Times to Trade Forex</p>
<p>6.4. Simple Time Zone Conversion</p>
<p><strong>7. Putting it Into Practice</strong></p>
<p>7.1. Setting up a Demo Account</p>
<p>7.2. MetaTrader Client Terminal</p>
<p>7.3. Creating a Chart in MetaTrader</p>
<p>7.4. Chart Time Frames</p>
<p>7.5. Charts Toolbar</p>
<p>7.6. Line Drawing Tools</p>
<p>7.7. Placing an Order</p>
<p>7.8. Modifying or Closing an Order</p>
<p>7.9. Moving Forward</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/forex-from-scratch-free-ebook/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Building an Automated FOREX System:  Writing the Pseudo Code</title>
		<link>http://www.traineetrader.com/building-an-automated-forex-system-writing-the-pseudo-code/</link>
		<comments>http://www.traineetrader.com/building-an-automated-forex-system-writing-the-pseudo-code/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 05:53:27 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[MetaEditor]]></category>
		<category><![CDATA[Pseudo Code]]></category>
		<category><![CDATA[Turtle Trading]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=971</guid>
		<description><![CDATA[In our last article we examined the basics of writing pseudo code and briefly looked at strategy design. If you have not read Designing a simple strategy and Pseudo Code you will need read that before continuing. In this article we will be translating the original Turtle Trader rules into pseudo code. This will ensure [...]]]></description>
			<content:encoded><![CDATA[<p>In our last article we examined the basics of writing pseudo code and briefly looked at strategy design. If you have not read <a href="http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/" target="_blank">Designing a simple strategy and Pseudo Code</a> you will need read that before continuing. In this article we will be translating the original Turtle Trader rules into pseudo code. This will ensure we have a good understanding of the trading system we will be implementing.</p>
<h3>Writing Pseudo Code in MeataEditor</h3>
<p>For simplicity reasons we will write our trend following system pseudo code in MetaEditor. Open MetaEditor from “[drive]:/Program Files/MetaTrader4/” folder. Alternatively you can open MetaTrader and press F4 or Tools –&gt; Meta Quotes Language Editor.</p>
<p><strong>Step One </strong></p>
<p>Create a New File of type Expert Advisor. File –&gt; New or CTRL +N.</p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://www.traineetrader.com/wp-content/uploads/2010/04/MQL.gif"><img class="aligncenter size-full wp-image-976" title="MQL Expert Advisor" src="http://www.traineetrader.com/wp-content/uploads/2010/04/MQL.gif" alt="MQL Expert Advisor, EA CODE" width="505" height="376" /></a></p>
<p style="text-align: left;"><strong>Step Two</strong></p>
<p style="text-align: left;">Click Next an enter appropriate details for the system. Call your Expert Advisor Turtle System.</p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://www.traineetrader.com/wp-content/uploads/2010/04/Box2.gif"><img class="aligncenter size-full wp-image-977" title="Expert Advisor" src="http://www.traineetrader.com/wp-content/uploads/2010/04/Box2.gif" alt="Expert Advisor Wizard EA, Turtle System" width="505" height="375" /></a></p>
<p style="text-align: left;"><strong>Finally,</strong> you should see a code window similar to the one below:</p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://www.traineetrader.com/wp-content/uploads/2010/04/CodeWindow.png"><img class="aligncenter size-full wp-image-978" title="CodeWindow" src="http://www.traineetrader.com/wp-content/uploads/2010/04/CodeWindow.png" alt="" width="508" height="401" /></a></p>
<p style="text-align: left;">We will be following the pseudo code convention outlined in the pseudo standard  presented in the previous<a href="http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/" target="_blank"> article</a>. We will enter the pseudo code as comments in MetaEditor, for simplicity we will use the quote modifier. Below is sample pseudo code I have written to implement most parts of the Turtle Trading system. This is the first iteration and there are errors present in the code. Can you find the errors in the pseudo code?</p>
<p style="text-align: left;">
<pre class="brush: text">// Calculate True Range
FUNCTION trueRange WITH todaysHigh AND todaysLow AND pDayClose
    RETURN CALL findMax((todaysHigh - todaysLow), abs(todaysHigh - pDayClose), abs(pDayClose - todaysLow))
END FUNCTION       

// Calculate N
FUNCTION calcN WITH prevN and trueRange
    RETURN (19 * prevN + trueRange) / 20
END FUNCTION

// Detrmine the dollar value of a pip
// 1 lot = 100,000 base currency
// PPV = Per Pip Value
FUNCTION PPV WITH lotSize, currentPrice, accCurrency, pipVal
    inCurr = pipVal / currentPrice
    RETURN accCurrency * inCurr * (lotSize *100000)
END FUNCTION

// Calculate the dollar volatility of a currency pair
FUNCTION dollarVol WITH n AND ppv
    RETURN n * ppv
END FUNCTION

// Calculate unit value for given account
FUNCTION calcUnit WITH dollarVol, accBalance
    return (0.01 * accBalance) / dollarVol
END FUNCTION

// Misc rules
// max 12 units in one direction
// if account drops 10% reduce available equity by 20%

////////////////////// Entries ///////////////////
// System One A shorter term 20 period breakout
// buy or sell 20 period breakout
// buy or sell 1 unit
// if previous breakout winner skip trade
// losing if previous breakout 2N loss
// stops set at 2n below entry

IF currentPrice &gt; 20periodHigh AND prevLongTradeLoser THEN
    CALL buyCurr
ELSE IF currentPrice &lt; 20periodLow AND prevShortTradeLoser THEN
    CALL sellCurr
END

// System Two 55 period breakout entry
IF currentPrice &gt; 55periodHigh AND THEN
    CALL buyCurr
ELSE IF currentPrice &lt; 55periodLow THEN
    CALL sellCurr
END

// Adding units
// Additional units added stops raised by half n
// add a unit every 1n move
IF tradeLong AND currentPrice &gt; (lngEntPrice + n) THEN
    CALL buyCurr
    CALL adjStop
ELSE IF tradeShort AND currentPrice &lt; (lngEntPrice - n) THEN
    CALL sellCurr
    CALL adjStop
END

///////////////////Exits ///////////////////////
// System one
// 10 period low for long posn
// 10 period high for short posn 

IF s1tradeLong AND currentPrice &lt; 10periodLow THEN
    CALL sellCurr
ELSE IF s1tradeShort AND currentPrice &gt; 10periodHigh THEN
    CALL buyCurr
END

// System two exit
// 20 period low for long posn
// 20 period high for short posn

IF s2tradeLong AND currentPrice &lt; 20periodLow THEN
    CALL sellCurr
ELSE IF s2tradeShort AND currentPrice &gt; 20periodHigh THEN
    CALL buyCurr
END</pre>
<p>As you can see this code gives us an excellent starting point for the development of our Turtle Trading system. In the next article we will go through the specifics of coding in MQL. I have provided a basic implementation of the code for this trading system but you will derive most benefit from creating your own implementations of this system.</p>
<p><strong>Related Articles</strong></p>
<ul>
<li><strong><a href="http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/" target="_blank"> Building an Automated FOREX System: Designing a Simple Strategy and Introduction to Pseudo Code.</a></strong></li>
<li><strong><a href="http://www.traineetrader.com/building-an-automated-forex-system-expert-advisors-indicators/" target="_blank">Building an Automated FOREX System: Expert Advisors &amp; Indicators</a></strong></li>
<li><strong><a href="http://www.traineetrader.com/building-an-automated-currency-trading-system-from-scratch/" target="_blank">Building an automated currency trading system from scratch.</a></strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/building-an-automated-forex-system-writing-the-pseudo-code/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>Game Theory &#8211; Learn The Basics of Game Theory</title>
		<link>http://www.traineetrader.com/game-theory-learn-the-basics-of-game-theory/</link>
		<comments>http://www.traineetrader.com/game-theory-learn-the-basics-of-game-theory/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 00:15:36 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[Psychology]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=851</guid>
		<description><![CDATA[I am sure most of my readers will be familiar with Game Theory as the most likely studied it at college. If however you are one of the lucky/unlucky ones not to be introduced to the wonderful world of game theory then read on. What the Hell is Game Theory? The wikitionary describes Game Theory [...]]]></description>
			<content:encoded><![CDATA[<p>I am sure most of my readers will be familiar with Game Theory as the most likely studied it at college. If however you are one of the lucky/unlucky ones not to be introduced to the wonderful world of game theory then read on.</p>
<p><strong>What the Hell is Game Theory?</strong></p>
<p>The wikitionary describes Game Theory as:</p>
<blockquote><p>Game theory attempts to mathematically capture behavior in strategic situations, in which an individual&#8217;s success in making choices depends on the choices of others. While initially developed to analyze competitions in which one individual does better at another&#8217;s expense (zero sum games), it has been expanded to treat a wide class of interactions, which are classified according to several criteria.</p></blockquote>
<p>I know what you are thinking, that sounds complicated and boring. Before you give up on it however you might like to look at Yale Universities FREE <a href="http://oyc.yale.edu/economics/game-theory/" target="_blank">Introduction to Game Theory </a>course. The course is highly practical and covers the basic concepts of Game Theory. You can download the videos and watch them at your own pace.</p>
<h2>Topics Covered</h2>
<ol>
<li>Introduction: five first lessons</li>
<li>Putting yourselves into other people’s shoes</li>
<li>Iterative deletion and the median-voter theorem</li>
<li>Best responses in soccer and business partnerships</li>
<li>Nash equilibrium: bad fashion and bank runs</li>
<li>Nash equilibrium: dating and Cournot</li>
<li>Nash equilibrium: shopping, standing and voting on a line</li>
<li>Nash equilibrium: location, segregation and randomization</li>
<li>Mixed strategies in theory and tennis</li>
<li>Mixed strategies in baseball, dating and paying your taxes</li>
<li>Evolutionary stability: cooperation, mutation, and equilibrium</li>
<li>Evolutionary stability: social convention, aggression, and cycles</li>
<li>Sequential games: moral hazard, incentives, and hungry lions</li>
<li>Backward induction: commitment, spies, and first-mover advantages</li>
<li>Backward induction: chess, strategies, and credible threats</li>
<li>Backward induction: reputation and duels</li>
<li>Backward induction: ultimatums and bargaining</li>
<li>Imperfect information: information sets and sub-game perfection</li>
<li>Subgame perfect equilibrium: matchmaking and strategic investments</li>
<li>Subgame perfect equilibrium: wars of attrition</li>
<li>Repeated games: cooperation vs. the end game</li>
<li>Repeated games: cheating, punishment, and outsourcing</li>
<li>Asymmetric information: silence, signaling and suffering education</li>
<li>Asymmetric information: auctions and the winner’s curse</li>
</ol>
<p>If you manage to get through these <a href="http://oyc.yale.edu/economics/game-theory/" target="_blank">videos</a> you will have and excellent understanding of the fundamentals of Game Theory and it might just help your trading.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">gggggIntroduction: five first lessons</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Putting yourselves into other people’s shoes</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Iterative deletion and the median-voter theorem</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Best responses in soccer and business partnerships</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Nash equilibrium: bad fashion and bank runs</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Nash equilibrium: dating and Cournot</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Nash equilibrium: shopping, standing and voting on a line</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Nash equilibrium: location, segregation and randomization</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Mixed strategies in theory and tennis</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Mixed strategies in baseball, dating and paying your taxes</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Evolutionary stability: cooperation, mutation, and equilibrium</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Evolutionary stability: social convention, aggression, and cycles</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Sequential games: moral hazard, incentives, and hungry lions</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Backward induction: commitment, spies, and first-mover advantages</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Backward induction: chess, strategies, and credible threats</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Backward induction: reputation and duels</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Backward induction: ultimatums and bargaining</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Imperfect information: information sets and sub-game perfection</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Subgame perfect equilibrium: matchmaking and strategic investments</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Subgame perfect equilibrium: wars of attrition</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Repeated games: cooperation vs. the end game</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Repeated games: cheating, punishment, and outsourcing</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Asymmetric information: silence, signaling and suffering education</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 277px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Asymmetric information: auctions and the winner’s cur</div>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/game-theory-learn-the-basics-of-game-theory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keep track of time when trading around news announcements</title>
		<link>http://www.traineetrader.com/keep-track-of-time-when-trading-around-news-announcements/</link>
		<comments>http://www.traineetrader.com/keep-track-of-time-when-trading-around-news-announcements/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 01:49:31 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Calendar]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[Fundamentals]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/keep-track-of-time-when-trading-around-news-announcements/</guid>
		<description><![CDATA[Timing I am sure everyone is aware how crucial timing is. In the foreign currency or FOREX market it becomes even more important. If you haven&#8217;t already read my article on The best trading times in the 24 hour Forex market I would advise you to take a look.Depending on your trading style it is [...]]]></description>
			<content:encoded><![CDATA[<p>Timing I am sure everyone is aware how crucial timing is. In the foreign currency or FOREX market it becomes even more important. If you haven&#8217;t already read my article on <a href="http://www.traineetrader.com/the-best-trading-times-in-the-24-hour-forex-market/">The best trading times in the 24 hour Forex market</a> I would advise you to take a look.Depending on your trading style it is also important to know the timing of news announcements and the currency&#8217;s they will likely effect. The two best free resources I have found for economic based news announcements are:</p>
<p><strong>Forex Factory Calendar</strong>- This is one of the best free calendars  around, previous result and forecast result are shown as well as a link to the page were the news announcement will be posted. The Forex Factory Calendar also allows you to alter the time zone settings to display what time a news announcement will occur in your region which is handy if you don&#8217;t have a program like <a href="http://www.regnow.com/softsell/visitor.cgi?affiliate=95164&amp;action=site&amp;vendor=12892" target="_blank">ZoneTick</a>. Forex Factory Calendar also allows you to setup email alerts for news events.<span id="more-242"></span><a href="http://www.forexfactory.com/calendar.php"></a></p>
<p style="text-align: center"><a href="http://www.forexfactory.com/calendar.php"><img style="border-width: 0px" src="http://www.traineetrader.com/wp-content/uploads/2008/01/image2.png" border="0" alt="Forex Calendar" width="504" height="286" /></a></p>
<p><a href="http://www.forexfactory.com/calendar.php"></a></p>
<p><strong>Bloomberg Economic Calendar</strong>- This is a very US centric calendar, market focus is highlighted for the current day at the top of the calendar. The Bloomberg calendar also has a very intuitive slider base interface for navigating day and date of interest. Boomberg calendar also goes into a bit more detail about each event and for the bigger events a consensus is provided. It should be noted that Bloomberg licenses the calendar data from Econoday. <a href="http://www.bloomberg.com/markets/ecalendar/index.html" target="_blank"></a></p>
<p style="text-align: center"><a href="http://www.bloomberg.com/markets/ecalendar/index.html" target="_blank"><img style="border-width: 0px" src="http://www.traineetrader.com/wp-content/uploads/2008/01/image3.png" border="0" alt="Bloomberg Economic News" width="504" height="348" /></a></p>
<p>Some of the bigger news announcements can tend to move the market anywhere from 20 to 100 pips. If you are a new trader I would definitely stay clear of trading around these times.  I use ZoneTick to keep track of these news events, with the release of the new version including countdown timers and stopwatches.<strong><br />
</strong></p>
<p><strong>My ZoneTick Setup</strong></p>
<p>At the moment I am monitoring three time zones in the task bar Tokyo, London and New York. When a market is open the clock has a green background and when a market is closed the clock has a purple background. Alarms can also be set for each clock. This can be seen in the screen shot below:<a href="http://www.traineetrader.com/wp-content/uploads/2008/01/timejpg.jpg"></a></p>
<p style="text-align: center"><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/timejpg.jpg"><img style="border-width: 0px" src="http://www.traineetrader.com/wp-content/uploads/2008/01/timejpg-thumb.jpg" border="0" alt="timejpg" width="504" height="379" /></a></p>
<p>In the screen shot above you will also notice the three countdown timers. These are new to ZoneTick version 4 and are very configurable. At the moment I am monitoring the AUD/USD So I have setup my countdown timers to countdown to these events. The real beauty of ZoneTick is that I can enter an event in the countdown timer and I can use any world wide time zone I wish without having to manually convert to my local time zone.<a href="http://www.traineetrader.com/wp-content/uploads/2008/01/image4.png"></a></p>
<p style="text-align: center"><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/image4.png"><img style="border-width: 0px" src="http://www.traineetrader.com/wp-content/uploads/2008/01/image-thumb.png" border="0" alt="image" width="504" height="383" /></a></p>
<p>Unemployment Claims announcement will be occurring later this week. This announcement occurs at 8:30 AM New York time so I simply enter this in my location field. Then I set the countdown timer to automatically open the web page when the announcement is released. In addition to this you can add alarms to sound at a given time before the event and change the colour of the countdown timer for the last five minutes before news is released.</p>
<p><strong>Taking it to the next level</strong></p>
<p>This is a good start however I am working on a program that will download the latest announcement, use text mining and artificial intelligence and then recommend a buy or sell signal for the given currency(<em>this is a long way off</em>). I am very happy with ZoneTick for the moment and I would recommend to any currency trader.</p>
<p align="center">You can download it and try it for 30 days: <a href="http://www.regnow.com/trialware/download/Download_zonetick_3_5_trial_regnow.exe?item=12892-1&amp;affiliate=95164">Download ZoneTick</a>.</p>
<p align="center">or</p>
<p align="center">You can read more about ZoneTick on their <a href="http://www.regnow.com/softsell/visitor.cgi?affiliate=95164&amp;action=site&amp;vendor=12892">web site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/keep-track-of-time-when-trading-around-news-announcements/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft Excel Tutorial Series: The basic&#8217;s data entry and navigation</title>
		<link>http://www.traineetrader.com/microsoft-excel-tutorial-series-the-basics-data-entry-and-navigation/</link>
		<comments>http://www.traineetrader.com/microsoft-excel-tutorial-series-the-basics-data-entry-and-navigation/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 06:22:10 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Basics]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Spreadsheet]]></category>
		<category><![CDATA[Trading System]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/microsoft-excel-tutorial-series-the-basics-data-entry-and-navigation/</guid>
		<description><![CDATA[If you have not already read the brief introduction to Excel 2007 I would advise you do so before continuing on with this tutorial series. You may be asking yourself what is the point using Excel as an analysis platform when there are products such as Wealth Lab and TradeStation available. I think that it [...]]]></description>
			<content:encoded><![CDATA[<p>If you have not already read the brief introduction to Excel 2007 I would advise you do so before continuing on with this tutorial series. You may be asking yourself what is the point using Excel as an analysis platform when there are products such as Wealth Lab and TradeStation available. I think that it is important that every trader be able to understand the underlying concepts of the indicators they are using and be able to analyse data. By undertaking this tutorial series you will also get the chance to learn by doing, which helps re-enforces concepts much better than if you were to just passively read the articles.</p>
<p>When you first start Microsoft Excel 2007, you will be presented with a screen similar to the one shown below. The key areas and terminology are also highlighted.<span id="more-233"></span></p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/excelbasicscreen.png"></a></p>
<p style="text-align: center"><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/excelbasicscreen.png"><img style="border-width: 0px" src="http://www.traineetrader.com/wp-content/uploads/2008/01/excelbasicscreen-thumb.png" border="0" alt="ExcelBasicScreen" width="504" height="383" /></a></p>
<p align="left">
<ol>
<li>The active cell has a square border surrounding it. A cell can be activated by single clicking.</li>
<li>The formula bar allows formulas or data can be entered in this area. If you wish to insert a formula, the first character in this bar must be the equals sign.</li>
<li>The cell format controls will probably be the most extensively used control. The format options include general (no specific format), number, currency, accounting, short date, long date, time, percentage, fraction, scientific and text.</li>
<li>The expand formula button is useful when entering complex formulas as it allows you to see the whole formula without having to scroll.</li>
<li>This button allows for the recording of a macro and is an easy way to tell if a macro is currently being recorded.</li>
<li>The active sheet is the highlighted sheet at the bottom of the screen. A sheet can be made active by simply single clicking on it. To rename the sheet you simply double click on it.</li>
<li>Inactive sheets are every other sheet that resides in a workbook that are not currently active. These have a gray appearance.</li>
<li>You can add new sheets to the workbook by clicking this button.</li>
<li>The status bar gives you instant feedback about the current operation.</li>
<li>Page layout allows you to change the layout of pages on screen. You have three options normal, page layout, or page break preview.</li>
<li>Page zoom allows you to dynamically zoom in and out of the current workspace.</li>
</ol>
<p>This has been a very quick introduction to the main navigational components and terminology used in Excel.</p>
<p><strong>Calculating the average closing stock price</strong></p>
<p>In our new spreadsheet the first thing we will do is name the active sheet by double clicking on it, we will call the sheet “StockInfo”.</p>
<p>Click to activate cell A1 and enter the text “Day”.</p>
<p>Click in Cell B2 to activate it and enter the text “Adjusted Close”. You will need to adjust the cell to accommodate the text. The process is shown in the image below.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/excelincreasecellsize.png"></a></p>
<p style="text-align: center"><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/excelincreasecellsize.png"><img style="border-width: 0px" src="http://www.traineetrader.com/wp-content/uploads/2008/01/excelincreasecellsize-thumb.png" border="0" alt="ExcelIncreaseCellSize" width="504" height="81" /></a></p>
<p>Click in cell A8 to activate it and enter the text “Average Closing Price”. You will have to follow the procedure outlined above to increase the size of the cell to accommodate the text.</p>
<p>Under the day column, starting in A2 enter each day of the week in a new cell.</p>
<p>Enter the following adjusted close prices in the adjusted close column, starting at B2 enter the closing price for each day.</p>
<table style="height: 110px;" border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="200" align="left" valign="top">Day</td>
<td width="200" valign="top">Adjusted Close Price</td>
</tr>
<tr>
<td width="200" valign="top">Monday</td>
<td width="200" valign="top">$12.56</td>
</tr>
<tr>
<td width="200" valign="top">Tuesday</td>
<td width="200" valign="top">$11.84</td>
</tr>
<tr>
<td width="200" valign="top">Wednesday</td>
<td width="200" valign="top">$8.56</td>
</tr>
<tr>
<td width="200" valign="top">Thursday</td>
<td width="200" valign="top">$9.00</td>
</tr>
<tr>
<td width="200" valign="top">Friday</td>
<td width="200" valign="top">$8.90</td>
</tr>
</tbody>
</table>
<p><span style="text-decoration: underline;">Notice</span> the closing prices do not have a preceding dollar sign. Before we move on, we need to change the format of these adjusted close prices from general. To do this select all of the adjusted close prices and click on the dollar sign in the cell formatting controls box.</p>
<p>As I am sure you all know a simple average is merely the sum of all of the individual observations divided by the number of observations. In this example it would be</p>
<blockquote><p>MondayClose + TuesdayClose + WednesdayClose + ThursdayClose + FridayClose / 5</p></blockquote>
<p>Excel makes this process simple with the use of formulas. Before we enter the formula, we will set the format of the cell B8 to currency as described above.</p>
<p>To indicate to Excel that we are entering a formula the first character you enter must be an equal’s sign. So activate cell B8 and enter the = sign. As we can see from the formula above, we need to add each day’s closing price and divide by 5. Enter the formula as shown below.</p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/excelformulaadd.png"></a></p>
<p style="text-align: center"><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/excelformulaadd.png"><img style="border: 0px none " src="http://www.traineetrader.com/wp-content/uploads/2008/01/excelformulaadd-thumb.png" border="0" alt="ExcelFormulaAdd" width="504" height="166" /></a></p>
<p>If everything has been entered correctly, you should have an average adjusted close price of $10.17.</p>
<p><strong>Trainee Trader Homework</strong></p>
<p>That’s right you have homework to do, first go through the worked example above.</p>
<table style="height: 218px;" border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Day</td>
<td width="133" valign="top">Adjusted Close</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Monday</td>
<td width="133" valign="top">$13.52</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Tuesday</td>
<td width="133" valign="top">$12.20</td>
</tr>
<tr>
<td width="133" valign="top">Week One</td>
<td width="133" valign="top">Wednesday</td>
<td width="133" valign="top">$12.68</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Thursday</td>
<td width="133" valign="top">$11.98</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Friday</td>
<td width="133" valign="top">$11.50</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top"></td>
<td width="133" valign="top"></td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Monday</td>
<td width="133" valign="top">$12.25</td>
</tr>
<tr>
<td width="133" align="center" valign="top"></td>
<td width="133" valign="top">Tuesday</td>
<td width="133" valign="top">$13.12</td>
</tr>
<tr>
<td width="133" valign="top">Week Two</td>
<td width="133" valign="top">Wednesday</td>
<td width="133" valign="top">$13.85</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Thursday</td>
<td width="133" valign="top">$14.25</td>
</tr>
<tr>
<td width="133" valign="top"></td>
<td width="133" valign="top">Friday</td>
<td width="133" valign="top">$11.50</td>
</tr>
</tbody>
</table>
<p align="center">
<p align="left">
<ol>
<li>Enter this data above into excel</li>
<li>Adjust the size of any columns so all the text is visible</li>
<li>Format the adjusted close price as currency.</li>
<li>Calculate week ones average adjusted closing price.</li>
<li>Calculate week twos average adjusted closing price.</li>
<li>Calculate the combined week one and two average adjusted closing price.</li>
</ol>
<p>I have attached the answers in an excel spreadsheet download this after you have worked through the problem. If you have any questions at all please add them in the comments field below.</p>
<p id="scid:8eb9d37f-1541-4f29-b6f4-1eea890d4876:632060b7-0737-4bda-b0e5-5b24cac2c1b5" class="wlWriterSmartContent" style="margin: 0px; padding: 0px; display: inline"><a href="http://www.traineetrader.com/wp-content/uploads/2008/01/traineetradertutorialonehomeworkans1.xls" target="_self">TraineeTraderTutorialOneHomeworkAns.xls</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/microsoft-excel-tutorial-series-the-basics-data-entry-and-navigation/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Weekend Reading</title>
		<link>http://www.traineetrader.com/weekend-reading/</link>
		<comments>http://www.traineetrader.com/weekend-reading/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 04:31:28 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Reading]]></category>

		<guid isPermaLink="false">http://traineetrader.com/weekend-reading/</guid>
		<description><![CDATA[It has been a rather hectic week and I am sure they will only get busier in the lead up to christmas. Today as the weekend nears I am posting some interesting articles from far corners of the interweb. Enjoy. Never bet against the house. Recession starts next Tuesday. End of year financial checklist. How [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a rather hectic week and I am sure they will only get busier in the lead up to christmas.  Today as the weekend nears I am posting some interesting articles from far corners of the interweb. Enjoy.</p>
<ul>
<li> <a href="http://www.minyanville.com/articles/index/a/15167" title="Never bet">Never bet against the house.</a></li>
<li><a href="http://www.optionetics.com/market/articles/18650">Recession starts next Tuesday.</a></li>
<li><a href="http://www.thestreet.com/s/make-your-end-of-year-financial-checklist/funds/saving-money/10394303.html?puc=_tsccom" target="_blank">End of year financial checklist.</a></li>
<li><a href="http://www.investortrip.com/how-to-recognize-stock-market-manipulation-vs-normal-stock-market-movement/" target="_blank">How to recognize stock market manipulation.</a></li>
<li><a href="http://businomics.typepad.com/businomics_blog/2007/12/retail-sales-go.html" target="_blank">Retail sales analysis</a></li>
<li><a href="http://www.jeremybroomfield.com/munger2.pdf" target="_blank">The psychology of human misjudgment (PDF)</a></li>
<li><a href="http://www.economicprincipals.com/issues/07.08.19.html" target="_blank">Dealing with sympathetic bias</a></li>
</ul>
<p><br class="webkit-block-placeholder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/weekend-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Money as Debt Videos</title>
		<link>http://www.traineetrader.com/213/</link>
		<comments>http://www.traineetrader.com/213/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 10:35:50 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Banking]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Banking System]]></category>
		<category><![CDATA[Debt]]></category>
		<category><![CDATA[Greed]]></category>

		<guid isPermaLink="false">http://traineetrader.com/213/</guid>
		<description><![CDATA[I came across a documentary on youtube that investigates the banking system. I must say from the outset this is a very biased look at the banking system and in places it is factually incorrect. That being said it is still worth a look as it does provide some basic information about the banking system. [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a documentary on youtube that investigates the banking system. I must say from the outset this is a very biased look at the banking system and in places it is factually incorrect. That being said it is still worth a look as it does provide some basic information about the banking system. The documentary is described as:</p>
<blockquote><p>A highly informative and easy to understand film covers just about everything that isn&#8217;t taught in school regarding the corrupt banking system. It explains how these institutions get away with robbing the unsuspecting public by creating monetary policies designed to enslave society, while keeping the system in a perpetual state of rising debt.</p></blockquote>
<p>I will only post the first three videos as I think the final two videos are so biased as to be of little use.<br />
<span id="more-213"></span><br />
<strong>Corrupt Banking System &#8211; Cartels Robbing the Public</strong></p>
<p>This video delves into a brief stylised history of the banking system, loans and Fiat currency.</p>
<p><embed src="http://www.youtube.com/v/cy-fD78zyvI&amp;rel=1" wmode="transparent" height="355" width="425"></embed></p>
<p><strong>Corrupt Banking System &#8211; How Money is Created</strong></p>
<p>This video looks into the modern monetary system, the loan establishment process and a very simplified version of the multiplier effect.</p>
<p><embed src="http://www.youtube.com/v/hfXavRTM4Fg&amp;rel=1" wmode="transparent" height="355" width="425"></embed></p>
<p><strong>Corrupt Banking System &#8211; Money is Debt</strong></p>
<p>This video explores money as debt theory and highlights how interest payments exceed principal. The end of the video starts to look at monetary system reforms.</p>
<p><embed src="http://www.youtube.com/v/_yvRZoM-2r8&amp;rel=1" wmode="transparent" height="355" width="425"></embed></p>
<p>The final two videos in my opinion are far to biased to be of any real use. I have to say these videos provide a basic introduction to the monetary system and provide it in an easy to understand manner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/213/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

