<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Pivot Point Indicator]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/4576/" />
	<updated>2014-04-13T20:32:29Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/4576/pivot-point-indicator/</id>
		<entry>
			<title type="html"><![CDATA[Re: Pivot Point Indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/24668/#p24668" />
			<content type="html"><![CDATA[<p>Its working but the problem &#039;&#039; as i think&#039;&#039; in&nbsp; public override void SetDescription()</p><p>i didnot write the code block that describes the actions </p><p>example</p><div class="codebox"><pre><code>case &quot;The bar opens below a S3&quot;:
                    EntryFilterLongDescription = &quot;the bar opens lower than &quot; + sUpperTrade + &quot;S3 &quot; ;
                    EntryFilterShortDescription = &quot;the bar opens higher than &quot; + sLowerTrade + &quot;S3&quot; ;
                    break;</code></pre></div><p> <br />then i have to repeat the previous&nbsp; block with the following conditions </p><p>&quot;The bar opens above an R3&quot;,<br />&quot;The bar opens below a S3&quot;,<br />&quot;The bar opens above a S3&quot;,<br />&quot;The position opens below an R3&quot;,<br /> &quot;The position opens above an R3&quot;,<br />&quot;The position opens below a S3&quot;,<br />&quot;The position opens above a S3&quot;,<br />&quot;The bar opens above an R3 after opening below it&quot;,<br />&quot;The bar opens below a S3 after opening above it&quot;,<br />&quot;The bar opens above a S3 after opening below it&quot;</p><p>The indicator still working fine but cosmetically will be like that</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2014-04-13T20:32:29Z</updated>
			<id>https://forexsb.com/forum/post/24668/#p24668</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Pivot Point Indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/24667/#p24667" />
			<content type="html"><![CDATA[<p>Hello zenoni <br />i tested it using FSB and it works fine so i suppose it will work by default in FSB Pro !!!!</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2014-04-13T19:36:13Z</updated>
			<id>https://forexsb.com/forum/post/24667/#p24667</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Pivot Point Indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/24666/#p24666" />
			<content type="html"><![CDATA[<p>Please check the indicator. It seems that the indicator is working with FSB Pro, but there are some issues to check:</p><p><a href="http://postimg.org/image/4cwthuqab/"><span class="postimg"><img src="http://s5.postimg.org/4cwthuqab/piv1.jpg" alt="http://s5.postimg.org/4cwthuqab/piv1.jpg" /></span></a></p><p><a href="http://postimg.org/image/ja5aiv3ir/"><span class="postimg"><img src="http://s5.postimg.org/ja5aiv3ir/piv2.jpg" alt="http://s5.postimg.org/ja5aiv3ir/piv2.jpg" /></span></a></p>]]></content>
			<author>
				<name><![CDATA[zenoni]]></name>
				<uri>https://forexsb.com/forum/user/1400/</uri>
			</author>
			<updated>2014-04-13T18:58:53Z</updated>
			<id>https://forexsb.com/forum/post/24666/#p24666</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Pivot Point Indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/23212/#p23212" />
			<content type="html"><![CDATA[<p>Any help regarding that issue!!!</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2013-12-30T19:47:06Z</updated>
			<id>https://forexsb.com/forum/post/23212/#p23212</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Pivot Point Indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/23138/#p23138" />
			<content type="html"><![CDATA[<p>i Have a request !!&nbsp; how to shift by bars ??</p><p>This is what i did but not working <br /></p><div class="codebox"><pre><code>IndParam.NumParam[1].Caption = &quot;Shift&quot;;
IndParam.NumParam[1].Value = 0;
IndParam.NumParam[1].Min = 0;
IndParam.NumParam[1].Max = 200;
IndParam.NumParam[1].Enabled = true;
IndParam.NumParam[1].ToolTip = &quot;The number of bars to shift with.&quot;;</code></pre></div><div class="codebox"><pre><code>var iShift = (int)IndParam.NumParam[1].Value;</code></pre></div><p>convert </p><div class="codebox"><pre><code>int firstBar = 1;</code></pre></div><p> to </p><div class="codebox"><pre><code>int firstBar = 1 + iShift + 2;</code></pre></div><div class="codebox"><pre><code>for (int iBar = 1; iBar &lt; Bars; iBar++)</code></pre></div><p> to </p><div class="codebox"><pre><code>for (int iBar = 1; iBar &lt; Bars - iShift; iBar++)</code></pre></div><div class="codebox"><pre><code>adH[iBar] = dTop;
adL[iBar] = dBottom;
 adC[iBar] = Close[iBar - 1];</code></pre></div><p>&nbsp; to<br /></p><div class="codebox"><pre><code>adH[iBar+ iShift] = dTop;
adL[iBar+ iShift] = dBottom;
adC[iBar+ iShift] = Close[iBar - 1];</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2013-12-22T07:15:06Z</updated>
			<id>https://forexsb.com/forum/post/23138/#p23138</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Pivot Point Indicator]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/23137/#p23137" />
			<content type="html"><![CDATA[<p>attached here the pivotpoint indicator 4 slots&nbsp; <br />Note: the open close filter part use( R3 &amp; S3 only)&nbsp; until now&nbsp; so you can consider it modification of the top bottom indicator but using S3 instead of bottom and R3 instead of Top</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2013-12-22T06:57:35Z</updated>
			<id>https://forexsb.com/forum/post/23137/#p23137</id>
		</entry>
</feed>
