<?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 - Custom ThinkScript Indicators for thinkorswim &#187; DVOL</title>
	<atom:link href="http://www.thinkscripter.com/tag/dvol/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com</link>
	<description>Custom ThinkScript Indicator Scripts for thinkorswim</description>
	<lastBuildDate>Mon, 28 Jun 2010 02:18:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Market Thrust Indicator</title>
		<link>http://www.thinkscripter.com/2010/01/23/market-thrust-indicator/</link>
		<comments>http://www.thinkscripter.com/2010/01/23/market-thrust-indicator/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 05:49:31 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[ADVN]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[DECN]]></category>
		<category><![CDATA[DVOL]]></category>
		<category><![CDATA[Market Thrust]]></category>
		<category><![CDATA[thinkscript]]></category>
		<category><![CDATA[UVOL]]></category>

		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1931</guid>
		<description><![CDATA[The internal strength of the market can be gauged using many internal measures including Up Volume, Down Volume, Advancing, and Declining Issues. The Market Thrust indicator combines these four values to produce a single plot that gauges these internals. It is simply a plot of (Advancing Issues X Advancing Volume) &#8211; (Declining Issues x Declining [...]]]></description>
			<content:encoded><![CDATA[<p>The internal strength of the market can be gauged using many internal measures including Up Volume, Down Volume, Advancing, and Declining Issues. The Market Thrust indicator combines these four values to produce a single plot that gauges these internals. It is simply a plot of (Advancing Issues X Advancing Volume) &#8211; (Declining Issues x Declining Volume). On strong trend days the indicator will generally trend one direction all day. The indicator is also particularly adept at showing divergences between price and internals. Added to the upper left corner of the indicator is the Up Volume &#8211; Down Volume as an additional reference. Note the second image below of this week&#8217;s market. The slow grind up on Wednesday afternoon was accompanied by ever worsening internals. The rest, they say, is history. </p>
<p><div id="attachment_1929" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.thinkscripter.com/wp-content/uploads/2010/01/MarketThrust.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2010/01/MarketThrust.png" alt="" title="MarketThrust" width="500" height="450" class="size-full wp-image-1929" /></a><p class="wp-caption-text">Market Thrust</p></div><br />
<a href="http://www.thinkscripter.com/wp-content/uploads/2010/01/MarketThrust2.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2010/01/MarketThrust2.png" alt="" title="MarketThrust2" width="500" height="450" class="aligncenter size-full wp-image-1930" /></a></p>
<p><code># TS_MarketThrust<br />
# http://www.thinkscripter.com<br />
# thinkscripter@gmail.com<br />
# Last Update 22 Jan 2010</p>
<p>declare lower;<br />
input AvePeriod = 10;<br />
input showOnlyToday = YES;</p>
<p>def T1c = (close("$ADVN")*close("$UVOL"))-(close("$DECN")*close("$DVOL"));<br />
plot T1 = if showOnlyToday and getDay()==getLastDay() then T1c else if !showOnlyToday then T1c else double.nan;<br />
T1.setDefaultColor(color.red);<br />
def TAvec = average(T1,AvePeriod);<br />
plot TAve =  if showOnlyToday and getDay()==getLastDay() then TAvec else if !showOnlyToday then TAvec else double.nan;<br />
TAve.setDefaultColor(color.white);</p>
<p>plot zero = 0;<br />
zero.setDefaultColor(color.yellow);</p>
<p>def U = close("$UVOL");<br />
def D = close ("$DVOL");<br />
def DVOL = U - D;</p>
<p>AddChartLabel(yes, concat(DVOL, concat(" ",<br />
"UVOL-DVOL")),<br />
 if DVOL > DVOL[1] then color.green else color.red);<br />
 </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/2010/01/23/market-thrust-indicator/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
