<?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; Software</title>
	<atom:link href="http://www.traineetrader.com/category/software/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>Moving to Mac: You Can Have it All</title>
		<link>http://www.traineetrader.com/moving-to-mac-what-you-cant-trade-on-mac-can-you/</link>
		<comments>http://www.traineetrader.com/moving-to-mac-what-you-cant-trade-on-mac-can-you/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 01:37:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Trading System]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/moving-to-mac-what-you-cant-trade-on-mac-can-you/</guid>
		<description><![CDATA[Just recently my trusty old Pentium 4  trading computer died and I was faced with a dilemma what computer system am I going to buy. Really there are only two options Mac or PC. I have been using both windows and Mac computers for well over ten years and I have to say that I [...]]]></description>
			<content:encoded><![CDATA[<p>Just recently my trusty old Pentium 4  trading computer died and I was faced with a dilemma what computer system am I going to buy. Really there are only two options Mac or PC. I have been using both windows and Mac computers for well over ten years and I have to say that I prefer Mac and OS X over Windows any day of the week. The problem is there is very little trading software written that supports Mac. I asked myself some simple questions:</p>
<p><span style="font-size: medium;">What do I need from a computer</span></p>
<ol>
<li>Large Screen.</li>
<li>Needs to run all trading applications.</li>
<li>Needs to be fast. (Not ultra fast).</li>
<li>Ability to develop for multiple devices.</li>
<li>Decent amount of RAM.</li>
<li>Large hard drive.</li>
<li>Simple.</li>
<li>Good Value for money.</li>
</ol>
<p>With all these requirements in mind I decided to go with the new 27 Inch iMac model. You can read about the full specifications of this machine <a href="http://www.macpokerdojo.com/2009/12/20/27-imac-the-ultimate-computer-for-the-serious-poker-player/" target="_blank">27” iMac</a>, below is a quick rundown:</p>
<ul>
<li>3.06 Intel Core 2 Duo</li>
<li>4 gig of RAM.</li>
<li>1 terabyte hard drive</li>
<li>27 inch backlight LED screen (love the resolution of this machine)</li>
</ul>
<p><span style="font-size: medium;">Running my Trading Software</span></p>
<p>Here is where things get a little more complicated if you want to run most trading software you will need to run Windows. Essentially you have three options for running Windows based software:</p>
<ol>
<li>You can use a virtual machine.</li>
<li>You can use Crossover Office or Darwine (note: .NET not supported).</li>
<li>Use boot camp and dual boot with OS X.</li>
</ol>
<p>Each option has it’s strengths and weaknesses, however after weighing all the options I have decided to go with Parallels Desktop version 5. Parallels has excellent integration within OS X and coherence mode allows me to run my Windows applications and OS X applications side by side.  Below is a screenshot:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2010/02/DesktopOpen.jpg" target="_blank"><img style="display: inline; border: 0px;" title="Windows on OS X - Click for Larger image" src="http://www.traineetrader.com/wp-content/uploads/2010/02/DesktopOpen_thumb.jpg" border="0" alt="Windows on OS X - Click for Larger image" width="504" height="285" /></a></p>
<p align="left">So far in my limited testing I have not come across an issue running my applications in a virtualized environment. The applications run fast enough for my needs and I can export my virtual machine and run my trading system from multiple locations. It will be interesting to see how this virtualized environment performs with some statistical arbitrage systems. I am also looking forward to getting 64 bit version of Matlab up and running under OS X.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=867&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/moving-to-mac-what-you-cant-trade-on-mac-can-you/feed/</wfw:commentRss>
		<slash:comments>4</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>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>eSignal OnDemand &#8211; Trading Software Review &#8211; Is it worth the money?</title>
		<link>http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/</link>
		<comments>http://www.traineetrader.com/esignal-ondemand-trading-software-review-is-it-worth-the-money/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 05:37:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASX]]></category>
		<category><![CDATA[Share Market]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[eSignal]]></category>
		<category><![CDATA[Trading Platform]]></category>
		<category><![CDATA[Trading System]]></category>
		<category><![CDATA[Trading Tools]]></category>

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

		<guid isPermaLink="false">http://www.traineetrader.com/windows-7-ultimate-everything-vista-should-have-been-and-more/</guid>
		<description><![CDATA[I have had the pleasure (that&#8217;s right pleasure) of using Windows 7 Ultimate for sometime now. It has passed the test and I have now installed it on my production computer, with the release date scheduled for October 22nd, 2009 I thought I would share my thoughts on Windows 7.
 
The Install Process
As with any operating [...]]]></description>
			<content:encoded><![CDATA[<p>I have had the pleasure (that&#8217;s right pleasure) of using Windows 7 Ultimate for sometime now. It has passed the test and I have now installed it on my production computer, with the release date scheduled for October 22nd, 2009 I thought I would share my thoughts on Windows 7.</p>
<p> </p>
<p><strong>The Install Process</strong></p>
<p>As with any operating system install, I backup all my data and get a list of programs and application that will need to be installed. I always choose to do a clean install and reformat all my hard drives as I find this can increase performance. The install process is pretty much a one click affair just grab a cup of coffee and the install for most people will be done in about 30 min. below are a few grainy shots (taken with my phone cam) of some installer screens:</p>
<p> </p>
<p align="center">     <a href="http://www.traineetrader.com/wp-content/uploads/2009/10/P091009_13.2101Copy.jpg"><img style="display: inline; border-width: 0px;" title="Windows 7 Ultimate - Install Screenshot" src="http://www.traineetrader.com/wp-content/uploads/2009/10/P091009_13.2101Copy_thumb.jpg" border="0" alt="Windows 7 Ultimate - Install Screenshot" width="264" height="199" /></a><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/P091009_13.20Copy.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Windows 7 Ultimate - Install Screenshot" src="http://www.traineetrader.com/wp-content/uploads/2009/10/P091009_13.20Copy_thumb.jpg" border="0" alt="Windows 7 Ultimate - Install Screenshot" width="264" height="199" /></a></p>
<p>After a few restarts you will be presented with a login screen.</p>
<p><strong>Getting Started in Windows 7</strong></p>
<p>The first thing you will notice in Windows 7 is the graphics text appears sharper windows are vibrant and overall there is a brighter feel to the GUI.  One of the big changes in Windows 7 is the taskbar. If you are familiar with any Windows operating system from Windows XP onwards the switch to Windows 7 will not cause to many headaches.</p>
<p><strong>Windows 7 Taskbar and Start Menu</strong></p>
<p>The taskbar has increased functionality allowing you to quickly launch programs from it, switch between applications and individual application windows with ease. Taskbar shown below:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/Taskbar.jpg"><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="Windows 7 Ultimate - Taskbar Screenshot" src="http://www.traineetrader.com/wp-content/uploads/2009/10/Taskbar_thumb.jpg" border="0" alt="Windows 7 Ultimate - Taskbar Screenshot" width="554" height="20" /></a></p>
<p>The application tray area as also had an overhaul allowing for increased customization. It is now possible to hide notification and icons from the tray area. One of the standout features of the new taskbar is the ability to preview open tabs and application windows by simply mousing over the application as shown in the image below:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/OnMouseOverTaskbarWin7.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Windows 7 Ultimate - Taskbar Screenshot- On Mouse Over Taskbar Win7" src="http://www.traineetrader.com/wp-content/uploads/2009/10/OnMouseOverTaskbarWin7_thumb.jpg" border="0" alt="Windows 7 Ultimate - Taskbar Screenshot- On Mouse Over Taskbar Win7" width="504" height="106" /></a></p>
<p align="left">Another very useful feature is the quick show desktop function located at the end of the taskbar. This allows you to quickly see all of your desktop widgets without leaving the application you are currently in. The start menu is very similar to Windows Vista with a few minor tweaks and no ability to restore the classic start menu <img src='http://www.traineetrader.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  .The image below shows the standard Windows 7 Start menu.</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Windows 7 Ultimate - Taskbar Screenshot-Start Menu" src="http://www.traineetrader.com/wp-content/uploads/2009/10/StartMenu.jpg" border="0" alt="Windows 7 Ultimate - Taskbar Screenshot-Start Menu" width="419" height="569" /></p>
<p align="left"><strong>Appearance and Themes</strong></p>
<p align="left">Windows 7 allows for easy customization of desktop backgrounds sounds and window colours through the use of themes. You can create a customised theme yourself or download one from the net. The screenshot below shows how straightforward appearance customisation is in Windows 7:</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Windows 7 Ultimate - Screenshot-Themes Win7" src="http://www.traineetrader.com/wp-content/uploads/2009/10/WindowsThemesWin7.jpg" border="0" alt="Windows 7 Ultimate - Screenshot-Themes Win7" width="504" height="339" /></p>
<p>You will also notice Calculator, Word pad and paint have gotten a makeover in this windows 7 release. Screenshots shown below:</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/CalcPaint.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Windows 7 Ultimate - Screenshot-Calc &amp; Paint" src="http://www.traineetrader.com/wp-content/uploads/2009/10/CalcPaint_thumb.jpg" border="0" alt="Windows 7 Ultimate - Screenshot-Calc &amp; Paint" width="504" height="246" /></a></p>
<p align="center">Calculator and Paint</p>
<p align="center"><a href="http://www.traineetrader.com/wp-content/uploads/2009/10/Wordpad.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Windows 7 Ultimate - Wordpad" src="http://www.traineetrader.com/wp-content/uploads/2009/10/Wordpad_thumb.jpg" border="0" alt="Windows 7 Ultimate - Wordpad" width="504" height="306" /></a></p>
<p>Windows media player has also been overhauled and supports many more file formats out of the box, however most people use VLC anyway. To read more about the new features in Windows Media player head over to <a href="http://gizmodo.com/5146859/windows-7-windows-media-player-12-play-to-and-media-compatibility" target="_blank">Gizmodo</a>.</p>
<p><strong>The bottom line</strong></p>
<p>This is by no means a complete review as there are just to many features and new components to discuss. Really Windows 7 is everything Windows Vista should have been. I have noticed increased stability, simplified networking settings and my overall workflow is faster. My PostgreSQL databases are running much quicker. The User Access Controls are much less permissive and as far as compatibility goes I have not had an issue. If you are still in the dark ages and have put off upgrading Windows XP now is definitely the time to do it.</p>
<p><strong>Moving from Vista to Windows 7</strong></p>
<p>This is a much harder proposition to quantify.Vista is now a mature offering, most issues have been ironed out with the last service pack release. Coming from Windows Vista Business edition myself I have found Windows 7 to be quicker, easier to use and I have not had an issue with my wireless networking like I did in Vista. For me the choice was simple to go with Windows 7 as I like to run the latest software. </p>
<p>If you were disappointed with Vista or are looking to upgrade from Windows XP then Windows 7 might just be the operating system for you. Or if you are like me and like running the latest version of any software look out for this October 22 release. In the coming weeks I will post more about my Windows 7  experiences.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=810&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/windows-7-ultimate-everything-vista-should-have-been-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is redundancy missing from your trading plan?</title>
		<link>http://www.traineetrader.com/is-redundancy-missing-from-your-trading-plan/</link>
		<comments>http://www.traineetrader.com/is-redundancy-missing-from-your-trading-plan/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 10:26:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trading]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Backup]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/is-redundancy-missing-from-your-trading-plan/</guid>
		<description><![CDATA[ Most retail investors trading plans don’t have contingencies in place for failures. With the low cost of hardware and wireless connectivity there is no reason retail traders cannot build a redundant trading system. One failure in the middle of a trading session can be very costly.
Possible Failures
Note: We will ignore server or broker side [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline; margin-left: 0px; margin-right: 0px; border: 0px;" title="System" src="http://www.traineetrader.com/wp-content/uploads/2009/07/fail.jpg" border="0" alt="System" width="294" height="180" align="right" /> Most retail investors trading plans don’t have contingencies in place for failures. With the low cost of hardware and wireless connectivity there is no reason retail traders cannot build a redundant trading system. One failure in the middle of a trading session can be very costly.</p>
<p><strong>Possible Failures</strong></p>
<p><em>Note: We will ignore server or broker side failures.</em></p>
<p><strong>Power failure</strong></p>
<p>Loss of power supply would render computer, router and some telecommunication system unusable.</p>
<p><strong>Hardware Failure</strong></p>
<ul>
<li>Multiple components could fail leaving computer unusable.</li>
<li>Router or modem could fail.</li>
</ul>
<p align="center"><strong><a href="http://www.traineetrader.com/wp-content/uploads/2009/07/harddrive.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="hard drive" src="http://www.traineetrader.com/wp-content/uploads/2009/07/harddrive_thumb.jpg" border="0" alt="hard drive" width="327" height="246" /></a> </strong></p>
<p><strong>Telecommunication Failure</strong></p>
<ul>
<li>Phone line fail</li>
<li>Internet Service provider fail</li>
</ul>
<p>This is offcourse a very simplified list of possible failures, however it encompasses the most probable failures you will encounter.</p>
<p><strong>The Solution</strong></p>
<p align="center"><strong><span style="color: #008000; font-size: x-large;">Laptop <span style="color: #ff0000;">+ </span><span style="color: #008000;">Wireless Internet Plan</span></span></strong></p>
<p>The solution is very simple you need to ensure you have a backup computer that has an independent power supply and a wireless Internet connection with a second Internet service provider and communication line.</p>
<p>Well that is pretty obvious I here you saying. The reason I am writing this post is it is relatively cheap and easy to include this redundancy in your general trading strategy, however few do.</p>
<p><strong>How much does this cost</strong> ?</p>
<p>For approximately AU$1000 you can purchase a laptop and wireless USB Internet plan. This is in Australia I am sure options would be available to my overseas readers. </p>
<p><strong>The Laptop</strong></p>
<p><a href="http://www.traineetrader.com/wp-content/uploads/2009/07/dell.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="dell" src="http://www.traineetrader.com/wp-content/uploads/2009/07/dell_thumb.jpg" border="0" alt="dell" width="100" height="100" align="right" /></a> A cheap Dell Inspiron 15 should be sufficient for our needs features include:</p>
<ul>
<li>2.16 Ghz Celeron processor (not fast but sufficient)</li>
<li>2 gig RAM</li>
<li>160 GB hard drive</li>
<li>Windows Vista Home Basic</li>
</ul>
<p>In Australia <a href="http://www.three.com.au/cs/ContentServer?c=Page&amp;pagename=Three%2FPage%2FThreeLayout&amp;cid=1221530699083" target="_blank">3</a> offers very affordable prepaid wireless broadband I am sure similar offers are available overseas. </p>
<p><strong>Keeping  your Backup Computer in Sync</strong></p>
<p>The easiest way to keep both computers synchronised is with the use of <a href="http://www.microsoft.com/Downloads/details.aspx?familyid=C26EFA36-98E0-4EE9-A7C5-98D0592D8C52&amp;displaylang=en" target="_blank">SyncToy</a>.  This tool allows you to mirror your working environment on two computers. This can be achieved either over a network or by using an external hard drive.</p>
<p><strong>Download and install SyncToy on both computers.</strong></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="sync1" src="http://www.traineetrader.com/wp-content/uploads/2009/07/sync1.jpg" border="0" alt="sync1" width="586" height="480" /></p>
<p><strong>Setup the folders you wish to synchronise, making sure on the second computer you reverse the right and left folders.</strong></p>
<p><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="syncsetting" src="http://www.traineetrader.com/wp-content/uploads/2009/07/syncsetting.jpg" border="0" alt="syncsetting" width="447" height="391" /><strong>Choose the settings for the  folder pair.</strong></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="back" src="http://www.traineetrader.com/wp-content/uploads/2009/07/back.jpg" border="0" alt="back" width="500" height="190" /></p>
<p><strong>After running SyncToy on both computers you should see a screen similar to the one above.</strong></p>
<p>You may have to play with SyncToy and the folders you choose to synchronise for optimal results.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=777&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/is-redundancy-missing-from-your-trading-plan/feed/</wfw:commentRss>
		<slash:comments>0</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>2009 A Better Year For Markets?</title>
		<link>http://www.traineetrader.com/2009-a-better-year-for-markets/</link>
		<comments>http://www.traineetrader.com/2009-a-better-year-for-markets/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 04:02:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[2009]]></category>

		<guid isPermaLink="false">http://www.traineetrader.com/?p=635</guid>
		<description><![CDATA[2009 will be a year to make some serious roll. Opportunities are everywhere at the moment make the most of them.]]></description>
			<content:encoded><![CDATA[<p>Well to say 2008 was an interesting year would be an understatement. There has been some breathtaking corporate collapse, <a title="Ponzi Scheme" href="http://en.wikipedia.org/wiki/Ponzi_scheme" target="_blank">Ponzi schemes</a> and bailout after <a title="Bailout" href="http://en.wikipedia.org/wiki/Bailout" target="_blank">bailout</a>. I have had an extended break from the market and now I am back and looking for opportunities. This means there will be more frequent updates to this website. I am currently reviewing Timothy Sykes three new DVD&#8217;s.</p>
<ul>
<li><a href="http://edge.affiliateshop.com/public/AIDLink?AID=094065&amp;BID=11997" target="_blank">PennyStocking &#8211; Part Deux</a></li>
<li><a href="http://edge.affiliateshop.com/public/AIDLink?AID=094065&amp;BID=11997">ShortStocking</a></li>
<li><a href="http://edge.affiliateshop.com/public/AIDLink?AID=094065&amp;BID=11997" target="_blank">Tim Raw</a></li>
</ul>
<p>So stay tuned 2009 is going to be a big year for global financial markets and a big year for TraineeTrader.</p>
<img src="http://www.traineetrader.com/?ak_action=api_record_view&id=635&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.traineetrader.com/2009-a-better-year-for-markets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
