<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — modify donch channels]]></title>
		<link>https://forexsb.com/forum/topic/4283/modify-donch-channels/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/4283/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in modify donch channels.]]></description>
		<lastBuildDate>Sat, 29 Jun 2013 21:16:15 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20864/#p20864</link>
			<description><![CDATA[<p>try this, declare downband again in the calc block above, then change the logic blocks like below.</p><div class="codebox"><pre><code>double[] adDnBand  = new double[Bars];

BandIndicatorLogic(iFirstBar, iPrvs, adUpBand, adDnBand, ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_below_the_Upper_Band);</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 29 Jun 2013 21:16:15 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20864/#p20864</guid>
		</item>
		<item>
			<title><![CDATA[Re: modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20861/#p20861</link>
			<description><![CDATA[<div class="quotebox"><cite>footon wrote:</cite><blockquote><p>post the code</p></blockquote></div><div class="codebox"><pre><code>case &quot;The bar opens below Upper Band&quot;:
                        BandIndicatorLogic(iFirstBar, iPrvs, adUpBand, 0,  ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_below_the_Upper_Band);
                        break;

                    case &quot;The bar opens above Upper Band&quot;:
                        BandIndicatorLogic(iFirstBar, iPrvs, adUpBand, 0,  ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_above_the_Upper_Band);
                        break;               

                    case &quot;The bar opens below Upper Band after opening above it&quot;:
                        BandIndicatorLogic(iFirstBar, iPrvs, adUpBand, 0,  ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_below_the_Upper_Band_after_opening_above_it);
                        break;

                    case &quot;The bar opens above Upper Band after opening below it&quot;:
                        BandIndicatorLogic(iFirstBar, iPrvs, adUpBand, 0,  ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_above_the_Upper_Band_after_opening_below_it);
                        break;                   </code></pre></div>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 29 Jun 2013 21:07:33 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20861/#p20861</guid>
		</item>
		<item>
			<title><![CDATA[Re: modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20860/#p20860</link>
			<description><![CDATA[<p>post the code</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 29 Jun 2013 21:04:22 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20860/#p20860</guid>
		</item>
		<item>
			<title><![CDATA[Re: modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20858/#p20858</link>
			<description><![CDATA[<p>i changed the empty space to 0&nbsp; but </p><br /><p>Line 237 Column 25: The best overloaded method match for &#039;ForexStrategyBuilder.Indicators.Indicator.BandIndicatorLogic(int, int, double[], double[], ref ForexStrategyBuilder.Indicators.IndicatorComp, ref ForexStrategyBuilder.Indicators.IndicatorComp, ForexStrategyBuilder.BandIndLogic)&#039; has some invalid arguments.<br />&nbsp; &nbsp; &nbsp;Line 237 Column 72: Argument &#039;4&#039;: cannot convert from &#039;int&#039; to &#039;double[]&#039;.<br />&nbsp; </p><p>and why bandlogic needs 6 arguments !!!!</p><br /><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 29 Jun 2013 20:57:47 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20858/#p20858</guid>
		</item>
		<item>
			<title><![CDATA[Re: modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20856/#p20856</link>
			<description><![CDATA[<p>sorry if that annoying you but i like to make most of indicators in one place to make it easy for all to find and participate</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 29 Jun 2013 20:47:04 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20856/#p20856</guid>
		</item>
		<item>
			<title><![CDATA[Re: modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20854/#p20854</link>
			<description><![CDATA[<p>Why post in my indi corner? Not my indi! Please remember to make a separate thread!</p><p>About your errors, you can&#039;t just delete a member of a logic method, therefore substitute it with a zero:<br />instead of this<br /></p><div class="codebox"><pre><code>BandIndicatorLogic(iFirstBar, iPrvs, adUpBand,  ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_below_the_Upper_Band);</code></pre></div><p>make it like this<br /></p><div class="codebox"><pre><code>BandIndicatorLogic(iFirstBar, iPrvs, adUpBand, 0, ref Component[2], ref Component[3],
                                           BandIndLogic.The_bar_opens_below_the_Upper_Band);</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 29 Jun 2013 20:24:00 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20854/#p20854</guid>
		</item>
		<item>
			<title><![CDATA[modify donch channels]]></title>
			<link>https://forexsb.com/forum/post/20853/#p20853</link>
			<description><![CDATA[<p>i tried to modify donch channels to work with volume so i need only one line instead-of two&nbsp; but after modification i find these errors </p><p>ERROR: Indicator compilation failed in file [DonchVolume.cs]<br />&nbsp; &nbsp; &nbsp;Line 237 Column 25: No overload for method &#039;BandIndicatorLogic&#039; takes &#039;6&#039; arguments.<br />&nbsp; &nbsp; &nbsp;Line 242 Column 25: No overload for method &#039;BandIndicatorLogic&#039; takes &#039;6&#039; arguments.<br />&nbsp; &nbsp; &nbsp;Line 247 Column 25: No overload for method &#039;BandIndicatorLogic&#039; takes &#039;6&#039; arguments.<br />&nbsp; &nbsp; &nbsp;Line 252 Column 25: No overload for method &#039;BandIndicatorLogic&#039; takes &#039;6&#039; arguments.<br />&nbsp; &nbsp; &nbsp;Line 279 Column 25: No overload for method &#039;BandIndicatorLogic&#039; takes &#039;6&#039; arguments.</p>]]></description>
			<author><![CDATA[null@example.com (ahmedalhoseny)]]></author>
			<pubDate>Sat, 29 Jun 2013 19:56:49 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20853/#p20853</guid>
		</item>
	</channel>
</rss>
