<?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; oscillator</title>
	<atom:link href="http://www.thinkscripter.com/tag/oscillator/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com</link>
	<description>thinkScript Indicators for thinkorswim</description>
	<lastBuildDate>Sun, 29 Jan 2012 16:11:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>DT Oscillator</title>
		<link>http://www.thinkscripter.com/indicator/dt-oscillator/</link>
		<comments>http://www.thinkscripter.com/indicator/dt-oscillator/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 03:21:52 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[DT Oscillator]]></category>
		<category><![CDATA[oscillator]]></category>
		<category><![CDATA[RSI]]></category>
		<category><![CDATA[stochastic]]></category>
		<category><![CDATA[thinkscript]]></category>

		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1790</guid>
		<description><![CDATA[Here&#8217;s a Saturday evening quickie. Lou dropped into the forum last week looking for a simple thinkScript conversion of the DT Oscillator code he had. It&#8217;s pretty basic but I thought I&#8217;d post it here in case you missed it &#8230; <a href="http://www.thinkscripter.com/indicator/dt-oscillator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a Saturday evening quickie. Lou dropped into the forum last week looking for a simple thinkScript conversion of the DT Oscillator code he had. It&#8217;s pretty basic but I thought I&#8217;d post it here in case you missed it in the forum. In essence it is just another version of the Stochastic RSI. I&#8217;ve been a bit quiet these days in the forum as I have spent a fair amount of time deep in the ThinkScripter laboratory cooking up some new goodies for you all. A careful examination of the price pane will reveal that the daily version of the <a href="http://www.thinkscripter.com/2009/09/05/thinkscripter-volume-profile/">Volume Profile</a> is nearly complete. Stay tuned&#8230;.<br />
<div id="attachment_1789" class="wp-caption aligncenter" style="width: 640px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/10/DTOscillator.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2009/10/DTOscillator.png" alt="DT Oscillator" title="DTOscillator" class="size-full wp-image-1789" /></a><p class="wp-caption-text">DT Oscillator</p></div></p>
<pre class="brush: thinkscript; title: ; notranslate"># TS_DTOscillator thinkScript translation by ThinkScripter
# http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 15 OCT 2009

declare lower;

input RSIPeriod = 13;
input StochasticPeriod=8;
input MAType = {default SMA,EMA};
input KPeriod = 5;
input DPeriod = 3;
input upper = 70;
input lower = 30;

def StoRSI= 100*(( RSIWilder( RSIPeriod) - lowest( RSIWilder( RSIPeriod ) , StochasticPeriod ) ) / ( (
highest( RSIWilder( RSIPeriod) , StochasticPeriod ) ) - lowest(RSIWilder( RSIPeriod ), StochasticPeriod ) )
);

def SK;
def SD;

Switch (MAType){
case SMA:
SK=average(StoRSI,KPeriod);
SD=average(SK,Dperiod);
case EMA:
SK=ExpAverage(StoRSI,KPeriod);
SD=ExpAverage(SK,DPeriod);
}

Plot DTOscSK = SK;
DTOscSK.setDefaultColor(color.blue);
plot DTOscSD = SD;
DTOscSD.setDefaultCOlor(color.gray);
DTOscSD.setStyle(curve.SHORT_DASH);
plot zero = 50;
zero.setDefaultColor(color.white);
plot UpperL = upper;
UpperL.setDefaultColor(color.red);
plot LowerL = lower;
lowerL.setDefaultColor(color.green);</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/indicator/dt-oscillator/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>3/10 Oscillator</title>
		<link>http://www.thinkscripter.com/indicator/310-oscillator/</link>
		<comments>http://www.thinkscripter.com/indicator/310-oscillator/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 00:26:55 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[3/10 oscillator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[oscillator]]></category>
		<category><![CDATA[raschke]]></category>
		<category><![CDATA[thinkscript]]></category>

		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1069</guid>
		<description><![CDATA[Linda Bradford Raschke (LBR) 3/10 oscillator. The fast line (red) is a 10 period simple moving average subtracted from a 3 period simple moving average. The slow line (cyan) is then a 16 period SMA of the slow line. <a href="http://www.thinkscripter.com/indicator/310-oscillator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Reader Steve H commissioned me to build this popular study used by <a href="http://www.lbrgroup.com/index.asp?page=FAQ">Linda Bradford Raschke</a>. The indicator itself is exceptionally simple. The fast line (red) is a 10 period simple moving average subtracted from a 3 period simple moving average. The slow line (cyan) is then a 16 period SMA of the slow line. The histogram is the delta between these two lines and therefore crosses the zero line when the fast and slow line cross. The histogram is hidden by default but can be revealed in the normal manner on the study properties pane.<br />
<div id="attachment_1071" class="wp-caption alignnone" style="width: 640px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/04/lbr310.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2009/04/lbr310.png" alt="3/10 Oscillator" title="lbr310" class="size-full wp-image-1071" /></a><p class="wp-caption-text">3/10 Oscillator</p></div></p>
<pre class="brush: thinkscript; title: ; notranslate">
# THREE TEN OSCILLATOR
# http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 06 APR 2009

declare lower;

input price = close;

def SMA3 = average(price, 3);
def SMA10 = average(price, 10);

def osc = SMA3-SMA10;
def ave = average(osc, 16);

plot deltaHistogram = osc-ave;
deltaHistogram.setPaintingStrategy(paintingStrategy.HISTOGRAM);
deltaHistogram.assignValueColor(if deltaHistogram &gt; 0 then color.green else color.red);
deltaHistogram.hide();

plot osc310 = osc;
osc310.setDefaultColor(color.red);

plot ave16 = ave;
ave16.setDefaultColor(color.cyan);

plot zero = 0;
zero.setDefaultColor(color.white);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/indicator/310-oscillator/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Heikin-Ashi Candlestick Oscillator</title>
		<link>http://www.thinkscripter.com/analysis/heikin-ashi-candlestick-oscillator/</link>
		<comments>http://www.thinkscripter.com/analysis/heikin-ashi-candlestick-oscillator/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:36:38 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[Heikin-Ashi]]></category>
		<category><![CDATA[oscillator]]></category>
		<category><![CDATA[thinkscript]]></category>
		<category><![CDATA[vervoort]]></category>

		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=937</guid>
		<description><![CDATA[The Heikin-Ashi Candlestick Oscillator (HACO) uses the triple exponential moving average (TEMA) to filter out some of the whipsaws inherent in basic Heikin-Ashi candlesticks. <a href="http://www.thinkscripter.com/analysis/heikin-ashi-candlestick-oscillator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another one from the mind of Sylvain Vervoot. In &#8220;Trading With The Heikin-Ashi Candlestick Oscillator&#8221; (Stocks and Commodities, December 2008), Vervoot describes a methodolgy for creating a <em>&#8220;visual tool to complement (Heikin-Ashi) candlesticks, helping you enter and exit trades, resulting in higher profits per trade.&#8221; </em>In a nutshell, the Heikin-Ashi Candlestick Oscillator (HACO) uses the triple exponential moving average (TEMA) to filter out some of the whipsaws inherent in basic Heikin-Ashi candlesticks. There&#8217;s a fair bit more to it than that but you can explore the article on your own. The indicator itself is just a binary &#8220;Buy/Sell&#8221; signal as shown by the alternating red and green colors. I&#8217;ve circled the places in the traditional Heikin-Ashi chart where a trend change was indicated but the HACO correctly filtered out the signal. The HACO can be used on any symbol and timeframe. As with the <a href="http://www.thinkscripter.com/2009/03/31/vervoort-crossover">Vervoot Crossover</a>, the HACO can easily be turned into a strategy which is also pictured below. In this instance, a two day five minute chart of the ES was used resulting in a proft of $2612 on one contract. The up/down trend moving average periods were set to 27 within the HACO. Full results are <a href="http://www.thinkscripter.com/wp-content/uploads/2009/04/hacostratreport.png">here</a>. <span style="color: #ff0000;">UPDATE: The HACO strategies have been uploaded to &#8220;Door Number Three&#8221; of the Gold Donor area of the </span><a href="http://www.thinkscripter.com/forum"><span style="color: #ff0000;">forum</span></a><span style="color: #ff0000;">.</span> <span style="color:#888888;">(I&#8217;ll send out a donor update on Sunday as usual but if you <em>can&#8217;t wait</em>, just shoot me an email)</span></p>
<div id="pro" class="wp-caption aligncenter" style="width: 640px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/04/haco.png"><img class="size-full wp-image-945" title="haco" src="http://www.thinkscripter.com/wp-content/uploads/2009/04/haco.png" alt="Heikin-Ashi Candlestick Oscillator"  /></a><p class="wp-caption-text">Heikin-Ashi Candlestick Oscillator</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/analysis/heikin-ashi-candlestick-oscillator/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Polarized TRIN Oscillator</title>
		<link>http://www.thinkscripter.com/indicator/polarized-trin-oscillator/</link>
		<comments>http://www.thinkscripter.com/indicator/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[Experimental 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. <a href="http://www.thinkscripter.com/indicator/polarized-trin-oscillator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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: 640px"><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" class="size-full wp-image-869" /></a><p class="wp-caption-text">Polarized TRIN Oscillator</p></div>
<pre class="brush: thinkscript; title: ; notranslate">
# POLARIZEDTRINOSCILLATOR
# (c) 2009 http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 26 MAR 2009

declare lower;

input length = 9;
input EMA_period = 5;

def trin = close(&quot;$TRIN&quot;);
def trinq = close(&quot;$TRIN/Q&quot;);

def aveTrin = (trin+trinq)/2;

def fractal = sqrt(power(aveTrin-aveTrin[length],2)+100);
def incremental = sqrt(power(aveTrin-aveTrin[1],2)+1);
def sum = sum(incremental,length);

def resultant = if aveTrin-aveTrin[length] &gt; 0 then round((fractal/sum)*100) else round(-(fractal/sum)*100);

def polarizedTrin = if resultant == 0 then 1 else resultant;
plot PTO = expAverage(-polarizedTrin, EMA_period);
PTO.setDefaultColor(color.yellow);

plot zeroline = 0.0;
zeroline.setDefaultColor(color.white);
plot plusLine =75;
plusLine.setDefaultColor(color.cyan);
plot minusLine = -75;
minusLine.setDefaultColor(color.cyan);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/indicator/polarized-trin-oscillator/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

