<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — New Indicator: Ergodic Indicator]]></title>
		<link>https://forexsb.com/forum/topic/1376/new-indicator-ergodic-indicator/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/1376" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in New Indicator: Ergodic Indicator.]]></description>
		<lastBuildDate>Sun, 30 Mar 2014 16:42:45 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: New Indicator: Ergodic Indicator]]></title>
			<link>https://forexsb.com/forum/post/24387/#p24387</link>
			<description><![CDATA[<p>I got it working now <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (zenoni)]]></author>
			<pubDate>Sun, 30 Mar 2014 16:42:45 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/24387/#p24387</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Indicator: Ergodic Indicator]]></title>
			<link>https://forexsb.com/forum/post/24381/#p24381</link>
			<description><![CDATA[<p>I get the following error in FSB Pro 1.1:</p><p>File name: Ergodic Indicator.cs<br />ERROR: &quot;Ergodic Indicator&quot; compilation failed.<br />&nbsp; &nbsp; &nbsp;Line 352 Column 37: An object reference is required for the non-static field, method, or property &#039;ForexStrategyBuilder.Indicators.Indicator.Bars.get&#039;.<br />&nbsp; &nbsp; &nbsp;Line 353 Column 37: An object reference is required for the non-static field, method, or property &#039;ForexStrategyBuilder.Indicators.Indicator.Bars.get&#039;.<br />&nbsp; &nbsp; &nbsp;Line 354 Column 37: An object reference is required for the non-static field, method, or property &#039;ForexStrategyBuilder.Indicators.Indicator.Bars.get&#039;.<br />&nbsp; &nbsp; &nbsp;Line 356 Column 17: An object reference is required for the non-static field, method, or property &#039;ForexStrategyBuilder.Indicators.Indicator.MovingAverage(int, int, ForexStrategyBuilder.Infrastructure.Enums.MAMethod, double[])&#039;.<br />&nbsp; &nbsp; &nbsp;Line 357 Column 17: An object reference is required for the non-static field, method, or property &#039;ForexStrategyBuilder.Indicators.Indicator.MovingAverage(int, int, ForexStrategyBuilder.Infrastructure.Enums.MAMethod, double[])&#039;.<br />&nbsp; &nbsp; &nbsp;Line 358 Column 17: An object reference is required for the non-static field, method, or property &#039;ForexStrategyBuilder.Indicators.Indicator.MovingAverage(int, int, ForexStrategyBuilder.Infrastructure.Enums.MAMethod, double[])&#039;.</p>]]></description>
			<author><![CDATA[null@example.com (zenoni)]]></author>
			<pubDate>Sun, 30 Mar 2014 15:28:21 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/24381/#p24381</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Indicator: Ergodic Indicator]]></title>
			<link>https://forexsb.com/forum/post/5032/#p5032</link>
			<description><![CDATA[<p>Dear Guru,</p><p>Can some pls convert the below trade station code to MQL4 for meta trader. Thank.</p><br /><p>Ergodic Indicator by William Blau<br />&nbsp; &nbsp; <br />ergodic indicator - text version</p><p>* To: &quot;Joel&quot; &lt;traderjoes@xxxxxxxxxxxxx&gt;<br />* Subject: ergodic indicator - text version<br />* From: &quot;Barry Silberman&quot; &lt;Barry@xxxxxxxxxxxxxxxxx&gt;<br />* Date: Tue, 2 Dec 2003 07:07:30 -0800<br />* In-reply-to: &lt;xBAY2-F154S68qIiMnwV0001edf2@xxxxxxxxxxx&gt;</p><p>Here is the code for the ergodic that is very similar to the one used in Woodie&#039;s room.</p><p>The fellow with the identification of R7 uses a value of 7, 27, 7. That should be equivalent to the values in my indicator of 7, 27, 1, 7.</p><p>Here is the text version for the indicator and three functions that can be cut and pasted:</p><p>Regards,</p><p>Barry Silberman</p><br /><p>Type: Function, Name: TXAverage</p><p>{TXAverage function</p><p>FORMAT: TXAverage(Price,r,s,u) }</p><p>Inputs: Price(NumericSeries), r(NumericSimple),s(NumericSimple),<br />u(NumericSimple);</p><p>TXAverage = XAverage(XAverage(XAverage(Price,r),s),u) ;</p> <br /><br /><br /><p>Type: Function, Name: TSI</p><p>{TSI function = True Strength Index by Bill Blau}</p><p>{FORMAT: TSI(Price,r,s,u)<br />Where: r = length of first EMA smoothing of 1 day momentum,<br />s = length of second EMA smoothing of 1 day smooting,<br />u = length of third EMA smooting of 1 daymomentum.}</p><p>Inputs:<br />Price(NumericSeries), r(NumericSimple), s(NumericSimple),</p><p>u(NumericSimple);</p><p>Value1= 100*TXAverage(Price-Price[1],r,s,u) ; { Numerator }</p><p>Value2=TXAverage(AbsValue(Price-Price[1]),r,s,u) ; { Denominator }</p><p>If Value2 &lt;&gt; 0 then TSI = Value1 / Value2</p><p>Else TSI = 0;</p> <br /><br /> <br /><br /><br /><p>Type: Indicator, Name: Ergodic Indicator</p><p>{Ergodic Indicator:}</p><p>{from William Blau&#039;s book --- &quot;Momentum, Direction and Divergence&quot;<br />FORMAT: Ergodic_TSI(Price, r, s, u,, SmthLen)<br />where r = length of first EMA smoothing of 1 day momentum,<br />s = length of second EMA smoothing of 1 day smooting,<br />u = length of third EMA smooting of 1 daymomentum,<br />SmthLen = length of ema signal line.</p><p>This is plotting the Average only (value2)}</p><p>Inputs: Price(c), r(7), s(27), u(1), Zeroline(0), SmthLen(7),<br />upcolor_1(green), downcolor_1(red), dotsize(2);</p><p>Value1= TSI(Price, r, s, u);</p><p>Value2= XAverage(TSI(Price, r, s, u), SmthLen);</p><p>If value2 &gt; value2[1] then<br />Plot3(Value2, &quot;SigLin&quot;, upcolor_1, default, dotsize);</p><p>If value2 &lt; value2[1] then<br />Plot3(Value2, &quot;SigLin&quot;, downcolor_1, default, dotsize);</p>]]></description>
			<author><![CDATA[null@example.com (richard ong)]]></author>
			<pubDate>Sun, 09 May 2010 23:54:37 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/5032/#p5032</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Indicator: Ergodic Indicator]]></title>
			<link>https://forexsb.com/forum/post/4960/#p4960</link>
			<description><![CDATA[<p>Hi zuijaideai and all forum menber,</p><p>Do u have any Ergordic indicator code for meta trader 4, where by the<br />indicator is same like chart you show on trade station, indicator<br />with green and red line. Thank.</p>]]></description>
			<author><![CDATA[null@example.com (richard ong)]]></author>
			<pubDate>Sun, 02 May 2010 14:01:31 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/4960/#p4960</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Indicator: Ergodic Indicator]]></title>
			<link>https://forexsb.com/forum/post/4387/#p4387</link>
			<description><![CDATA[<p>Thank you Denny.</p>]]></description>
			<author><![CDATA[null@example.com (jaimegue)]]></author>
			<pubDate>Wed, 24 Feb 2010 08:05:14 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/4387/#p4387</guid>
		</item>
		<item>
			<title><![CDATA[New Indicator: Ergodic Indicator]]></title>
			<link>https://forexsb.com/forum/post/4382/#p4382</link>
			<description><![CDATA[<p>Hi All,</p><p>I posted a new indicator called Ergodic Indicator, sometimes recognized as True Strength Index indicator. This indicator is a variation of the Relative Strength Index, developed by William Blau, it uses a differencing function to measure momentum and an averaging function to correlate the momentum to the price trend. In other words, the indicator combines the leading characteristic of a differencing momentum calculation with the lagging characteristic of an averaging function to create an indicator that reflects price direction and is in sync with market turns. </p><p><a href="http://www.postimage.org/image.php?v=gxXGueS"><span class="postimg"><img src="http://s1.postimage.org/XGueS.jpg" alt="http://s1.postimage.org/XGueS.jpg" /></span></a></p><p>May be the following links will help you understand more about the Ergodic Indicator.</p><p><a href="http://www.advfn.com/Help/true-strength-indicator-555.html">http://www.advfn.com/Help/true-strength … r-555.html</a><br /><a href="http://trader.online.pl/ELZ/t-i-Ergodic_Indicator.html">http://trader.online.pl/ELZ/t-i-Ergodic_Indicator.html</a></p><p>Rgds<br />Denny Imanuel<br />imanuel.denny@gmail.com</p>]]></description>
			<author><![CDATA[null@example.com (zuijaideai)]]></author>
			<pubDate>Wed, 24 Feb 2010 01:02:59 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/4382/#p4382</guid>
		</item>
	</channel>
</rss>
