<?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>ThinkScripter - Custom ThinkScript Indicators for thinkorswim &#187; TRIN</title>
	<atom:link href="http://www.thinkscripter.com/tag/trin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com</link>
	<description>Custom ThinkScript Indicator Scripts for thinkorswim</description>
	<lastBuildDate>Mon, 28 Jun 2010 02:18:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Polarized TRIN Oscillator</title>
		<link>http://www.thinkscripter.com/2009/03/26/polarized-trin-oscillator/</link>
		<comments>http://www.thinkscripter.com/2009/03/26/polarized-trin-oscillator/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 23:44:14 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[oscillator]]></category>
		<category><![CDATA[polarized]]></category>
		<category><![CDATA[thinkscript]]></category>
		<category><![CDATA[TRIN]]></category>

		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=867</guid>
		<description><![CDATA[I&#8217;ve been messing with the TRIN as of late and crafted this polarized oscillator using the average value of the TRIN and TRINQ. The oscillator has been inverted so that a rising oscillator line is indicative of rising prices vice the way the actual TRIN works. I&#8217;d have to classify this one as experimental so [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been messing with the TRIN as of late and crafted this polarized oscillator using the average value of the TRIN and TRINQ. The oscillator has been inverted so that a rising oscillator line is indicative of rising prices vice the way the actual TRIN works. I&#8217;d have to classify this one as experimental so feel free to hack away and post your modified version in the comments. I&#8217;ll be creating a user submissions page over the weekend and look forward to posting some of your best scripts!</p>
<div id="attachment_869" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/03/polarizedtrin.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2009/03/polarizedtrin.png" alt="Polarized TRIN Oscillator" title="polarizedtrin" width="450" height="491" class="size-full wp-image-869" /></a><p class="wp-caption-text">Polarized TRIN Oscillator</p></div>
<p><code style="text-align:left;"><br />
# POLARIZEDTRINOSCILLATOR<br />
# (c) 2009 http://www.thinkscripter.com<br />
# thinkscripter@gmail.com<br />
# Last Update 26 MAR 2009</p>
<p>declare lower;</p>
<p>input length = 9;<br />
input EMA_period = 5;</p>
<p>def trin = close(&quot;$TRIN&quot;);<br />
def trinq = close(&quot;$TRIN/Q&quot;);</p>
<p>def aveTrin = (trin+trinq)/2;</p>
<p>def fractal = sqrt(power(aveTrin-aveTrin[length],2)+100);<br />
def incremental = sqrt(power(aveTrin-aveTrin[1],2)+1);<br />
def sum = sum(incremental,length);</p>
<p>def resultant = if aveTrin-aveTrin[length] &gt; 0 then round100((fractal/sum)*100) else round100(-(fractal/sum)*100);</p>
<p>def polarizedTrin = if resultant == 0 then 1 else resultant;<br />
plot PTO = expAverage(-polarizedTrin, EMA_period);<br />
PTO.setDefaultColor(color.yellow);</p>
<p>plot zeroline = 0.0;<br />
zeroline.setDefaultColor(color.white);<br />
plot plusLine =75;<br />
plusLine.setDefaultColor(color.cyan);<br />
plot minusLine = -75;<br />
minusLine.setDefaultColor(color.cyan);<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/2009/03/26/polarized-trin-oscillator/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>TICK + TRIN Indicator</title>
		<link>http://www.thinkscripter.com/2009/02/23/tick-trin-indicator/</link>
		<comments>http://www.thinkscripter.com/2009/02/23/tick-trin-indicator/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 02:34:39 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[thinkscript]]></category>
		<category><![CDATA[TICK]]></category>
		<category><![CDATA[TRIN]]></category>

		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=344</guid>
		<description><![CDATA[I&#8217;ve taken the original TICK indicator and gone a few steps further. The plot more closely resembles a bar chart now and the bars are colored based on three options. First you can color the bars based on the slope of the nine period EMA of the TICK. Second you may color the bars based [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve taken the original TICK indicator and gone a few steps further. The plot more closely resembles a bar chart now and the bars are colored based on three options. First you can color the bars based on the slope of the nine period EMA of the TICK. Second you may color the bars based on whether that same nine period EMA is above or below the zero line as pictured below. Lastly, you can color any bars where the range of the TICK readings is greater than an input threshold. These bars are magenta and they provide an extreme volatility warning of sorts. Note that if you use this on a larger timeframe, you&#8217;ll probably want this option off. As before, extreme TICK readings are flagged with a yellow triangle also based on user-defined threshold values. The highest high TICK and lowest low TICK are indicated by the dashed lines in the extreme region. Lastly, the centerline of the indicator changes color based on the trend of the TRIN indicator. There are two methodologies for detecting the trend to choose from.</p>
<p>As with any study, you can turn on and off the parts of the indicator you would like to see in the control panel.</p>
<div id="attachment_348" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/02/tickplustrin.png"><img class="size-full wp-image-348" title="tickplustrin" src="http://www.thinkscripter.com/wp-content/uploads/2009/02/tickplustrin.png" alt="TICK + TRIN " width="450" height="457" /></a><p class="wp-caption-text">TICK + TRIN </p></div>
<p style="text-align: center;"><a href="http://www.thinkscripter.com/donations"><img src="http://www.thinkscripter.com/wp-content/uploads/2009/08/GoProButton.png" alt="GoProButton" title="GoProButton" width="225" height="75" class="aligncenter size-full wp-image-1487" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/2009/02/23/tick-trin-indicator/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
