<?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 &#187; TIKI</title>
	<atom:link href="http://www.thinkscripter.com/tag/tiki/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com</link>
	<description>thinkScript Indicators for thinkorswim</description>
	<lastBuildDate>Mon, 06 Sep 2010 19:13:24 +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>TIKI Indicator</title>
		<link>http://www.thinkscripter.com/indicator/tiki-indicator/</link>
		<comments>http://www.thinkscripter.com/indicator/tiki-indicator/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 01:27:15 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[thinkscript]]></category>
		<category><![CDATA[TIKI]]></category>

		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=204</guid>
		<description><![CDATA[The TIKI is just like the TICK indicator on the NYSE but only measures the Dow 30 stocks. <a href="http://www.thinkscripter.com/indicator/tiki-indicator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The TIKI is just like the TICK indicator on the NYSE but only measures the Dow 30 stocks. Extreme readings (26-30) are indicative of buy/sell programs hitting the market. A reading of 30 indicates all 30 Dow stocks are on an uptick. The indicator flags all readings of 26, 28, and 30 (+/-) with blue, yellow, and magenta triangles respectively. Read more on the TIKI and its use in John Carter&#8217;s  <a href="http://www.amazon.com/gp/product/0071459588?ie=UTF8&amp;tag=thinks-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0071459588">Mastering the Trade</a>.</p>
<div id="attachment_206" class="wp-caption aligncenter" style="width: 640px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/02/tiki.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2009/02/tiki.png" alt="TIKI Indicator" title="tiki"  class="size-full wp-image-206" /></a><p class="wp-caption-text">TIKI Indicator</p></div>
<pre class="brush: thinkscript;"># TIKI
# http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 25 Jan 2009

declare lower;

def highExtreme = 26;
def LowExtreme = -26;
input emaPeriod = 10;

plot h = high(&quot;$TIKI&quot;);
h.setPaintingStrategy(paintingStrategy.HISTOGRAM);
h.setDefaultColor(color.green);

plot l = low(&quot;$TIKI&quot;);
l.setDefaultColor(color.red);
l.setPaintingStrategy(paintingStrategy.HISTOGRAM);

plot zero = 0;
zero.setDefaultColor(color.white);

plot extH=highExtreme;
extH.setDefaultColor(color.red);

plot extL=LowExtreme;
extL.setDefaultColor(color.green);

plot c = close(&quot;$TIKI&quot;);
c.setStyle(curve.POINTS);
c.setDefaultColor(color.white);

plot ave = expAverage((h+l+c)/3,emaPeriod);
ave.setDefaultColor(color.white);
ave.setLineWeight(2);

plot extremeH = if(h &gt;=highExtreme, h, double.nan);
def extremeHColor = if(h==30, 0,if(h &gt;=28,8,  1));
extremeH.assignValueColor(getColor(extremeHColor));;
extremeH.setStyle(curve.POINTS);
extremeH.setpaintingStrategy(paintingStrategy.LINE_VS_TRIANGLES);

plot extremeL = if(l&lt;=lowExtreme, l, double.nan);
def extremeLColor = if(l==-30, 0,if(l&lt;=-28,8,  1));
extremeL.assignValueColor(getColor(extremeLColor));;
extremeL.setStyle(curve.POINTS);
extremeL.setpaintingStrategy(paintingStrategy.LINE_VS_TRIANGLES);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/indicator/tiki-indicator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
