<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Filter indicator]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/3551/" />
	<updated>2012-08-18T20:22:33Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/3551/filter-indicator/</id>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15987/#p15987" />
			<content type="html"><![CDATA[<p>It should be possible, but I have to think about it a lot to figure the solution out.</p>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2012-08-18T20:22:33Z</updated>
			<id>https://forexsb.com/forum/post/15987/#p15987</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15983/#p15983" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-18T19:34:03Z</updated>
			<id>https://forexsb.com/forum/post/15983/#p15983</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15981/#p15981" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2012-08-18T19:04:16Z</updated>
			<id>https://forexsb.com/forum/post/15981/#p15981</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15979/#p15979" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-18T18:17:52Z</updated>
			<id>https://forexsb.com/forum/post/15979/#p15979</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15978/#p15978" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-18T18:10:40Z</updated>
			<id>https://forexsb.com/forum/post/15978/#p15978</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15977/#p15977" />
			<content type="html"><![CDATA[<p>Please explain more, I&#039;m not understanding the question I&#039;m afraid.</p>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2012-08-18T17:58:44Z</updated>
			<id>https://forexsb.com/forum/post/15977/#p15977</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15975/#p15975" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-18T17:54:44Z</updated>
			<id>https://forexsb.com/forum/post/15975/#p15975</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15971/#p15971" />
			<content type="html"><![CDATA[<p>it will be fine</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-18T17:30:46Z</updated>
			<id>https://forexsb.com/forum/post/15971/#p15971</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15968/#p15968" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2012-08-18T17:24:04Z</updated>
			<id>https://forexsb.com/forum/post/15968/#p15968</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15965/#p15965" />
			<content type="html"><![CDATA[<p>thanks for fast response <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-18T17:08:45Z</updated>
			<id>https://forexsb.com/forum/post/15965/#p15965</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15962/#p15962" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2012-08-17T23:49:47Z</updated>
			<id>https://forexsb.com/forum/post/15962/#p15962</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15958/#p15958" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-17T18:19:21Z</updated>
			<id>https://forexsb.com/forum/post/15958/#p15958</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15957/#p15957" />
			<content type="html"><![CDATA[<p>SATL indicator</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-17T18:11:07Z</updated>
			<id>https://forexsb.com/forum/post/15957/#p15957</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Filter indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15956/#p15956" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-17T18:09:31Z</updated>
			<id>https://forexsb.com/forum/post/15956/#p15956</id>
		</entry>
</feed>
