<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Pivot Point Indicator]]></title>
		<link>https://forexsb.com/forum/topic/4576/pivot-point-indicator/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/4576/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Pivot Point Indicator.]]></description>
		<lastBuildDate>Sun, 13 Apr 2014 20:32:29 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Pivot Point Indicator]]></title>
			<link>https://forexsb.com/forum/post/24668/#p24668</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sun, 13 Apr 2014 20:32:29 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/24668/#p24668</guid>
		</item>
		<item>
			<title><![CDATA[Re: Pivot Point Indicator]]></title>
			<link>https://forexsb.com/forum/post/24667/#p24667</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sun, 13 Apr 2014 19:36:13 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/24667/#p24667</guid>
		</item>
		<item>
			<title><![CDATA[Re: Pivot Point Indicator]]></title>
			<link>https://forexsb.com/forum/post/24666/#p24666</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (zenoni)]]></author>
			<pubDate>Sun, 13 Apr 2014 18:58:53 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/24666/#p24666</guid>
		</item>
		<item>
			<title><![CDATA[Re: Pivot Point Indicator]]></title>
			<link>https://forexsb.com/forum/post/23212/#p23212</link>
			<description><![CDATA[<p>Any help regarding that issue!!!</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Mon, 30 Dec 2013 19:47:06 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/23212/#p23212</guid>
		</item>
		<item>
			<title><![CDATA[Re: Pivot Point Indicator]]></title>
			<link>https://forexsb.com/forum/post/23138/#p23138</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sun, 22 Dec 2013 07:15:06 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/23138/#p23138</guid>
		</item>
		<item>
			<title><![CDATA[Pivot Point Indicator]]></title>
			<link>https://forexsb.com/forum/post/23137/#p23137</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sun, 22 Dec 2013 06:57:35 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/23137/#p23137</guid>
		</item>
	</channel>
</rss>
