<?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></title>
	<atom:link href="http://4xtrader.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://4xtrader.net</link>
	<description>Metatrader Indicators &#38; Free Forex Tools &#124; 4xTrader</description>
	<lastBuildDate>Tue, 07 May 2013 18:39:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to detect trade time in milliseconds with 4xGuardian</title>
		<link>http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/</link>
		<comments>http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 14:40:11 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://4xtrader.net/?p=2868</guid>
		<description><![CDATA[<p>In order for 4xGuardian to be able to detect trade execution times in milliseconds you will need to make a small change to your expert advisor, only 2 lines of code,  so it can calculate the execution time with greater precision and send the information to 4xGuardian. You can make the changes in one of two ways. 1 &#8211; Add to lines [...]<p><a href="http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/">How to detect trade time in milliseconds with 4xGuardian</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/">How to detect trade time in milliseconds with 4xGuardian</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>In order for 4xGuardian to be able to detect trade execution times in milliseconds you will need to make a small change to your expert advisor, only 2 lines of code,  so it can calculate the execution time with greater precision and send the information to 4xGuardian.</p>
<p>You can make the changes in one of two ways.</p>
<h3>1 &#8211; Add to lines of code to every open, close or modified request.</h3>
<p>Add this one line of code before all your <span style="color: #993366;">OrderSend</span>() ,<span style="color: #993366;"> OrderClose</span>()  <span style="color: #993366;"><span style="color: #000000;">and</span> OrderModify</span>() statements , all tree statements used the same line before it.</p>
<pre style="text-align: center;">int TradeTime = GetTickCount();</pre>
<p style="text-align: left;">And after the  <span style="color: #800080;">OrderSend</span>()   statement add the following line of code:</p>
<pre style="text-align: center;">if (<span style="color: #993366;">ticket</span> &gt; 0){ int TradeTimetook = GetTickCount()-TradeTime ; GlobalVariableSet ( "Z"+ticket +Symbol (), TradeTimetook );}</pre>
<address style="text-align: left;">* note where ticket is the ticket number returned by the <span style="color: #800080;">OrderSend</span>()   statement.</address>
<address style="text-align: left;"> </address>
<p style="text-align: left;">And after the  <span style="color: #800080;">OrderModify</span>()   statement add the following line of code:</p>
<pre>int TradeTimetook = GetTickCount()-TradeTime ; GlobalVariableSet ( "ZM"+<span style="color: #993366;">ticket</span> +Symbol (), TradeTimetook );</pre>
<address>*Only run the above statement if <span style="color: #993366;"> OrderModify</span>() succeed,   the  note where ticket is the <span style="color: #993366;">ticket</span> number you are modifying .</address>
<address> </address>
<p>And after the  <span style="color: #800080;">OrderClose</span>()   statement you add the fallowing line of code:</p>
<pre>int TradeTimetook = GetTickCount()-TradeTime ; GlobalVariableSet ( "Y"+<span style="color: #993366;">ticket</span> +Symbol (), TradeTimetook );</pre>
<address>*Only run the above statement if  <span style="color: #993366;">OrderClose</span>() succeed,  note where <span style="color: #993366;">ticket</span> is the ticket number you are closing.</address>
<address> </address>
<h3> 2 &#8211; Use a modifed version of MetaTrader trading fuctions.</h3>
<p>Just  use our Drop-in replacement for  <span style="color: #800080;">OrderSend</span>() , <span style="color: #800080;">OrderClose</span>()  and <span style="color: #800080;">OrderModify</span>() , you only need to download and place the<em><strong> Trade funcions replacement.mqh</strong></em> file into your <em>expert/include</em> folder, then add the following line of code in to your expert advisor :</p>
<pre>#include &lt;Trade funcions replacement.mqh&gt;</pre>
<p>And then replace all the <span style="color: #800080;">OrderSend</span>() ,<span style="color: #800080;"> OrderClose</span>()  and <span style="color: #800080;">OrderModif</span>y() statements with a lower case on the first letter to <span style="color: #800080;">orderSend</span>() , <span style="color: #800080;">orderClose</span>()  and <span style="color: #800080;">orderModify</span>() tru out your expert advisor.</p>
<p>As an example we have modified the <strong><em>MACD Sample.mq4</em></strong>  expert advisor that comes with Metatrader for your reference.</p>
<p><a href="http://4xtrader.net/Trade funcions replacement.mqh" >Trade funcions replacement</a><br />
<a href="http://4xtrader.net/MACD Sample Milliseconds.mq4" >MACD Sample Milliseconds</a></p>
<p>This file contains most often used utility functions that are commonly needed in EAs, especially functions for robust order handling.</p>
<address>This program is a free software: you can redistribute it and/or modify. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTIES; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. </address>
<address> </address>
<p><a href="http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/">How to detect trade time in milliseconds with 4xGuardian</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/">How to detect trade time in milliseconds with 4xGuardian</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/how-to-detect-trade-time-in-milliseconds-with-4xguardian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to choose the best VPS for Forex trading</title>
		<link>http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/</link>
		<comments>http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 17:40:43 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Forex]]></category>
		<category><![CDATA[forex trading]]></category>
		<category><![CDATA[Microsoft Hyper-V]]></category>
		<category><![CDATA[OpenVS]]></category>
		<category><![CDATA[virtual server]]></category>
		<category><![CDATA[Virtuozzox]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://4xtrader.net/?p=2051</guid>
		<description><![CDATA[<p>Most serious forex traders use a virtual server for their expert advisors, but not all VPS server are equal in performance. There are about 4 popular VPS technologies: Virtuozzo: Virtuozzo is a proprietary operating system-level virtualization product produced by Parallels, Inc. Both windows and Linux. Parallels Virtuozzo Containers creates multiple isolated containers (also known as [...]<p><a href="http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/">How to choose the best VPS for Forex trading</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/">How to choose the best VPS for Forex trading</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img src="/images/servertower.jpg" align="left"></p>
<p>Most serious forex traders use a virtual server for their expert advisors, but not all VPS server are equal in performance.<br />
There are about 4 popular VPS technologies:</p>
<ul>
<li><strong>Virtuozzo:</strong> Virtuozzo is a proprietary operating system-level virtualization product produced by Parallels, Inc. Both windows and Linux. Parallels Virtuozzo Containers creates multiple isolated containers (also known as Virtual Environments (VEs), or Virtual Private Servers (VPSs)) on a single physical server. Parallels Virtuozzo Containers <strong>virtualizes at the operating system level, rather than the hardware level as other Virtual Machine (VM) products frequently do.</strong> This allows the sharing of hardware, systems management effort, and sometimes software licenses among different workloads. A container behaves in aspects as if it was a stand-alone server. But this is not the optimal vitalization technology for forex trading because the VPS vendor can over sell the machines and give you less optimal performance.</li>
<p></br></p>
<li><strong>OpenVZ:</strong> OpenVZ is container-based virtualization for Linux. OpenVZ creates multiple secure, isolated containers (also known as VEs or VPSs) on a single physical server enabling better server utilization and ensuring that applications do not conflict. Each container performs and executes exactly like a stand-alone server; a container can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries and configuration files. <strong>This technology is better suited for forex trading.</strong></li>
<p></br></p>
<li><strong>Xen:</strong> Xen is a free software virtual machine for IA-32, x86-64, IA-64 and PowerPC 970 architectures. On most CPUs, Xen uses a form of virtualization known as paravirtualization, meaning that the guest operating system must be modified to use a special hypercall ABI instead of certain architectural features. Intel has contributed modifications to Xen to support their VT-x (formerly Vanderpool) architecture extensions. Similarly AMD has contributed support for their AMD-V extensions. Because of the Kernel modifications need it to run this is not recommended for Forex Trading.</li>
<p></br></p>
<li><strong>Microsoft Hyper-V:</strong> Microsoft <strong>Hyper-V</strong> which is a hypervisor-based technology that provides true Hardware Virtualization and High level of Isolation from other virtual machines on the physical server. With the use of this new virtualization technology, users no longer have to worry about having their services being affected by other resource intensive services running on the same box. This is the best choice for Forex trading because of the great isolation this technology offers.</li>
</ul>
<p>When you use a VPS service you will be sharing the computer resources with all other users on the machine which is why is essential that your portion of the computer is not being affected by the other users. On Virtuozzo VPS services you may experience great performance and a total computer freeze at time, not the optimal scenario for live trading.</p>
<p>After having tested many VPS technologies we highly recommend that you use only Hyper-V VPS host, the platform is very stable and the resources are always available. That leads to the best choice for running your expert advisors.</p>
<p>Below you have two images of <a href="http://4xtrader.net/4xwatch/">4xWatch</a> running on  different types of VPS of technologies .</p>
<p>On the first image we see how our <strong>Virtuozzo VPS</strong>  fail for just a few seconds every other minute. That was probably cause by another user/users of the same node overloading the server and cause our MetaTrader to loose an accumulated 27 minutes on just one day.</p>
<p><center><img class="centerimg" src="http://4xtrader.net/images/4xWatchVPS.JPG" /></center></p>
<p>Are second server is using the <strong>Hyper-V</strong> tecnolotegy , it has the same amount of RAM and is connected to the same server on the same Broker. But the 4xWatch reports a totally different story, the connection is rock solid true out the day with only a small disconnection during rollover.</p>
<p><center><img class="centerimg" src="http://4xtrader.net/images/4xWatchVPS2.JPG" /></center></p>
<p>This demonstrate how important is choosing the best VPS technology, your results will very depending on the load of the non Hyper-V server load.</p>
<p><del datetime="2011-08-16T18:15:00+00:00"></p>
<p><a href="http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/">How to choose the best VPS for Forex trading</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/">How to choose the best VPS for Forex trading</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/how-to-choose-the-best-vps-for-forex-trading/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Where are my MT4 log files</title>
		<link>http://4xtrader.net/where-are-my-mt4-log-files/</link>
		<comments>http://4xtrader.net/where-are-my-mt4-log-files/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 22:13:03 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[metatrader 4]]></category>
		<category><![CDATA[mt4]]></category>

		<guid isPermaLink="false">http://4xtrader.net/?p=1941</guid>
		<description><![CDATA[<p>This tip is to debunk the conspiracy theories about Forex Brokers deleting your trade journal in order to erase evidence of their wrongdoing; since we started discussing the Virtual Dealer Plugin people have sent us many inquiries of the whereabouts of the trade Journal. The problem is that in some systems when you right click [...]<p><a href="http://4xtrader.net/where-are-my-mt4-log-files/">Where are my MT4 log files</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/where-are-my-mt4-log-files/">Where are my MT4 log files</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This tip is to debunk the conspiracy theories about Forex Brokers deleting your trade journal in order to erase evidence of their wrongdoing; since we started discussing the Virtual Dealer Plugin people have sent us many inquiries of the whereabouts of the trade Journal.</p>
<p>The problem is that in some systems when you right click on the Journal Tab of the MetaTrader 4 Terminal and choose open, the folder where the Journal is stored opens but it is empty, no files at all, the assumption is that the broker has reached out from the Internet and deleted the files; but in this case is not your broker, the cause for this strange behavior lies on a new Windows Feature called UAC (user account control).</p>
<p>Users of MetaTrader 4 running under Windows Vista or any future versions like Windows 7 may find it impossible to locate the trade Journal and the Expert&#8217;s logs at their usual location. For example on a typical Windows XP installation the path to the journal would be something like:</p>
<p><strong>C:\Program Files\FOREX.com FT\Logs</strong></p>
<p>On the same install in a Windows 7  you would think to look at the same location for the Journal at:<br />
<strong>C:\Program Files (x86)\FOREX.com FT\Logs</strong></p>
<p>But after navigation to the above folder you find that it&#8217;s empty, the reason is that windows has moved all the data to a especial folder called the Virtual Store, which is inside the user&#8217;s folder under the name of the current user in a folder about 6 layers deep. The fastest way to get to the journal is by replacing the driver letter on the path for the words <strong>%LOCALAPPDATA%\VirtualStore</strong>, let&#8217;s give you an example by correcting the above path:</p>
<p><strong>%LOCALAPPDATA%\VirtualStore\Program Files (x86)\FOREX.com FT\Logs</strong></p>
<p>By navigating to the above path you will be able to find all the Journals for your MT4 since you started using this terminal.</p>
<p>To avoid this problem of not being able to easily find the Journals the best solution is to reinstall Meta Trader 4 again on a different folder, the UAC protection is only active if the program is installed under the &#8220;Program Files (x86)&#8221; folder, my suggestion is to install your MetaTrader 4 terminals on a different folder called  C:\Meta Trader\, this way your program will run just like it did on XP and you will be able to right click on the Journal Tab and quickly open the Journal.</p>
<p><strong>By changing the installation folder of MetaTrader 4 you will also be fixing other bad side effects of UAC such as:</strong></p>
<ul>
<li>Inability of receiving Updates to the terminal if MetaTrader 4 is installed inside of the UAC protected folder. You should visit the Metaquotes forum and make sure you are running the latest version of the terminal ( http://forum.mql4.com/) at the writing of this article the latest build was 402.</li>
<li>UAC can also interfere with your trading if you run advanced expert advisor that rely on data that&#8217;s been stored in the same folder as MetaTrader 4</li>
<li>Loading history to get 90% Modeling quality during back-testing into MetaTrader 4 can be very difficult if UAC is on.</li>
</ul>
<p>I hope this helps you understand that MetaTrader 4 was not design to work well in this conditions and there should be more than enough reasons for you not to run MetaTrader 4 on Windows Vista under the &#8220;Program Files (x86)&#8221; folder.</p>
<p><a href="http://4xtrader.net/where-are-my-mt4-log-files/">Where are my MT4 log files</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/where-are-my-mt4-log-files/">Where are my MT4 log files</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/where-are-my-mt4-log-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safer Trading</title>
		<link>http://4xtrader.net/safer-trading/</link>
		<comments>http://4xtrader.net/safer-trading/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 19:44:15 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://4xtrader.net/?p=1674</guid>
		<description><![CDATA[<p>Trading Forex is hard enough already, but when you add an unreliable or unscrupulous broker into the mix, hard becomes impossible! Having a great strategy or the best trading robot is not enough when your broker is playing against you or is simply unreliable. The following red flags will help you identify bad brokers before [...]<p><a href="http://4xtrader.net/safer-trading/">Safer Trading</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/safer-trading/">Safer Trading</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Trading Forex is hard enough already, but when you add an unreliable or unscrupulous broker into the mix, hard becomes impossible! Having a great strategy or the best trading robot is not enough when your broker is playing against you or is simply unreliable.</p>
<p>The following red flags will help you identify bad brokers before is too late:</p>
<p>What makes a reliable Broker:</p>
<ul>
<li>Fast response time when opening and closing trades.</li>
<li>100% up time, loosing connection to you broker for even a few minutes can be a disaster.</li>
</ul>
<p>What makes an honest Broker:</p>
<ul>
<li>Low spreads and low spread spikes during news events.</li>
<li>No re-quotes or very few, there is not technical reason to re-quote your trades if your connection to the broker is solid.</li>
<li>Not changing the leverage when the market liquidity is down.</li>
<li>Low commission rate.</li>
<li>True Swap Rates.</li>
<li>No Slippage when closing trades.</li>
<li>Not running the infamous Virtual Plug-in.</li>
</ul>
<p>We have developed some great safety tools to keep you protected while you trade. Our safety tool suite will help you:</p>
<ul>
<li>Detect and diagnose connection issues</li>
<li>Detect costly Metatrader conflicts</li>
<li>Detect if your broker is using the Virtual Dealer Plug-in</li>
<li>and more</li>
</ul>
<h3>MT4 Security Package:</h3>
<ul>
<li><a href="http://4xtrader.net/4xsentinel/" target="_blank">4xSentinel</a> will keep your broker honest by checking the most important trade aspects, like re-quotes, slippages, delays in execution time, margin changes and spread spikes.</li>
<li><a href="http://4xtrader.net/4xwatch/" target="_blank">4xWatch</a> will monitor and diagnose your connection with the broker to alert you of any issues.</li>
<li><a href="http://4xtrader.net/4xghost/" target="_blank">4xGhost</a> will check periodically if any other MT4 instances are in conflict with your trading platform.</li>
</ul>
<p class="moneyback" style="margin-bottom: 10px;">For a limited time get all 3 safety tools and receive a 15% discount.</p>
<p class="moneyback" style="margin-bottom: 10px;">Learn more about our <a href="http://4xtrader.net/security-package/">MT4 Security Package</a></p>
<p><a href="http://4xtrader.net/safer-trading/">Safer Trading</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/safer-trading/">Safer Trading</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/safer-trading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Citi offers MT4 Forex Trading Plataform</title>
		<link>http://4xtrader.net/citi_mt4_forex_trading_plataform/</link>
		<comments>http://4xtrader.net/citi_mt4_forex_trading_plataform/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 19:49:00 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Forex News]]></category>
		<category><![CDATA[Citi]]></category>
		<category><![CDATA[Forex]]></category>
		<category><![CDATA[mt4]]></category>

		<guid isPermaLink="false">http://4xtrader.net/citi_mt4_forex_trading_plataform/</guid>
		<description><![CDATA[<p>Citi has launched CitiFX Pro, its online foreign exchange trading platform for experienced individual and small institutional traders, in the United Kingdom. Following successful launches in the US, Hong Kong and elsewhere in Asia, CitiFX Pro is now available to UK traders who qualify as “professional clients,” as defined by the rules of the Financial [...]<p><a href="http://4xtrader.net/citi_mt4_forex_trading_plataform/">Citi offers MT4 Forex Trading Plataform</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/citi_mt4_forex_trading_plataform/">Citi offers MT4 Forex Trading Plataform</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Citi has launched CitiFX Pro, its online foreign exchange trading platform for experienced individual and small institutional traders, in the United Kingdom. Following successful launches in the US, Hong Kong and elsewhere in Asia, CitiFX Pro is now available to UK traders who qualify as “professional clients,” as defined by the rules of the Financial Services Authority.</p>
<p>Sasha Serebrinsky, Citi’s Manager of Margin Foreign Exchange for Europe and the Middle East said, “The UK launch of CitiFX Pro offers UK-based clients all of the advantages of trading FX through a global leader, including excellent liquidity and access to its highly regarded research and market commentary. We offer experienced individuals and small institutions a flexible product with tight pricing, which could make a difference to our clients’ bottom line.”</p>
<p>CitiFX Pro offers highly competitive pricing to UK clients – as low as 1.2 pips in the EUR/USD. The CitiFX Pro platform provides liquidity in over 130 currencies and research from local sources in key markets. Clients can access accounts and trade on a real-time basis on four platforms: CitiFX Pro Desktop, Web, Mobile and MetaTrader 4.</p>
<p>Sanjay Madgavkar, Global Head of Margin Foreign Exchange trading at Citi, said, “The UK launch of CitiFX Pro is an important step for our global business. We are pleased to bring our value proposition of cost-effective trading and great technology and liquidity to clients in a key global FX market. We look forward to launching CitiFX Pro in other markets in Europe and Asia in 2011.”</p>
<p><a rel="nofollow" href="http://www.fxstreet.com/news/forex-news/article.aspx?storyid=5e5d86dd-bac3-4371-bcef-fd64249484c8" target="_blank">Source </a></p>
<p><a href="http://4xtrader.net/citi_mt4_forex_trading_plataform/">Citi offers MT4 Forex Trading Plataform</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/citi_mt4_forex_trading_plataform/">Citi offers MT4 Forex Trading Plataform</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/citi_mt4_forex_trading_plataform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MT4 Vs MT5</title>
		<link>http://4xtrader.net/mt5_vs_mt4/</link>
		<comments>http://4xtrader.net/mt5_vs_mt4/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 15:52:00 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Forex News]]></category>
		<category><![CDATA[COmparation]]></category>
		<category><![CDATA[Forex]]></category>
		<category><![CDATA[MetaQuotes]]></category>
		<category><![CDATA[metatrader]]></category>
		<category><![CDATA[mt4]]></category>
		<category><![CDATA[mt5]]></category>

		<guid isPermaLink="false">http://4xtrader.net/mt5_vs_mt4/</guid>
		<description><![CDATA[<p>Metatrader 5 (also known as MT5) is the next generation of the Metatrader software package. MT5 will make it possible for brokers to trade a wide variety of financial instruments. Boston Technologies ( the same folks that created the infamous MT4 Virtual Broker Plugin ) recently compared MetaTrader 4 to the newly released MetaTrader 5. [...]<p><a href="http://4xtrader.net/mt5_vs_mt4/">MT4 Vs MT5</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/mt5_vs_mt4/">MT4 Vs MT5</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Metatrader 5 (also known as MT5) is the next generation of the Metatrader software package. MT5 will make it possible for brokers to trade a wide variety of financial instruments.</p>
<p>Boston Technologies ( the same folks that created the infamous MT4 <a href="http://www.forexfactory.com/showthread.php?t=70582" target="_blank" rel="nofollow">Virtual Broker Plugin</a> )  recently compared MetaTrader 4 to the newly released MetaTrader 5. Check out our review of MT5 below.</p>
<p><iframe title="YouTube video player" width="560" height="349" src="http://www.youtube.com/embed/zMtnoAeMLkQ" frameborder="0" allowfullscreen></iframe></p>
<p>Source <a rel="nofollow" href="http://bostontechnologies.com/mt5.html" target="_blank">Boston Tecnologies</a></p>
<p><a href="http://4xtrader.net/mt5_vs_mt4/">MT4 Vs MT5</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/mt5_vs_mt4/">MT4 Vs MT5</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/mt5_vs_mt4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MetaTrader 5 for Android</title>
		<link>http://4xtrader.net/metatrader_5_android/</link>
		<comments>http://4xtrader.net/metatrader_5_android/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 09:57:49 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Forex News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[metatrader]]></category>
		<category><![CDATA[mql5]]></category>
		<category><![CDATA[mt5]]></category>

		<guid isPermaLink="false">http://4xtrader.net/metatrader_5_android/</guid>
		<description><![CDATA[<p>MetaQuotes  is coming up with a version of Meta Trader for the Android plataform. Here are some screenshots Full Story Here MetaTrader 5 for Android is a post from: Forex Trading Tools<p><a href="http://4xtrader.net/metatrader_5_android/">MetaTrader 5 for Android</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/metatrader_5_android/">MetaTrader 5 for Android</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>MetaQuotes  is coming up with a version of Meta Trader for the Android plataform.</p>
<p>Here are some screenshots</p>
<p><img class="aligncenter" title="MT5 on Android " src="http://c.mql5.com/3/4/MetaTrader5_android_login.png" alt="" width="320" height="480" /></p>
<p><img class="aligncenter" src="http://c.mql5.com/3/4/MetaTrader5_android_trades.png" alt="MT5 on Android" width="320" height="480" /></p>
<p><img class="aligncenter" title="MT5 on Android" src="http://c.mql5.com/3/4/MetaTrader5_android_quotes.png" alt="" width="320" height="480" /></p>
<p><a rel="nofollow" href="http://www.mql5.com/en/forum/3480" target="_blank">Full Story Here</a>
<p><a href="http://4xtrader.net/metatrader_5_android/">MetaTrader 5 for Android</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/metatrader_5_android/">MetaTrader 5 for Android</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/metatrader_5_android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Dollar Trap&#8217;</title>
		<link>http://4xtrader.net/dollar_trap/</link>
		<comments>http://4xtrader.net/dollar_trap/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 08:11:08 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Forex News]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Dollar]]></category>

		<guid isPermaLink="false">http://4xtrader.net/dollar_trap/</guid>
		<description><![CDATA[<p>A top Chinese economist warned that the world has fallen into a &#8220;dollar trap,&#8221; as U.S. trading partners lack an alternative to the greenback and can&#8217;t prevent the Federal Reserve from printing more money. The arrangement means big holders of dollars – such as China, which holds some $3 trillion of foreign exchange reserves, mostly [...]<p><a href="http://4xtrader.net/dollar_trap/">&#8216;Dollar Trap&#8217;</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/dollar_trap/">&#8216;Dollar Trap&#8217;</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<div>A top Chinese economist warned that the world has fallen into a &#8220;dollar trap,&#8221; as U.S. trading partners lack an alternative to the greenback and can&#8217;t prevent the Federal Reserve from printing more money.</div>
<div>The arrangement means big holders of dollars – such as China, which holds some $3 trillion of foreign exchange reserves, mostly in dollars – must sit idly by and watch as the value of their holdings erode. They can&#8217;t lightly</div>
<p><div class="wp-caption alignright" style="width: 250px"><img alt="" src="http://fortunewallstreet.files.wordpress.com/2011/03/yuan033011.png?w=240&#038;h=320" width="240" height="320" /><p class="wp-caption-text">Not fast enough for some</p></div></p>
<p><a rel="nofollow" href="http://finance.fortune.cnn.com/2011/03/30/china-warns-of-dollar-trap/" target="_blank">Fortune.CNN.COM</a>
<p><a href="http://4xtrader.net/dollar_trap/">&#8216;Dollar Trap&#8217;</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/dollar_trap/">&#8216;Dollar Trap&#8217;</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/dollar_trap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>13% of all U.S. Homes Are Vacant</title>
		<link>http://4xtrader.net/13_us_homes_vacant/</link>
		<comments>http://4xtrader.net/13_us_homes_vacant/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 23:54:00 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Forex News]]></category>
		<category><![CDATA[Housing]]></category>
		<category><![CDATA[U.S.]]></category>
		<category><![CDATA[Vacant]]></category>

		<guid isPermaLink="false">http://4xtrader.net/13_us_homes_vacant/</guid>
		<description><![CDATA[<p>Housing prices are back to they were about a decade ago in major cities across the US. &#8220;The chart below shows that we have now reverted back to price levels where housing markets launched into their vertical 3 year price rise. What we have yet to erase is the excess speculation from the 2002 to [...]<p><a href="http://4xtrader.net/13_us_homes_vacant/">13% of all U.S. Homes Are Vacant</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/13_us_homes_vacant/">13% of all U.S. Homes Are Vacant</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.ritholtz.com/blog/2011/03/case-shiller-dismal-start-to-home-prices/"></a>Housing prices are back to they were about a decade ago in major cities across the US.</p>
<address>&#8220;The chart below shows that we have now reverted back to price levels where housing markets launched into their vertical 3 year price rise.<br />
What we have yet to erase is the excess speculation from the 2002 to 07 mania. Until that gets wrung out of the market, I doubt you will see a healthy Real Estate sector. That will only take place through a combination of lower prices, better holders and the elapsing of time.<br />
The good news is that is happening. The bad news is its a slow painful slog . . .&#8221;</address>
<p><img src="http://www.ritholtz.com/blog/wp-content/uploads/2011/03/CS-price-Summer-03.png" alt="" width="500" height="350" /></p>
<p><a rel="nofollow" target="_blank" href="http://www.ritholtz.com/blog/2011/03/case-shiller-dismal-start-to-home-prices/">The Big Picture</a>
<p><a href="http://4xtrader.net/13_us_homes_vacant/">13% of all U.S. Homes Are Vacant</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/13_us_homes_vacant/">13% of all U.S. Homes Are Vacant</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/13_us_homes_vacant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MetaTrader 5  on the Iphone</title>
		<link>http://4xtrader.net/metatrader_5_iphone/</link>
		<comments>http://4xtrader.net/metatrader_5_iphone/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 13:33:46 +0000</pubDate>
		<dc:creator>Giani</dc:creator>
				<category><![CDATA[Forex News]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[metatrader]]></category>
		<category><![CDATA[mql5]]></category>
		<category><![CDATA[mt5]]></category>

		<guid isPermaLink="false">http://4xtrader.net/metatrader_5_iphone/</guid>
		<description><![CDATA[<p>MT5 is alreafy on the Iphone App store and soon it will be getting an updated with charts allowing traders to visually track price movements. Soon indicators and graphical objects will appear in the mobile terminal. Full Story Here MetaTrader 5 on the Iphone is a post from: Forex Trading Tools<p><a href="http://4xtrader.net/metatrader_5_iphone/">MetaTrader 5  on the Iphone</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
</p><p>The post <a href="http://4xtrader.net/metatrader_5_iphone/">MetaTrader 5  on the Iphone</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></description>
				<content:encoded><![CDATA[<p>MT5 is alreafy on the Iphone App store and soon it will be getting an updated with charts allowing traders to visually track price movements. Soon indicators and graphical objects will appear in the mobile terminal.</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://i.mql5.com/player/mediaplayer.swf?video=http://c.mql5.com/3/3/iphone_last&amp;size=0&amp;width=500&amp;height=350&amp;border=1&amp;callback=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="350" src="http://i.mql5.com/player/mediaplayer.swf?video=http://c.mql5.com/3/3/iphone_last&amp;size=0&amp;width=500&amp;height=350&amp;border=1&amp;callback=1" allowfullscreen="true"></embed></object></center></p>
<p><a rel="nofollow" href="http://www.mql5.com/en/forum/3480" target="_blank">Full Story Here</a>
<p><a href="http://4xtrader.net/metatrader_5_iphone/">MetaTrader 5  on the Iphone</a> is a post from: <a href="http://4xtrader.net">Forex Trading Tools</a></p>
<p>The post <a href="http://4xtrader.net/metatrader_5_iphone/">MetaTrader 5  on the Iphone</a> appeared first on <a href="http://4xtrader.net"></a>.</p>]]></content:encoded>
			<wfw:commentRss>http://4xtrader.net/metatrader_5_iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
