<?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; Jeff Augen</title>
	<atom:link href="http://www.thinkscripter.com/tag/jeff-augen/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>Standard Deviation Price Change</title>
		<link>http://www.thinkscripter.com/indicator/standard-deviation-price-change/</link>
		<comments>http://www.thinkscripter.com/indicator/standard-deviation-price-change/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 13:12:36 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[Jeff Augen]]></category>
		<category><![CDATA[standard deviation]]></category>
		<category><![CDATA[thinkscript]]></category>

		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?p=739</guid>
		<description><![CDATA[The last bar's price change is represented as its ratio to the standard deviation of the price action over a recent period.  <a href="http://www.thinkscripter.com/indicator/standard-deviation-price-change/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In his book, <a href="http://www.amazon.com/gp/product/0132354691?ie=UTF8&amp;tag=thinks-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0132354691">The Volatility Edge in Options Trading</a><img style="border:none!important;margin:0!important;" src="http://www.assoc-amazon.com/e/ir?t=thinks-20&amp;l=as2&amp;o=1&amp;a=0132354691" border="0" alt="" width="1" height="1" />, Jeff Augen describes a method for recasting absolute price changes in terms of recent volatility using the standard deviation. In this representation of price action, the last bar&#8217;s price change is represented as its ratio to the standard deviation of the price action over a recent period. <span style="color:#ff0000;">*** Please see Tom&#8217;s N-1 weighted version in the comments! ***</span></p>
<div id="attachment_742" class="wp-caption aligncenter" style="width: 640px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/03/augen.png"><img class="size-full wp-image-742" title="augen" src="http://www.thinkscripter.com/wp-content/uploads/2009/03/augen.png" alt="Augen Standard Deviation Plot" /></a><p class="wp-caption-text">Augen Standard Deviation Plot</p></div>
<pre class="brush: thinkscript; title: ; notranslate">
# AUGENSTDDEVPLOT
# (c) 2009 http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 19 MAR 2009&amp;lt;/code&gt;

declare lower;
input price = close;

input length = 20;
def oneSD = stdev (price,length);

plot StdDevPlot = (price-price[1])/oneSD;
StdDevPlot.setPaintingStrategy(paintingStrategy.HISTOGRAM);
StdDevPlot.setLineWeight(2);
StdDevPlot.assignValueColor(if StdDevPlot &gt; 0 then color.green else color.red);
plot zero = 0;
zero.setDefaultColor(color.white);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/indicator/standard-deviation-price-change/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>

