<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MetaTrader Australia &#187; TSI</title>
	<atom:link href="http://www.MetaTrader.com.au/tag/tsi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.MetaTrader.com.au</link>
	<description>All about MetaTrader</description>
	<lastBuildDate>Mon, 06 Sep 2010 22:33:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Applying One Indicator to Another &#8211; MetaTrader 5</title>
		<link>http://www.MetaTrader.com.au/396/applying-one-indicator-to-another-metatrader-5/</link>
		<comments>http://www.MetaTrader.com.au/396/applying-one-indicator-to-another-metatrader-5/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 04:22:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MetaTrader General]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Custom Indicator Based]]></category>
		<category><![CDATA[custom indicators]]></category>
		<category><![CDATA[Indicators]]></category>
		<category><![CDATA[Metatrader]]></category>
		<category><![CDATA[Metatrader 5]]></category>
		<category><![CDATA[Metatrader 5 features]]></category>
		<category><![CDATA[Metatrader5]]></category>
		<category><![CDATA[MQL5]]></category>
		<category><![CDATA[MT5]]></category>
		<category><![CDATA[Parameters]]></category>
		<category><![CDATA[Previous Indicators Data]]></category>
		<category><![CDATA[progamming]]></category>
		<category><![CDATA[True Strength Index]]></category>
		<category><![CDATA[TSI]]></category>

		<guid isPermaLink="false">http://www.MetaTrader.com.au/?p=396</guid>
		<description><![CDATA[Let&#8217;s consider a task of improving an indicator, which is applied to values of another indicator. In this article we&#8217;ll continue to work with True Strength Index (TSI), which was created and considered in the previous article &#8220;MQL5: Create Your Own Indicator&#8220;. Custom Indicator Based on Other Indicator&#8217;s Values When writing an indicator that uses [...]


Related posts:<ol><li><a href='http://www.MetaTrader.com.au/566/metatrader-5-%e2%80%93-how-to-write-an-indicator-on-the-basis-of-another-indicator/' rel='bookmark' title='Permanent Link: MetaTrader 5 – How to Write an Indicator on the Basis of Another Indicator'>MetaTrader 5 – How to Write an Indicator on the Basis of Another Indicator</a></li>
<li><a href='http://www.MetaTrader.com.au/431/metatrader-5-guide-to-using-technical-indicators-in-expert-advisors/' rel='bookmark' title='Permanent Link: MetaTrader 5 &#8211; Guide to Using Technical Indicators in Expert Advisors'>MetaTrader 5 &#8211; Guide to Using Technical Indicators in Expert Advisors</a></li>
<li><a href='http://www.MetaTrader.com.au/301/decorating-indicators-metatrader-4/' rel='bookmark' title='Permanent Link: Decorating Indicators &#8211; MetaTrader 4'>Decorating Indicators &#8211; MetaTrader 4</a></li>
<li><a href='http://www.MetaTrader.com.au/574/transferring-indicators-from-mql4-to-mql5/' rel='bookmark' title='Permanent Link: Transferring Indicators from MQL4 to MQL5'>Transferring Indicators from MQL4 to MQL5</a></li>
<li><a href='http://www.MetaTrader.com.au/227/custom-indicators-in-mql5/' rel='bookmark' title='Permanent Link: Custom Indicators in MQL5'>Custom Indicators in MQL5</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s consider a task of improving an indicator, which is applied to values of another indicator. In this article we&#8217;ll continue to work with True Strength Index (TSI), which was created and considered in the previous article &#8220;<a href="http://www.metatraderglobal.com/874/mql5-create-your-own-indicator-mql5-wizard/">MQL5: Create Your Own Indicator</a>&#8220;.</p>
<h3>Custom Indicator Based on Other Indicator&#8217;s Values</h3>
<p style="text-align: center;"><img class="aligncenter" title="MT5-Indicator-TSI" src="http://www.MetaTrader.com.au/wp/wp-content/uploads/HLIC/a2e24c93bfb523c3306354ebdff5e0d2.png" alt="a2e24c93bfb523c3306354ebdff5e0d2 Applying One Indicator to Another   MetaTrader 5" width="500" height="243" /></p>
<p>When writing an indicator that uses the short form of the OnCalculate() function call, you might miss the fact that an indicator can be calculated not only by price data, but also by data of some other indicator (no matter whether it is a built-in or custom one).</p>
<p>Let&#8217;s make a simple experiment: attach the built-in RSI indicator with standard settings to a chart, and drag the <em>True_Strength_Index_ver2</em>.mq5 custom indicator to the RSI indicator window. In the <strong>Parameters</strong> tab of the appeared window specify that the indicator should be applied to <strong>Previous Indicator&#8217;s Data</strong> (RSI(14)).</p>
<p><em>Continue to read the full article at <a href="http://www.mql5.com/en/articles/15" target="_blank">http://www.mql5.com/en/articles/15</a></em></p>


<p>Related posts:<ol><li><a href='http://www.MetaTrader.com.au/566/metatrader-5-%e2%80%93-how-to-write-an-indicator-on-the-basis-of-another-indicator/' rel='bookmark' title='Permanent Link: MetaTrader 5 – How to Write an Indicator on the Basis of Another Indicator'>MetaTrader 5 – How to Write an Indicator on the Basis of Another Indicator</a></li>
<li><a href='http://www.MetaTrader.com.au/431/metatrader-5-guide-to-using-technical-indicators-in-expert-advisors/' rel='bookmark' title='Permanent Link: MetaTrader 5 &#8211; Guide to Using Technical Indicators in Expert Advisors'>MetaTrader 5 &#8211; Guide to Using Technical Indicators in Expert Advisors</a></li>
<li><a href='http://www.MetaTrader.com.au/301/decorating-indicators-metatrader-4/' rel='bookmark' title='Permanent Link: Decorating Indicators &#8211; MetaTrader 4'>Decorating Indicators &#8211; MetaTrader 4</a></li>
<li><a href='http://www.MetaTrader.com.au/574/transferring-indicators-from-mql4-to-mql5/' rel='bookmark' title='Permanent Link: Transferring Indicators from MQL4 to MQL5'>Transferring Indicators from MQL4 to MQL5</a></li>
<li><a href='http://www.MetaTrader.com.au/227/custom-indicators-in-mql5/' rel='bookmark' title='Permanent Link: Custom Indicators in MQL5'>Custom Indicators in MQL5</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.MetaTrader.com.au/396/applying-one-indicator-to-another-metatrader-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
