<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 3/10 Oscillator</title>
	<atom:link href="http://www.thinkscripter.com/2009/04/06/310-oscillator/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com/2009/04/06/310-oscillator/</link>
	<description>Custom ThinkScript Indicator Scripts for thinkorswim</description>
	<lastBuildDate>Wed, 28 Jul 2010 12:44:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/2009/04/06/310-oscillator/comment-page-1/#comment-553</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Fri, 07 Aug 2009 22:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1069#comment-553</guid>
		<description>Chris,
I&#039;m not having any issues. Try removing and reloading the study.
Eric</description>
		<content:encoded><![CDATA[<p>Chris,<br />
I&#8217;m not having any issues. Try removing and reloading the study.<br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.thinkscripter.com/2009/04/06/310-oscillator/comment-page-1/#comment-552</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 07 Aug 2009 17:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1069#comment-552</guid>
		<description>Eric, does this indicator still work, cant get the Zero line to show?

Thanks</description>
		<content:encoded><![CDATA[<p>Eric, does this indicator still work, cant get the Zero line to show?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/2009/04/06/310-oscillator/comment-page-1/#comment-468</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Mon, 22 Jun 2009 04:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1069#comment-468</guid>
		<description>Thanks for the addition :) &lt;strong&gt;NOTE: IF YOU CUT AND PASTE THE ABOVE CODE FROM HAXEN YOU WILL HAVE TO REPLACE THE BI-DIRECTIONAL QUOTES AND MINUS SIGNS FOR TOS TO ACCEPT THE CODE.&lt;/strong&gt;
Eric</description>
		<content:encoded><![CDATA[<p>Thanks for the addition <img src='http://www.thinkscripter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <strong>NOTE: IF YOU CUT AND PASTE THE ABOVE CODE FROM HAXEN YOU WILL HAVE TO REPLACE THE BI-DIRECTIONAL QUOTES AND MINUS SIGNS FOR TOS TO ACCEPT THE CODE.</strong><br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: haxen</title>
		<link>http://www.thinkscripter.com/2009/04/06/310-oscillator/comment-page-1/#comment-466</link>
		<dc:creator>haxen</dc:creator>
		<pubDate>Mon, 22 Jun 2009 03:22:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1069#comment-466</guid>
		<description>This is a cosmetic duplicate of LBR&#039;s 3/10 oscillator.  As ThinkScripter says, it is very simple, all I did was clean it up to look like Linda&#039;s current screen.

declare lower;

input fastLength = 3;
input slowLength = 10;
input MACDLength = 16;

def fastAvg = Average(data = close, length = fastLength);
def slowAvg = Average(data = close, length = slowLength);

plot Value = fastAvg - slowAvg;
plot Avg = Average(data = Value, length = MACDLength);
plot Diff = fastAvg - slowAvg;
plot ZeroLine = 0;

Value.SetDefaultColor(GetColor(1));
Avg.SetDefaultColor(GetColor(8));
Diff.SetDefaultColor(GetColor(5));
Diff.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Diff.DefineColor(&quot;Positive&quot;, Color.UPTICK);
Diff.DefineColor(&quot;Negative&quot;, Color.DOWNTICK);
Diff.AssignValueColor(if diff &gt;= 0 then Diff.color(&quot;Positive&quot;) else Diff.color(&quot;Negative&quot;));
ZeroLine.SetDefaultColor(GetColor(0));</description>
		<content:encoded><![CDATA[<p>This is a cosmetic duplicate of LBR&#8217;s 3/10 oscillator.  As ThinkScripter says, it is very simple, all I did was clean it up to look like Linda&#8217;s current screen.</p>
<p>declare lower;</p>
<p>input fastLength = 3;<br />
input slowLength = 10;<br />
input MACDLength = 16;</p>
<p>def fastAvg = Average(data = close, length = fastLength);<br />
def slowAvg = Average(data = close, length = slowLength);</p>
<p>plot Value = fastAvg &#8211; slowAvg;<br />
plot Avg = Average(data = Value, length = MACDLength);<br />
plot Diff = fastAvg &#8211; slowAvg;<br />
plot ZeroLine = 0;</p>
<p>Value.SetDefaultColor(GetColor(1));<br />
Avg.SetDefaultColor(GetColor(8));<br />
Diff.SetDefaultColor(GetColor(5));<br />
Diff.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);<br />
Diff.DefineColor(&#8220;Positive&#8221;, Color.UPTICK);<br />
Diff.DefineColor(&#8220;Negative&#8221;, Color.DOWNTICK);<br />
Diff.AssignValueColor(if diff &gt;= 0 then Diff.color(&#8220;Positive&#8221;) else Diff.color(&#8220;Negative&#8221;));<br />
ZeroLine.SetDefaultColor(GetColor(0));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/2009/04/06/310-oscillator/comment-page-1/#comment-235</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Tue, 07 Apr 2009 19:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1069#comment-235</guid>
		<description>When I coded the study, I felt that there was more value added to having a histogram of the difference. To simply fill the oscillator with lines adds no new information. When you plot the delta as a histogram you are now getting a unique new representation of some of the data. The great thing is, it is easy to modify to suit your desires. </description>
		<content:encoded><![CDATA[<p>When I coded the study, I felt that there was more value added to having a histogram of the difference. To simply fill the oscillator with lines adds no new information. When you plot the delta as a histogram you are now getting a unique new representation of some of the data. The great thing is, it is easy to modify to suit your desires.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
