<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Balidev.com Software Development</title>
	<link>http://www.balidev.com</link>
	<description>Metatrader Expert Advisor Development Specialist</description>
	<pubDate>Tue, 08 Jan 2008 07:44:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>PriceChannel-LowHigh - a Low/High Price Channel Indicator</title>
		<link>http://www.balidev.com/archives/pricechannel-lowhigh-a-lowhigh-price-channel-indicator</link>
		<comments>http://www.balidev.com/archives/pricechannel-lowhigh-a-lowhigh-price-channel-indicator#comments</comments>
		<pubDate>Thu, 03 Jan 2008 06:51:00 +0000</pubDate>
		<dc:creator>yogi triana</dc:creator>
		
		<category><![CDATA[Indicator Module]]></category>

		<category><![CDATA[Metatrader Modules]]></category>

		<guid isPermaLink="false">http://www.balidev.com/archives/pricechannel-lowhigh-a-lowhigh-price-channel-indicator</guid>
		<description><![CDATA[The PriceChannel-LowHigh is a Low/High price channel indicator. This indicator simply showing the lowest or highest value for a certain last period.
This simple indicator, is known used by the famous Turtle Trading System.
This indicator freely available in PriceChannel-LowHigh.ex4 binary file and also the PriceChannel-LowHigh.mq4 source code file format.
]]></description>
			<content:encoded><![CDATA[<p>The PriceChannel-LowHigh is a Low/High price channel indicator. This indicator simply showing the lowest or highest value for a certain last period.</p>
<p>This simple indicator, is known used by the famous Turtle Trading System.</p>
<p>This indicator freely available in <a href="http://www.balidev.com/wp-content/uploads/2008/01/pricechannel-lowhigh.ex4" title="PriceChannel-LowHigh.ex4 binary file">PriceChannel-LowHigh.ex4 binary file</a> and also the <a href="http://www.balidev.com/wp-content/uploads/2008/01/pricechannel-lowhigh.mq4" title="PriceChannel-LowHigh.mq4 source code">PriceChannel-LowHigh.mq4 source code</a> file format.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.balidev.com/archives/pricechannel-lowhigh-a-lowhigh-price-channel-indicator/feed</wfw:commentRss>
		</item>
		<item>
		<title>Code Snipset to Filter Order Placement by Weekly Timeframe</title>
		<link>http://www.balidev.com/archives/code-snipset-to-filter-order-placement-by-weekly-timeframe</link>
		<comments>http://www.balidev.com/archives/code-snipset-to-filter-order-placement-by-weekly-timeframe#comments</comments>
		<pubDate>Tue, 01 Jan 2008 08:46:53 +0000</pubDate>
		<dc:creator>yogi triana</dc:creator>
		
		<category><![CDATA[Script Snipset]]></category>

		<guid isPermaLink="false">http://www.balidev.com/archives/code-snipset-to-filter-order-placement-by-weekly-timeframe</guid>
		<description><![CDATA[
Previously we write a simple code to filter order placement by daily timeframe. This version modify the previous code, to provide filtering facility base on weekly time frame.
With this simple script you will be able to filter base on weekly time frame such as preventing order placement in the week end or for others specific [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-right: 20px; float: left"><a href="http://www.balidev.com/wp-content/uploads/2007/11/mql4wizard.gif" title="mql4wizard.gif"><img src="http://www.balidev.com/wp-content/uploads/2007/11/mql4wizard.gif" alt="mql4wizard.gif" border="0" /></a></p>
<p>Previously we write a simple code to filter order placement by daily timeframe. This version modify the previous code, to provide filtering facility base on weekly time frame.</p>
<p>With this simple script you will be able to filter base on weekly time frame such as preventing order placement in the week end or for others specific purposes</p>
<p> <a href="http://www.balidev.com/archives/code-snipset-to-filter-order-placement-by-weekly-timeframe#more-15" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.balidev.com/archives/code-snipset-to-filter-order-placement-by-weekly-timeframe/feed</wfw:commentRss>
		</item>
		<item>
		<title>Code Snipset to Filter Order Placement Base on Time</title>
		<link>http://www.balidev.com/archives/code-snipset-to-filter-order-placement-base-on-time</link>
		<comments>http://www.balidev.com/archives/code-snipset-to-filter-order-placement-base-on-time#comments</comments>
		<pubDate>Thu, 15 Nov 2007 07:36:05 +0000</pubDate>
		<dc:creator>yogi triana</dc:creator>
		
		<category><![CDATA[Script Snipset]]></category>

		<guid isPermaLink="false">http://www.balidev.com/archives/code-snipset-to-filter-order-placement-base-on-time</guid>
		<description><![CDATA[
In many cases, we need to put order/transaction placement filter base on time. For example, we only want to entry the market during the busy hour, or only entry the market in a specific time, etc..
Following code is a simple and general purpose code for your expert advisor. The time filter can be configured through [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-right: 20px; float: left"><a href="http://www.balidev.com/wp-content/uploads/2007/11/mql4wizard.gif" title="mql4wizard.gif"><img src="http://www.balidev.com/wp-content/uploads/2007/11/mql4wizard.gif" alt="mql4wizard.gif" border="0" /></a></p>
<p>In many cases, we need to put order/transaction placement filter base on time. For example, we only want to entry the market during the busy hour, or only entry the market in a specific time, etc..</p>
<p>Following code is a simple and general purpose code for your expert advisor. The time filter can be configured through the EA parameters &#8220;prm_trade_timeframe&#8221;.</p>
<p> <a href="http://www.balidev.com/archives/code-snipset-to-filter-order-placement-base-on-time#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.balidev.com/archives/code-snipset-to-filter-order-placement-base-on-time/feed</wfw:commentRss>
		</item>
		<item>
		<title>Developing An Automated Trading System</title>
		<link>http://www.balidev.com/archives/developing-an-automated-trading-system</link>
		<comments>http://www.balidev.com/archives/developing-an-automated-trading-system#comments</comments>
		<pubDate>Wed, 14 Nov 2007 10:48:07 +0000</pubDate>
		<dc:creator>yogi triana</dc:creator>
		
		<category><![CDATA[General Articles]]></category>

		<category><![CDATA[automated trading system]]></category>

		<guid isPermaLink="false">http://www.balidev.com/archives/developing-an-automated-trading-system</guid>
		<description><![CDATA[
Computer system has changed the human life. Many human aspects depend on this system. From simple cases such house ware like washing machine into the complicated medical equipment and space craft now computer controlled.
The financial service also use extensively this computer system. Marketing, trading and financial control now use computer system.
The forex trading as one [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-right: 20px; float: left"><a href="http://www.balidev.com/wp-content/uploads/2007/11/computer_usd.jpg" title="computer_usd.jpg"><img style="border:none;" src="http://www.balidev.com/wp-content/uploads/2007/11/computer_usd.jpg" alt="computer_usd.jpg" /></a></p>
<p>Computer system has changed the human life. Many human aspects depend on this system. From simple cases such house ware like washing machine into the complicated medical equipment and space craft now computer controlled.</p>
<p>The financial service also use extensively this computer system. Marketing, trading and financial control now use computer system.</p>
<p>The forex trading as one of the most liquid market also uses the computer system. Together with the internet technology, the forex trading take many advantages from this system such as:</p>
<ul>
<li>World wide market access</li>
<li>Almost instant and real time execution</li>
<li>Comprehensive analytical and trend calculation</li>
<li>Automated Trading strategy execution</li>
</ul>
<p> <a href="http://www.balidev.com/archives/developing-an-automated-trading-system#more-8" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.balidev.com/archives/developing-an-automated-trading-system/feed</wfw:commentRss>
		</item>
		<item>
		<title>Balidev.com Specialized into Metatrader Expert Advisor Development</title>
		<link>http://www.balidev.com/archives/balidevcom-specialized-into-metatrader-expert-advisor-development</link>
		<comments>http://www.balidev.com/archives/balidevcom-specialized-into-metatrader-expert-advisor-development#comments</comments>
		<pubDate>Tue, 13 Nov 2007 05:03:34 +0000</pubDate>
		<dc:creator>yogi triana</dc:creator>
		
		<category><![CDATA[Expert Advisor]]></category>

		<category><![CDATA[General Articles]]></category>

		<category><![CDATA[Indicator Module]]></category>

		<category><![CDATA[Metatrader Modules]]></category>

		<category><![CDATA[Trading Algorithm]]></category>

		<category><![CDATA[Wordpress Themes and Plugins]]></category>

		<guid isPermaLink="false">http://www.balidev.com/?p=3</guid>
		<description><![CDATA[
As business goes into the market driven, the Balidev.com Software Development now specializing into specific development area.
Balidev.com commit to perform technical research to produce profitable trading strategy and write the automated trading system base on the produced strategy algorithm.
]]></description>
			<content:encoded><![CDATA[<p style="margin-right: 20px; float: left"><a href="http://www.balidev.com/wp-content/uploads/2007/11/mt4.gif" title="mt4.gif"><img src="http://www.balidev.com/wp-content/uploads/2007/11/mt4.gif" alt="mt4.gif" style="border: medium none " /></a></p>
<p>As business goes into the market driven, the Balidev.com Software Development now specializing into specific development area.</p>
<p>Balidev.com commit to perform technical research to produce profitable trading strategy and write the automated trading system base on the produced strategy algorithm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.balidev.com/archives/balidevcom-specialized-into-metatrader-expert-advisor-development/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
