<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Simple AFL code for 5 EMA(High-Low)</title>
	<atom:link href="http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=simple-afl-code-for-5-emahigh-low</link>
	<description>Simply Intelligent Technical Analysis and Trading Strategies</description>
	<lastBuildDate>Fri, 30 Jul 2010 16:11:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Aliasgar</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-1345</link>
		<dc:creator>Aliasgar</dc:creator>
		<pubDate>Thu, 18 Mar 2010 08:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-1345</guid>
		<description>Hello Rajendran,

Please paste again full AFL with modification suggested by above members.

Or I should use below code.

=======================================================================
    _SECTION_BEGIN(“5 EMA High-Low”);
    SetChartOptions(0,chartShowArrows&#124;chartShowDates);
    _N(Title = StrFormat(“{{NAME}} – {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}”, O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
    Plot( Close, “Close”, ParamColor(“Color”, colorBlack ), styleNoTitle &#124; ParamStyle(“Style”) &#124; GetPriceStyle() );

   Buy = Cross(Close,EMA( Low , 5 ));
   Sell = Cross(EMA( High , 5 ),Close);
   
    PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed, 0,High, Offset=-20);
    PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);
    Plot( EMA( Low,5), “5 EMA LOW”,ParamColor(“Color”, colorBlue ),styleNoRescale);
    Plot( EMA( High,5), “5 EMA High”,ParamColor(“Color”, colorBlue ),styleNoRescale);
    _SECTION_END();
=======================================================================

Thanks,
Aliasgar</description>
		<content:encoded><![CDATA[<p>Hello Rajendran,</p>
<p>Please paste again full AFL with modification suggested by above members.</p>
<p>Or I should use below code.</p>
<p>=======================================================================<br />
    _SECTION_BEGIN(“5 EMA High-Low”);<br />
    SetChartOptions(0,chartShowArrows|chartShowDates);<br />
    _N(Title = StrFormat(“{{NAME}} – {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}”, O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));<br />
    Plot( Close, “Close”, ParamColor(“Color”, colorBlack ), styleNoTitle | ParamStyle(“Style”) | GetPriceStyle() );</p>
<p>   Buy = Cross(Close,EMA( Low , 5 ));<br />
   Sell = Cross(EMA( High , 5 ),Close);</p>
<p>    PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed, 0,High, Offset=-20);<br />
    PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);<br />
    Plot( EMA( Low,5), “5 EMA LOW”,ParamColor(“Color”, colorBlue ),styleNoRescale);<br />
    Plot( EMA( High,5), “5 EMA High”,ParamColor(“Color”, colorBlue ),styleNoRescale);<br />
    _SECTION_END();<br />
=======================================================================</p>
<p>Thanks,<br />
Aliasgar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajandran R</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-1243</link>
		<dc:creator>Rajandran R</dc:creator>
		<pubDate>Wed, 17 Mar 2010 12:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-1243</guid>
		<description>Dipak,
It works fine for me. Its all the basic codings. So it should work in all versions of amibroker too</description>
		<content:encoded><![CDATA[<p>Dipak,<br />
It works fine for me. Its all the basic codings. So it should work in all versions of amibroker too</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dipak</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-1229</link>
		<dc:creator>dipak</dc:creator>
		<pubDate>Wed, 17 Mar 2010 08:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-1229</guid>
		<description>Sir,

        This code is not working. Giving the error at 1st &amp; Last line. Error 31. Syntax error, expecting &#039;)&#039; or&#039;,&#039;

Regards,

Dipak</description>
		<content:encoded><![CDATA[<p>Sir,</p>
<p>        This code is not working. Giving the error at 1st &amp; Last line. Error 31. Syntax error, expecting &#8216;)&#8217; or&#8217;,&#8217;</p>
<p>Regards,</p>
<p>Dipak</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajandran R</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-885</link>
		<dc:creator>Rajandran R</dc:creator>
		<pubDate>Mon, 15 Feb 2010 11:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-885</guid>
		<description>Dinesh, 
I tried for hourly, Daily and Weekly yielding good results. to know how to trade this afl just visit this post &lt;a href=&quot;http://www.marketcalls.in/2009/06/some-rule-to-trade-using-5-emalow-high.html&quot; rel=&quot;nofollow&quot;&gt;Simple Rules to Trade Using 5 EMA(LOW-HIGH)&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Dinesh,<br />
I tried for hourly, Daily and Weekly yielding good results. to know how to trade this afl just visit this post <a href="http://www.marketcalls.in/2009/06/some-rule-to-trade-using-5-emalow-high.html" rel="nofollow">Simple Rules to Trade Using 5 EMA(LOW-HIGH)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dinesh</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-872</link>
		<dc:creator>dinesh</dc:creator>
		<pubDate>Sun, 14 Feb 2010 15:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-872</guid>
		<description>hi thanks for afl. pls explain how to trade with help of this afl. on which scripts gives good results?</description>
		<content:encoded><![CDATA[<p>hi thanks for afl. pls explain how to trade with help of this afl. on which scripts gives good results?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajandran</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-722</link>
		<dc:creator>Rajandran</dc:creator>
		<pubDate>Sun, 27 Dec 2009 19:56:21 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-722</guid>
		<description>if the signal density is high then your profit potential is very low</description>
		<content:encoded><![CDATA[<p>if the signal density is high then your profit potential is very low</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajandran</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-721</link>
		<dc:creator>Rajandran</dc:creator>
		<pubDate>Sun, 27 Dec 2009 19:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-721</guid>
		<description>@ShyamWe should not try to create more buy/sell signals.As this would create a mess. The scope of creating a buy/sell signal is to identify turns earlier and to generate potential profits. If you include 5 EMA signals also then it would probably create a mess and finally ends in confusion(i.e should we have to believe this signal or not)</description>
		<content:encoded><![CDATA[<p>@ShyamWe should not try to create more buy/sell signals.As this would create a mess. The scope of creating a buy/sell signal is to identify turns earlier and to generate potential profits. If you include 5 EMA signals also then it would probably create a mess and finally ends in confusion(i.e should we have to believe this signal or not)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Market Hypothesis</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-720</link>
		<dc:creator>Market Hypothesis</dc:creator>
		<pubDate>Sun, 27 Dec 2009 17:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-720</guid>
		<description>More modification done in Buy sell.Buy = Cross(Close,EMA( Low , 5 ))OR Cross(Close,EMA( High , 5 )); Sell = Cross(EMA( High , 5 ),Close)OR Cross(EMA( Low , 5 ),Close);It works fine in hourly and daily chart. I have added your earlier Buy Sell signal conditionally because if turn around happened within the band then this conditional extension is required.</description>
		<content:encoded><![CDATA[<p>More modification done in Buy sell.Buy = Cross(Close,EMA( Low , 5 ))OR Cross(Close,EMA( High , 5 )); Sell = Cross(EMA( High , 5 ),Close)OR Cross(EMA( Low , 5 ),Close);It works fine in hourly and daily chart. I have added your earlier Buy Sell signal conditionally because if turn around happened within the band then this conditional extension is required.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajandran</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-719</link>
		<dc:creator>Rajandran</dc:creator>
		<pubDate>Sun, 27 Dec 2009 15:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-719</guid>
		<description>Iam sorry iam not getting any false signal on 16-12-2009</description>
		<content:encoded><![CDATA[<p>Iam sorry iam not getting any false signal on 16-12-2009</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Market Hypothesis</title>
		<link>http://www.marketcalls.in/2009/12/simple-afl-code-for-5-emahigh-low.html/comment-page-1#comment-718</link>
		<dc:creator>Market Hypothesis</dc:creator>
		<pubDate>Sun, 27 Dec 2009 15:08:26 +0000</pubDate>
		<guid isPermaLink="false">http://zmarketcalls.wordpress.com/2009/12/27/simple-afl-code-for-5-emahigh-low#comment-718</guid>
		<description>One more modification is required. Just open daily Nifty Chart and just watch 16-12-2009. it has given false signal. I do not know how to omit it but this type of false signal can be omitted.If possible then it will be great trading system.Thanks</description>
		<content:encoded><![CDATA[<p>One more modification is required. Just open daily Nifty Chart and just watch 16-12-2009. it has given false signal. I do not know how to omit it but this type of false signal can be omitted.If possible then it will be great trading system.Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
