<?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: Standard Deviation Price Change</title>
	<atom:link href="http://www.thinkscripter.com/indicator/standard-deviation-price-change/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/</link>
	<description>thinkScript Indicators for thinkorswim</description>
	<lastBuildDate>Fri, 03 Feb 2012 20:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: John Gengler</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-6006</link>
		<dc:creator>John Gengler</dc:creator>
		<pubDate>Tue, 22 Nov 2011 21:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-6006</guid>
		<description>Nice formula for price spikes in stdevs. Now I would like to get a 25 period moving average of those price spikes and display that moving average as a histogram too. Would you write the code for that?</description>
		<content:encoded><![CDATA[<p>Nice formula for price spikes in stdevs. Now I would like to get a 25 period moving average of those price spikes and display that moving average as a histogram too. Would you write the code for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Standard Deviation Price Change » ThinkScripter &#124; marketHEIST.com</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-597</link>
		<dc:creator>Standard Deviation Price Change » ThinkScripter &#124; marketHEIST.com</dc:creator>
		<pubDate>Tue, 25 May 2010 01:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-597</guid>
		<description>[...] FREE per code listed for copy &amp; paste     Get It  [...]</description>
		<content:encoded><![CDATA[<p>[...] FREE per code listed for copy &amp; paste     Get It  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-596</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Fri, 19 Feb 2010 13:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-596</guid>
		<description>I&#039;m not sure what you mean by 5 day spike? You will get a better response if you post questions in the forum rather than here in the comments.
-Eric</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure what you mean by 5 day spike? You will get a better response if you post questions in the forum rather than here in the comments.<br />
-Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doodelzack</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-595</link>
		<dc:creator>doodelzack</dc:creator>
		<pubDate>Fri, 19 Feb 2010 08:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-595</guid>
		<description>Please could anyone help? Is this correct for a 5 day price spike for 60 days?
declare lower;
input length = 60;
def closeLog = Log(close[1] /close[5]);
def astd = stdev(closeLog, length) * Sqrt(length / (5));
def m = astd * close [1];
plot spike = (close[0]- close [5]) / m;
spike.setPaintingStrategy(paintingStrategy.HISTOGRAM);
spike. AssignValueColor(if close &gt; close[5] then Color.UPTICK else if close &lt; close[5] then Color.DOWNTICK else GetColor(1));
plot zero = 0;
zero.setDefaultColor(color.black);
plot one = 1;
one.setDefaultColor(color.red);
plot two = -1;
two.setDefaultColor(color.red);
plot three = 0.5;
three.setDefaultColor(color.blue);
plot four = -0.5;
four.setDefaultColor(color.blue);

Many Thanks
Dz</description>
		<content:encoded><![CDATA[<p>Please could anyone help? Is this correct for a 5 day price spike for 60 days?<br />
declare lower;<br />
input length = 60;<br />
def closeLog = Log(close[1] /close[5]);<br />
def astd = stdev(closeLog, length) * Sqrt(length / (5));<br />
def m = astd * close [1];<br />
plot spike = (close[0]- close [5]) / m;<br />
spike.setPaintingStrategy(paintingStrategy.HISTOGRAM);<br />
spike. AssignValueColor(if close &gt; close[5] then Color.UPTICK else if close &lt; close[5] then Color.DOWNTICK else GetColor(1));<br />
plot zero = 0;<br />
zero.setDefaultColor(color.black);<br />
plot one = 1;<br />
one.setDefaultColor(color.red);<br />
plot two = -1;<br />
two.setDefaultColor(color.red);<br />
plot three = 0.5;<br />
three.setDefaultColor(color.blue);<br />
plot four = -0.5;<br />
four.setDefaultColor(color.blue);</p>
<p>Many Thanks<br />
Dz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doodelzack</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-594</link>
		<dc:creator>doodelzack</dc:creator>
		<pubDate>Tue, 16 Feb 2010 08:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-594</guid>
		<description>So is this correct for a 5 day price spike for 60 days?
declare lower;
input length = 60;
def closeLog = Log(close[1] /close[5]);
def astd = stdev(closeLog, length) * Sqrt(length / (5));
def m = astd * close [1];
plot spike = (close[0]- close [5]) / m;
spike.setPaintingStrategy(paintingStrategy.HISTOGRAM);
spike. AssignValueColor(if close &gt; close[5] then Color.UPTICK else if close &lt; close[5] then Color.DOWNTICK else GetColor(1));
plot zero = 0;
zero.setDefaultColor(color.black);
plot one = 1;
one.setDefaultColor(color.red);
plot two = -1;
two.setDefaultColor(color.red);
plot three = 0.5;
three.setDefaultColor(color.blue);
plot four = -0.5;
four.setDefaultColor(color.blue);

Many Thanks
D</description>
		<content:encoded><![CDATA[<p>So is this correct for a 5 day price spike for 60 days?<br />
declare lower;<br />
input length = 60;<br />
def closeLog = Log(close[1] /close[5]);<br />
def astd = stdev(closeLog, length) * Sqrt(length / (5));<br />
def m = astd * close [1];<br />
plot spike = (close[0]- close [5]) / m;<br />
spike.setPaintingStrategy(paintingStrategy.HISTOGRAM);<br />
spike. AssignValueColor(if close &gt; close[5] then Color.UPTICK else if close &lt; close[5] then Color.DOWNTICK else GetColor(1));<br />
plot zero = 0;<br />
zero.setDefaultColor(color.black);<br />
plot one = 1;<br />
one.setDefaultColor(color.red);<br />
plot two = -1;<br />
two.setDefaultColor(color.red);<br />
plot three = 0.5;<br />
three.setDefaultColor(color.blue);<br />
plot four = -0.5;<br />
four.setDefaultColor(color.blue);</p>
<p>Many Thanks<br />
D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joseph</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-593</link>
		<dc:creator>joseph</dc:creator>
		<pubDate>Sat, 13 Feb 2010 17:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-593</guid>
		<description>Ok there was an extra parenthesis, TOS now has no invalid entries. When i go to add the study to a chart it does not plot. i can&#039;t figure that out. the first indicator listed in this post works well it plots just fine , but the one that factors in the N-1 weighting does not plot. This is after I typed in the code exactly.

thank you</description>
		<content:encoded><![CDATA[<p>Ok there was an extra parenthesis, TOS now has no invalid entries. When i go to add the study to a chart it does not plot. i can&#8217;t figure that out. the first indicator listed in this post works well it plots just fine , but the one that factors in the N-1 weighting does not plot. This is after I typed in the code exactly.</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joseph</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-592</link>
		<dc:creator>joseph</dc:creator>
		<pubDate>Sat, 13 Feb 2010 16:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-592</guid>
		<description>I typed in the code verbatum and the line: def SDev = stdev(closeLog, length)* Sqrt(length / (length – 1)); is invalid in TOS. I did not copy and paste. Why is TOs not recognizing this

thank you</description>
		<content:encoded><![CDATA[<p>I typed in the code verbatum and the line: def SDev = stdev(closeLog, length)* Sqrt(length / (length – 1)); is invalid in TOS. I did not copy and paste. Why is TOs not recognizing this</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HANDNGLOVE</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-591</link>
		<dc:creator>HANDNGLOVE</dc:creator>
		<pubDate>Fri, 18 Sep 2009 03:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-591</guid>
		<description>That fixed it thanks.
The Running Tom&#039;s AugenIndicator  with the N-1 weighting makes a massive difference if you are looking for moves outside of 2 standard deviations.
Much better accuracy. Thanks Eric and Tom!</description>
		<content:encoded><![CDATA[<p>That fixed it thanks.<br />
The Running Tom&#8217;s AugenIndicator  with the N-1 weighting makes a massive difference if you are looking for moves outside of 2 standard deviations.<br />
Much better accuracy. Thanks Eric and Tom!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-590</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Thu, 17 Sep 2009 11:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-590</guid>
		<description>The text editor in TOS sometimes has problems pasting in text from a web browser. If this happens, you&#039;ll need to go in to the code and remove some hidden carriage returns around the semicolons. These hidden characters will manifest themselves as all kinds of script errors having nothing to do with the real syntax of the script.
-Eric</description>
		<content:encoded><![CDATA[<p>The text editor in TOS sometimes has problems pasting in text from a web browser. If this happens, you&#8217;ll need to go in to the code and remove some hidden carriage returns around the semicolons. These hidden characters will manifest themselves as all kinds of script errors having nothing to do with the real syntax of the script.<br />
-Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HANDNGLOVE</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comment-589</link>
		<dc:creator>HANDNGLOVE</dc:creator>
		<pubDate>Thu, 17 Sep 2009 10:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739#comment-589</guid>
		<description>Tom
I am unable to get your study to be recognized
I get invalid statement  which leads to no such variable.

and at least one plot needs to be defined.
Can you clarify</description>
		<content:encoded><![CDATA[<p>Tom<br />
I am unable to get your study to be recognized<br />
I get invalid statement  which leads to no such variable.</p>
<p>and at least one plot needs to be defined.<br />
Can you clarify</p>
]]></content:encoded>
	</item>
</channel>
</rss>

