<?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; FOREX</title>
	<atom:link href="http://www.traineetrader.com/category/forex/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>Fri, 05 Mar 2010 00:38:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Designing a Simple Strategy and Introduction to Pseudo Code</title>
		<link>http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/</link>
		<comments>http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 06:06:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FOREX]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[Expert Advisor]]></category>
		<category><![CDATA[System ATS]]></category>
		<category><![CDATA[Trading System]]></category>
		<category><![CDATA[Trend]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/</guid>
		<description><![CDATA[Today we will be looking at designing a simple strategy and we will also start to write some pseudo code in MetaEditor. This is of course a multi part tutorial series and if you have not read the previous articles I suggest you do so before moving on to this article. In the previous article [...]]]></description>
			<content:encoded><![CDATA[<p>Today we will be looking at designing a simple strategy and we will also start to write some pseudo code in MetaEditor. This is of course a multi part tutorial series and if you have not read the previous articles I suggest you do so before moving on to this article. In the previous article on <a href="http://www.traineetrader.com/building-an-automated-forex-system-expert-advisors-indicators/" target="_blank">Expert Advisors (EA) and indicators</a> we touched on the different ways we can automate trading, today we will focus on Expert Advisors (EA).</p>
<p>&#160;</p>
<h3>Strategy Design</h3>
<p>Designing a trading strategy could be the focus of whole encyclopedia, what we discuss here will simply be a quick overview. In it’s simplest from a trading strategy is simply&#160; a set of predefined rules for executing trading decisions. By using an automated trading strategy emotional bias is removed. There are several different types of trading strategies that have been used over the years and usually fall into one of the following categories:&#160; </p>
<ul>
<li>Fundamental Analysis based systems.</li>
<li>Technical Analysis Based systems.</li>
<li>Volatility based systems</li>
<li>Mean reversion based systems.</li>
<li>Trend Following systems.</li>
</ul>
<h3>Building a Trend Following Based System</h3>
<p>We will be building a Trend Following system, this will be a very basic system and will help highlight the development process. When developing a trading system it is very tempting to try and re-invent the wheel, however we will start with a tried and tested system that is publically available. The trading system we will be implementing is the original Turtle Trading System and you will need to <a href="https://www.bsp-capital.com/documents/turtlerules.pdf" target="_blank">download</a> a copy of the rules in order to continue with the tutorial. </p>
<h3>Learning to Write Pseudo Code</h3>
<p>Before reading any more make sure you have printed out and read through the original Turtle Trading System Rules document. This step is very important as the only way to learn this materiel is by taking action and carrying out the steps outlined.</p>
<p align="center"><font color="#ff0000" size="5">STOP!</font></p>
<p>Now we can get on with our discussion of pseudo code. When it comes to writing computer programs or in this case automated trading systems translating English into programming code can be fraught with danger. Pseudo Code on the other hand refers to a more structured English for describing a process or program. It is important that you learn to write quality pseudo code as it will make a big difference when you come to coding your system your self or hiring a programmer. </p>
<p>There are many benefits in writing your algorithms or trading logic in pseudo code these include: </p>
<ul>
<li>You will gain a detailed understanding of the program or algorithm you are developing.</li>
<li>Errors in logic picked up early.</li>
<li>Not constrained by a single programming language.</li>
</ul>
<p>Below is a brief example of pseudo code: </p>
<p>IF movingAverage1 == movingAverage2 THEN   <br />&#160;&#160;&#160; SEND buyOrder    <br />END IF</p>
<h3>Structured Pseudo Code</h3>
<p>In order for us to write quality code we have to take a step back and think about what it is we are actually trying to achieve. Rather then using a trading example we will use an example that everyone is familiar with. Think about the process of going to the shop and buying 1 item let’s say it is milk. What I will ask you to do is sit down and write a step by step process that you could give to a an alien that describes the process in as much detail as possible.</p>
<p align="center"><font color="#ff0000" size="5">STOP!</font></p>
<p>Do not move on until you have done this.&#160; Below is the first iteration of solving the get milk problem:</p>
<p>Get into the car –&gt; Start the car –&gt; Drive to the closest shop that sells milk –&gt; Get Out of Car –&gt; Lock Car</p>
<p>Enter shop –&gt; Locate milk –&gt; Determine quantity –&gt; Pay for milk –&gt; Locate car –&gt; Unlock Car –&gt; Drive home.</p>
<p>As you can see if you think about the steps required to carry out this task it is much more complex then first thought. Let’s try and make this a bit more detailed iteration two:</p>
<blockquote><p>DEFINE approxMilkCost</p>
<p>DEFINE moneyInWallet </p>
<p>&#160;</p>
<p>IF moneyInWallet &lt; approxMilkCost THEN</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL enterCar WITH keys</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL driveTo WITH bank</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL leaveCar</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL getMoneyFromBank WITH accountDetails</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL driveTo WITH shop</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL leaveCar</p>
<p>ELSE</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL enterCar WITH keys</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL driveTo WITH shop</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CALL leaveCar</p>
<p>ENDIF</p>
<p>&#160;</p>
<p>enter shop</p>
<p>CALL locateItem WITH milk</p>
<p>CALL payForItem WITH money</p>
<p>leave shop</p>
<p>CALL enterCar WITH keys</p>
<p>CALL driveTo WITH home</p>
<p>CALL leaveCar</p>
</blockquote>
<p>You can quickly see that by using a more formal language it breaks down complex tasks into simple steps. If we wanted to write a program to solve this problem we would probably go through several more iterations of pseudo code before actually starting coding. I have created a <a href="http://bit.ly/dqwsRN" target="_blank">PDF file</a> and have uploaded it so you can fully understand the pseudo code presented and can practice writing some pseudo code for yourself.&#160; In the next article we will be looking at writing our trend following system out in pseudo code so make sure you review everything presented here.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=887&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/designing-a-simple-strategy-and-introduction-to-pseudo-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building an Automated FOREX System: Expert Advisors &amp; Indicators</title>
		<link>http://www.traineetrader.com/building-an-automated-forex-system-expert-advisors-indicators/</link>
		<comments>http://www.traineetrader.com/building-an-automated-forex-system-expert-advisors-indicators/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 01:31:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[ATS]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[Indicators]]></category>
		<category><![CDATA[MetaEditor]]></category>
		<category><![CDATA[Trading System]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/building-an-automated-forex-system-expert-advisors-indicators/</guid>
		<description><![CDATA[This is article number two in our tutorial series Building an Automated Currency Trading System from Scratch. If you have not read the introduction to this tutorial series I recommend you read building an ATS before reading this article.
MetaTrader 4
The current version that is most widely used and supported is MetaTrader 4 however beta versions [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: medium;"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Ind" src="http://www.traineetrader.com/wp-content/uploads/2010/02/Ind.png" border="0" alt="Ind" width="184" height="410" align="right" /></span>This is article number two in our tutorial series Building an Automated Currency Trading System from Scratch. If you have not read the introduction to this tutorial series I recommend you read <a href="http://www.traineetrader.com/building-an-automated-currency-trading-system-from-scratch/" target="_blank">building an ATS</a> before reading this article.</p>
<p><span style="font-size: medium;">MetaTrader 4</span></p>
<p>The current version that is most widely used and supported is MetaTrader 4 however beta versions of MetaTrader 5 are currently in testing. In order to build an automated trading system using MetaTrader 4 we will need to write a program that will run inside MetaTrader. There are three types of programs that run inside MetaTrader, these are Custom Indicators, Expert Advisors and Scripts. The screen shot on the right shows the built in indicators that ship with MetaTrader.</p>
<p align="center">
<p><span style="font-size: medium;">MetaTrader- MetaQuotes Language</span></p>
<p>Custom Indicators, Expert Advisors and scripts are all written in a programming language called MetaQuotes Language, often abbreviated MQL.  Although all three application types are written in MQL there are slight differences between program types.</p>
<p><span style="font-size: medium;">MetaTrader- Indicators and Custom Indicators</span></p>
<p>Custom indicators are written in MQL the client terminal will execute the indicator every time a tick is received. The main use of indicators is to graphically display some user defined or built in data relationship. The most common use for indicators is for Technical Analysis. Below are some screenshots which show a built-in indicator being applied to the daily AUD/USD currency chart.</p>
<ol>
<li>With AUD/USD chart open double click on desired indicator.</li>
<li>Enter parameter settings and execute.</li>
</ol>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2010/02/IndSetting.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Indicator Setting MetaTrader" src="http://www.traineetrader.com/wp-content/uploads/2010/02/IndSetting_thumb.png" border="0" alt="Indicator Setting MetaTrader" width="504" height="326" /></a></p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="MACD Indicator" src="http://www.traineetrader.com/wp-content/uploads/2010/02/MetaInd.png" border="0" alt="MACD Indicator" width="504" height="392" /></p>
<p><span style="font-size: medium;">MetaTrader- Expert Advisors</span></p>
<p>An Expert Advisor or EA for short share similar properties to Indicators. Expert Advisors or EA’s are written in MQL and are executed on tick data. Expert Advisors or EA’s have trade logic written into them. Basically an EA does everything an indicator can do, however an EA will also open, close and modify trades programmatically. To attach an EA to a currency pair the process is exactly the same as it is for an indicator. There are two sample EA’s that ship with MetaTrader 4 these are the MACD Sample and Moving Average.</p>
<p><span style="font-size: medium;">MetaTrader- Scripts</span></p>
<p>Scripts are the final type of application that are available in MetaTrader. A script is designed to be executed only once. Scripts are usually used to automate client side non-trading actions, like modifying data. They can however be used to perform simple trade logic tasks.</p>
<p><span style="font-size: medium;">MetaTrader &#8211; MetaEditor</span></p>
<p>All the code we write for our automated trading system will be done MetaTrader’s Integrated Development Environment called MetaEditor. MetaEditor allows you to store and manage source code for all projects in an easy to use way. If you are used to Visual Studio or X-Code IDE’s then you will be disappointed with the functionality of MetaEditor. MedEditor does offer syntax highlighting and code completion which is very handy. There is also a built in on-line library that covers most topics. Below is a screenshot of the IDE:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2010/02/MetWindow.png"><img style="display: inline; border: 0px;" title="MetaEditor" src="http://www.traineetrader.com/wp-content/uploads/2010/02/MetWindow_thumb.png" border="0" alt="MetaEditor" width="504" height="398" /></a></p>
<p>To open MetaEditor from MetaTrader simply press F4 or from the menu bar:</p>
<p><strong>Tools –&gt; MetaQuotes Language Editor</strong></p>
<p><span style="font-size: medium;">Home Work</span></p>
<p>Before next article make sure you understand the three different program types that are used in MetaTrader. Also try attaching and using some of the built in indicators in MetaTrader. Before moving on I would also recommend downloading the <a href="http://book.mql4.com/" target="_blank">MQL4 book</a> from MetaQuotes. This is a free book that covers the basics of programming in MQL and in later articles I will assume you are up to speed with the concepts presented in the book.</p>
<p>In the next article we will discuss designing a simple trading strategy and pseudo code.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=861&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/building-an-automated-forex-system-expert-advisors-indicators/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Building an automated currency trading system from scratch</title>
		<link>http://www.traineetrader.com/building-an-automated-currency-trading-system-from-scratch/</link>
		<comments>http://www.traineetrader.com/building-an-automated-currency-trading-system-from-scratch/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 11:39:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[ATS]]></category>
		<category><![CDATA[Trading System]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/building-an-automated-currency-trading-system-from-scratch/</guid>
		<description><![CDATA[In the next few weeks we are going to explore the basics of designing an automated currency trading system. We are going to use MetaTrader as the basis for the trading system. The actual strategy we design will be for illustrative purposes only and NOT tradable. That being said the tips and techniques you learn [...]]]></description>
			<content:encoded><![CDATA[<p>In the next few weeks we are going to explore the basics of designing an automated currency trading system. We are going to use MetaTrader as the basis for the trading system. The actual strategy we design will be for illustrative purposes only and NOT tradable. That being said the tips and techniques you learn over the course of this series will give you skills needed to develop your own trading strategy.</p>
<p><strong><span style="font-size: medium;">Before you start</span></strong></p>
<p>Before we start designing the automated trading system I will assume you are familiar with some basic FOREX or currency market concepts. If you are new to the finance world you may like to read the following articles.</p>
<ul>
<li><a href="http://www.traineetrader.com/what’s-all-this-talk-about-money/" target="_blank">What’s all this talk about money?</a></li>
<li><a href="http://www.traineetrader.com/the-forex-market-the-exchange-rate-bid-ask-spreads/" target="_blank">The FOREX market, the exchange rate and bid and ask spreads.</a></li>
<li><a href="http://www.traineetrader.com/pips-lots-and-a-little-bit-of-math/" target="_blank">Pip’s, Lot’s and a little bit of math.</a></li>
<li><a href="http://www.traineetrader.com/understanding-the-lingo-spot-market-traded-currencies-and-other-forex-terms/" target="_blank">Understanding the lingo: Spot market, traded currencies and other FOREX terms</a>.</li>
<li><a href="http://www.traineetrader.com/the-big-three-in-forex-leverage-margin-and-equity/" target="_blank">The big three in FOREX: Leverage, margin and equity.</a></li>
</ul>
<p>To get you quickly up to speed with MetaTrader you can download the software from <a href="http://www.metaquotes.net/" target="_blank">MetaQuotes</a>. You may also benefit from reading the following basic articles.</p>
<ul>
<li><a href="http://www.traineetrader.com/a-basic-introduction-to-metatrader-part-one/" target="_blank">An introduction to MetaTrader Part One</a>.</li>
<li><a href="http://www.traineetrader.com/a-basic-introduction-to-metatrader-part-two/" target="_blank">An introduction to MetaTrader Part Two.</a></li>
<li><a href="http://www.traineetrader.com/a-basic-introduction-to-metatrader-part-three/" target="_blank">An introduction to MetaTrader Part Three.</a></li>
</ul>
<p>So now you have a basic understanding of the FOREX or currency market and have MetaTrader installed on your computer we are ready to get started. Below is a roadmap for next few articles.</p>
<ul>
<li>What is an automated Trading System and how can we build one in MetaTrader?</li>
<li>Expert Advisors and Indicators in MetaTrader.</li>
<li>Designing a simple strategy and pseudo code.</li>
<li>From pseudo code to a basic trading system.</li>
<li>Garbage in garbage out: improving modeling quality.</li>
<li>Testing, Testing, Optimization and more testing.</li>
<li>Forward testing and performance evaluation.</li>
<li>Automated Trading System version 2.0.</li>
<li>So you are ready to go live: Choosing a broker.</li>
<li>So you are ready to go live: Setting up a Virtual Private Server.</li>
</ul>
<p>As you can see there is a lot of content that needs to be covered and I am sure as this series progresses there will be content added or removed depending on your input. If there is any materiel you want covered please send me an email or comment below.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=854&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/building-an-automated-currency-trading-system-from-scratch/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>admin</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 as:
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>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=851&type=feed" alt="" />]]></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>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>admin</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>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=848&type=feed" alt="" />]]></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>1</slash:comments>
		</item>
		<item>
		<title>Exporting Data From MetaTrader</title>
		<link>http://www.traineetrader.com/exporting-data-from-metatrader/</link>
		<comments>http://www.traineetrader.com/exporting-data-from-metatrader/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 08:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FOREX]]></category>
		<category><![CDATA[MetaTrader]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Pseudo Code]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/exporting-data-from-metatrader/</guid>
		<description><![CDATA[I received an email today from a reader wanting to know if there was an expert advisor available that would export data to a csv file. although I have not myself seen an EA that does this it is a trivial matter to code such an EA shown below:
int handlFile;
handlFile = FileOpen(&#8221;symbol.csv&#8221;, FILE_CSV &#124; FILE_WRITE [...]]]></description>
			<content:encoded><![CDATA[<p>I received an email today from a reader wanting to know if there was an expert advisor available that would export data to a csv file. although I have not myself seen an EA that does this it is a trivial matter to code such an EA shown below:</p>
<p class="info">int handlFile;<br />
handlFile = FileOpen(&#8221;symbol.csv&#8221;, FILE_CSV | FILE_WRITE | FILE_READ, &#8216;,&#8217;);<br />
FileSeek(handlFile, 0, SEEK_END);<br />
FileWrite(handlFile, Bid, Ask, Close[1], Volume[1]);<br />
FileClose(handlFile);</p>
<p>Note: This code above is intended as a very rough solution. Time permitting I will write a proper EA with error checking and better features. This code however should be sufficient for basic tasks. For more information on EA coding I strongly recommend you download the getting started book:</p>
<p class="download"><a href="http://www.mql4.com/files/MQl4BookEnglish.chm">MQL Tutorial</a></p>
<p><strong><span style="font-size: medium;">The Non EA Export Option</span></strong></p>
<p>Can’t be bothered with that coding garbage? Never fear there is a very simple option. Go to the Tools Menu then History Centre a dialog box similar to the one shown below will appear simply chose the currency you wish to export and select a file name and your done. This process is shown below:</p>
<p align="center"><img class="”aligncenter”/" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="ExportMetaTraderDataCSV" src="http://www.traineetrader.com/wp-content/uploads/2009/04/exportmetatraderdatacsv.jpg" border="0" alt="ExportMetaTraderDataCSV" width="500" height="500" /></p>
<p>MetaTrader really is an excellent platform for learning the basics of trading and trading systems. I would recommend to anyone starting out in currency trading that they download MetaTrader and start exploring. If you want to learn more about Forex Trading I suggest you visit the <a href="http://www.traineetrader.com/forex/" target="_blank">Forex</a> section of this website.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=685&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/exporting-data-from-metatrader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Month Low for AUD/USD &#8211; Time to Purchase TraderXL Pro</title>
		<link>http://www.traineetrader.com/6-month-low-for-audusd-time-to-purchase-traderxl-pro/</link>
		<comments>http://www.traineetrader.com/6-month-low-for-audusd-time-to-purchase-traderxl-pro/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 01:27:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FOREX]]></category>
		<category><![CDATA[AUD/USD]]></category>
		<category><![CDATA[TraderXL]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/6-month-low-for-audusd-time-to-purchase-traderxl-pro/</guid>
		<description><![CDATA[I am 3 days into my trial of TraderXL pro and it has impressed me so much that I have decided to take the plunge and buy it. I only wish I had purchased it earlier due to the decline of the Australian dollar as you can see below:

As you can see this is quite [...]]]></description>
			<content:encoded><![CDATA[<p>I am 3 days into my trial of TraderXL pro and it has impressed me so much that I have decided to take the plunge and buy it. I only wish I had purchased it earlier due to the decline of the Australian dollar as you can see below:</p>
<p style="text-align: center;" align="center"><img class="aligncenter" style="border: 0px;" src="http://www.traineetrader.com/wp-content/uploads/2008/08/image.png" border="0" alt="AUD/USD 6 Month Low" width="287" height="371" /></p>
<p>As you can see this is quite a substantial fall, this means that all my USD purchases will be more expensive. <a href="http://www.bloomberg.com/apps/news?pid=20601080&amp;sid=ay3U2dGo6M.Q&amp;refer=asia" target="_blank">Bloomberg</a> has an article on the dollars slide ahead of the release of the Reserve Bank of Australia&#8217;s quarterly monetary statement. As you can see from the order screen below TraderXL is not as cheap as it was last week due to the Australian dollar decline.</p>
<p style="text-align: center;" align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2008/08/buytraderxl.png"><img class="aligncenter" style="border: 0px;" src="http://www.traineetrader.com/wp-content/uploads/2008/08/buytraderxl-thumb.png" border="0" alt="BuyTraderXL" width="504" height="275" /></a></p>
<p>Not to worry I guess sometimes you have to spend money to make money. I am really looking forward to testing ClassifierXL and PredictorXL as the trial version of TraderXL Pro these applications are disabled. After all the order details are entered you will be emailed a link to download the software and will be issued a licence key. I received my email within 20 minutes and downloaded the application, it is a small 5.75 MB. I am off to continue reviewing this series of applications.</p>
<p align="center"><strong>You can download a free 10 day trial of </strong><a href="http://www.regnow.com/trialware/download/Download_TXLe-6.1.15.trial.exe?item=4449-2&amp;affiliate=95164"><strong>TraderXL Pro</strong></a><strong>.</strong></p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=524&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/6-month-low-for-audusd-time-to-purchase-traderxl-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Real Value of the Dollar, Yen and Euro</title>
		<link>http://www.traineetrader.com/the-real-value-of-the-dollar-yen-and-euro/</link>
		<comments>http://www.traineetrader.com/the-real-value-of-the-dollar-yen-and-euro/#comments</comments>
		<pubDate>Wed, 14 May 2008 05:19:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Euro]]></category>
		<category><![CDATA[FOREX]]></category>
		<category><![CDATA[USD]]></category>
		<category><![CDATA[Yen]]></category>
		<category><![CDATA[Dollar]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=456</guid>
		<description><![CDATA[These images are taken from and advertising campaign for the Gazeta Mercantil newspaper. The print campaign was undertaken by JWT and depicts historical events on the Dollar, Yen and Euro notes. It is extremely well laid out and striking. These images are shown below: (Click on the Image for a detailed view)

The Dollar

The Yen

The Euro

]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-457" style="float: right;" title="currency" src="http://www.traineetrader.com/wp-content/uploads/2008/05/currency.jpg" alt="Currency Dollar, Yen, Euro" width="239" height="300" />These images are taken from and advertising campaign for the Gazeta Mercantil newspaper. The print campaign was undertaken by JWT and depicts historical events on the Dollar, Yen and Euro notes. It is extremely well laid out and striking. These images are shown below: (Click on the Image for a detailed view)<br />
<span id="more-456"></span></p>
<h2>The Dollar</h2>
<p style="text-align: center;"><a href="http://www.coloribus.com/paedia/prints/2008/5/13/200603/show/"><img class="aligncenter size-full wp-image-458" title="Dollar" src="http://www.traineetrader.com/wp-content/uploads/2008/05/dollar.jpg" alt="Real Value" width="450" height="296" /></a></p>
<h2>The Yen</h2>
<p style="text-align: center;"><a href="http://www.coloribus.com/paedia/prints/2008/5/3/200605/show/"><img class="aligncenter size-full wp-image-459" title="yen" src="http://www.traineetrader.com/wp-content/uploads/2008/05/yen.jpg" alt="Real Value Yen" width="450" height="296" /></a></p>
<h2>The Euro</h2>
<p style="text-align: center;"><a href="http://www.coloribus.com/paedia/prints/2008/5/3/200604/show/"><img class="aligncenter size-full wp-image-460" title="euro" src="http://www.traineetrader.com/wp-content/uploads/2008/05/euro.jpg" alt="Real Value of Euro" width="450" height="296" /></a></p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=456&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/the-real-value-of-the-dollar-yen-and-euro/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>admin</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>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=242&type=feed" alt="" />]]></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>admin</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>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=233&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/microsoft-excel-tutorial-series-the-basics-data-entry-and-navigation/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
