<?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; 3/10 oscillator</title>
	<atom:link href="http://www.thinkscripter.com/tag/310-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>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>
	</channel>
</rss>

