<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Filter indicator]]></title>
		<link>https://forexsb.com/forum/topic/3551/filter-indicator/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/3551/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Filter indicator.]]></description>
		<lastBuildDate>Sat, 18 Aug 2012 20:22:33 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15987/#p15987</link>
			<description><![CDATA[<p>It should be possible, but I have to think about it a lot to figure the solution out.</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 18 Aug 2012 20:22:33 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15987/#p15987</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15983/#p15983</link>
			<description><![CDATA[<p>AHA <br />I&nbsp; get it Now </p><p>Fotton i have an idea as soon as fatl and satl using the same way of calculation is that better to make the calculation block &quot; buffer&quot; universal by breaking the code to its parts and make the indicator dynamic in selecting which combinations of buffers !!!!</p><p>Lets take an example<br />-0.02232324*adBasePrice[iBar-0] <br />+0.02268676*adBasePrice[iBar-1] </p><p>Part 1- &quot;- Nums---- +Nums &quot;<br />Part 2- Adprice <br />Part 3- iBar-0.........iBar200<br />Part4- how many Lines it will select to build the satl </p><p>It may <br />-0.02232324*adBasePrice[iBar-0] <br />+0.02268676*adBasePrice[iBar-1] <br />+0.08389067*adBasePrice[iBar-2] <br />.<br />.<br />.</p><p>+0.14630380*adBasePrice[iBar-90]</p><p>it may <br />+0.02268676*adBasePrice[iBar-1]<br /> +0.08389067*adBasePrice[iBar-2] <br />.<br />.<br />.<br />+0.14630380*adBasePrice[iBar-66]&nbsp; &nbsp; and so on </p><p>Is that applicable</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 18 Aug 2012 19:34:03 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15983/#p15983</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15981/#p15981</link>
			<description><![CDATA[<p><img src="https://forexsb.com/forum/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /> <br />Calculation did not change, and top tip: /* */&nbsp; &nbsp;means it is commented out of the code, it is not used.</p><p>This is the calculation block:<br /></p><div class="codebox"><pre><code>SATLBuffer[iBar]= 
                    -0.02232324*adBasePrice[iBar-0] 
                    +0.02268676*adBasePrice[iBar-1] 
                    +0.08389067*adBasePrice[iBar-2] 
                    +0.14630380*adBasePrice[iBar-3] 
                    +0.19282649*adBasePrice[iBar-4] 
                    +0.21002638*adBasePrice[iBar-5] 
                    +0.19282649*adBasePrice[iBar-6] 
                    +0.14630380*adBasePrice[iBar-7] 
                    +0.08389067*adBasePrice[iBar-8] 
                    +0.02268676*adBasePrice[iBar-9] 
                    -0.02232324*adBasePrice[iBar-10] 
                    -0.04296564*adBasePrice[iBar-11] 
                    -0.03980614*adBasePrice[iBar-12] 
                    -0.02082171*adBasePrice[iBar-13] 
                    +0.00243636*adBasePrice[iBar-14] 
                    +0.01950580*adBasePrice[iBar-15] 
                    +0.02460929*adBasePrice[iBar-16] 
                    +0.01799295*adBasePrice[iBar-17] 
                    +0.00470540*adBasePrice[iBar-18] 
                    -0.00831985*adBasePrice[iBar-19] 
                    -0.01544722*adBasePrice[iBar-20] 
                    -0.01456262*adBasePrice[iBar-21] 
                    -0.00733980*adBasePrice[iBar-22] 
                    +0.00201852*adBasePrice[iBar-23] 
                    +0.00902504*adBasePrice[iBar-24] 
                    +0.01093067*adBasePrice[iBar-25] 
                    +0.00766099*adBasePrice[iBar-26] 
                    +0.00145478*adBasePrice[iBar-27] 
                    -0.00447175*adBasePrice[iBar-28] 
                    -0.00750446*adBasePrice[iBar-29] 
                    -0.00671646*adBasePrice[iBar-30] 
                    -0.00304016*adBasePrice[iBar-31] 
                    +0.00143433*adBasePrice[iBar-32] 
                    +0.00457475*adBasePrice[iBar-33] 
                    +0.00517589*adBasePrice[iBar-34] 
                    +0.00336708*adBasePrice[iBar-35] 
                    +0.00034406*adBasePrice[iBar-36] 
                    -0.00233637*adBasePrice[iBar-37] 
                    -0.00352280*adBasePrice[iBar-38] 
                    -0.00293522*adBasePrice[iBar-39] 
                    -0.00114249*adBasePrice[iBar-40] 
                    +0.00083536*adBasePrice[iBar-41] 
                    +0.00215524*adBasePrice[iBar-42] 
                    +0.00604133*adBasePrice[iBar-43] 
                    -0.00013046*adBasePrice[iBar-44];</code></pre></div><p>What is between /* */ is NOT important. I changed the base code for getting rid of the bug fast.</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 18 Aug 2012 19:04:16 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15981/#p15981</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15979/#p15979</link>
			<description><![CDATA[<p>In SATL V2&nbsp; what is the use of this part of code !!!!!!!</p><p>// The NumericUpDown parameters<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /*IndParam.NumParam[0].Caption = &quot;Period&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Value = 14;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Min = 1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Max = 200;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Enabled = true;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].ToolTip = &quot;The Moving Average period.&quot;;</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Caption = &quot;Shift&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Value = 0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Min = 0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Max = 200;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Enabled = true;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].ToolTip = &quot;How many bars to shift with.&quot;;*/</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 18 Aug 2012 18:17:52 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15979/#p15979</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15978/#p15978</link>
			<description><![CDATA[<p>WAW <br />you completely changed the code <br />when iam looking to the 1st satl and compare to new satl you modified&nbsp; some parts of code&nbsp; <br />/*// The NumericUpDown parameters<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Caption&nbsp; &nbsp;= &quot;period&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Value&nbsp; &nbsp; &nbsp;= 80;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Min&nbsp; &nbsp; &nbsp; &nbsp;= 2;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Max&nbsp; &nbsp; &nbsp; &nbsp;= 200;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //IndParam.NumParam[0].Point&nbsp; &nbsp; &nbsp;= 1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].Enabled&nbsp; &nbsp;= true;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[0].ToolTip&nbsp; &nbsp;= &quot;The Moving Average period.&quot;;</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /*IndParam.NumParam[1].Caption&nbsp; &nbsp;= &quot;ShortPeriod&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Value&nbsp; &nbsp; &nbsp;= 8.0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Min&nbsp; &nbsp; &nbsp; &nbsp;= 0.1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Max&nbsp; &nbsp; &nbsp; &nbsp;= 200;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Point&nbsp; &nbsp; &nbsp;= 1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].Enabled&nbsp; &nbsp;= true;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[1].ToolTip&nbsp; &nbsp;= &quot;ShortPeriod&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].Caption&nbsp; &nbsp;= &quot;ExtraTimeForward&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].Value&nbsp; &nbsp; &nbsp;= 1.0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].Min&nbsp; &nbsp; &nbsp; &nbsp;= 0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].Max&nbsp; &nbsp; &nbsp; &nbsp;= 200;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].Point&nbsp; &nbsp; &nbsp;= 1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].Enabled&nbsp; &nbsp;= true;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[2].ToolTip&nbsp; &nbsp;= &quot;ExtraTimeForward&quot;;*/<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /*IndParam.NumParam[3].Caption&nbsp; &nbsp;= &quot;deviation&quot;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[3].Value&nbsp; &nbsp; &nbsp;= 0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[3].Min&nbsp; &nbsp; &nbsp; &nbsp;= 0;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[3].Max&nbsp; &nbsp; &nbsp; &nbsp;= 200;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[3].Enabled&nbsp; &nbsp;= true;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IndParam.NumParam[3].ToolTip&nbsp; &nbsp;= &quot;How many bars to shift with.&quot;;*/</p><p>I get lost !!!!!!!</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 18 Aug 2012 18:10:40 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15978/#p15978</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15977/#p15977</link>
			<description><![CDATA[<p>Please explain more, I&#039;m not understanding the question I&#039;m afraid.</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 18 Aug 2012 17:58:44 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15977/#p15977</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15975/#p15975</link>
			<description><![CDATA[<p>i donot understand the concept behind the filter indicators calculations they look like MAs but sure they arenot&nbsp; </p><p>and you already coded them so fotoon could you teel me how you read these indicators and how the indicator links between the arrays &quot; the down part of indicator&quot; with the values in the upper part </p><p>Regards</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 18 Aug 2012 17:54:44 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15975/#p15975</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15971/#p15971</link>
			<description><![CDATA[<p>it will be fine</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 18 Aug 2012 17:30:46 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15971/#p15971</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15968/#p15968</link>
			<description><![CDATA[<div class="quotebox"><cite>ahmedalhoseny wrote:</cite><blockquote><p>thanks for fast response <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p></blockquote></div><p>They were pretty easy. I was thinking maybe I should combine them in a crossover indi, what do you think?</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 18 Aug 2012 17:24:04 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15968/#p15968</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15965/#p15965</link>
			<description><![CDATA[<p>thanks for fast response <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 18 Aug 2012 17:08:45 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15965/#p15965</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15962/#p15962</link>
			<description><![CDATA[<p>Ahmed, find Fatl&amp;Satl here: <a href="http://forexsb.com/forum/post/15959/#p15959">http://forexsb.com/forum/post/15959/#p15959</a>.</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Fri, 17 Aug 2012 23:49:47 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15962/#p15962</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15958/#p15958</link>
			<description><![CDATA[<p>Here some sources shows the filters </p><p>http://www.forex-tsd.com/digital-filters/300-trading-strategies-based-digital-filters.html</p><p>http://www.forex-tsd.com/digital-filters/76-digital-filters-basic-explanation.html</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Fri, 17 Aug 2012 18:19:21 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15958/#p15958</guid>
		</item>
		<item>
			<title><![CDATA[Re: Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15957/#p15957</link>
			<description><![CDATA[<p>SATL indicator</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Fri, 17 Aug 2012 18:11:07 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15957/#p15957</guid>
		</item>
		<item>
			<title><![CDATA[Filter indicator]]></title>
			<link>https://forexsb.com/forum/post/15956/#p15956</link>
			<description><![CDATA[<p>Dear all i opened this topic for digital filters requests and sharing thoughts about them </p><p>i will start with requests of two indicators</p><p>SATL and FATL</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Fri, 17 Aug 2012 18:09:31 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15956/#p15956</guid>
		</item>
	</channel>
</rss>
