<?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; Finite Volume Element</title>
	<atom:link href="http://www.thinkscripter.com/tag/finite-volume-element/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>Finite Volume Element</title>
		<link>http://www.thinkscripter.com/indicator/finite-volume-element/</link>
		<comments>http://www.thinkscripter.com/indicator/finite-volume-element/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 21:04:28 +0000</pubDate>
		<dc:creator>ThinkScripter</dc:creator>
				<category><![CDATA[Indicator]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[Finite Volume Element]]></category>
		<category><![CDATA[Katsanos]]></category>
		<category><![CDATA[thinkscript]]></category>
		<category><![CDATA[volume]]></category>

		<guid isPermaLink="false">http://www.thinkscripter.com/?p=1638</guid>
		<description><![CDATA[Markos Katsanos' Finite Volume Element (FVE). <a href="http://www.thinkscripter.com/indicator/finite-volume-element/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Markos Katsanos&#8217; Finite Volume Element (FVE) indicator was first described in &#8220;Detecting Breakouts&#8221; in the April 2003 issue &#8220;Technical Analysis of Stocks and Commodities.&#8221; The FVE is a money flow indicator but with several key differences from Chakin&#8217;s Money Flow or On Balance Volume. Unlike these money flow indicators which add or subtract all volume even if the security barely closed higher than the previous close, FVE uses a volatility threshold to take into account minimal price changes.</p>
<p>Divergences between price and the indicator can provide leading signals whereas the slope of the indicator shows if the bulls or bears are in control. Values above zero are bullish and indicate accumulation while values below zero indicate distribution. FVE crossing the zero line indicates that the short to intermediate balance of power is changing.</p>
<p>Also pictured are the ThinkScripter <a href="http://www.thinkscripter.com/2009/08/21/volumetric-trendline/">Volumetric Trendlines</a> and Volume Profile (still  under development).</p>
<div id="attachment_1640" class="wp-caption aligncenter" style="width: 640px"><a href="http://www.thinkscripter.com/wp-content/uploads/2009/08/FVE.png"><img src="http://www.thinkscripter.com/wp-content/uploads/2009/08/FVE.png" alt="Finite Volume Element" title="FVE" class="size-full wp-image-1640" /></a><p class="wp-caption-text">Finite Volume Element</p></div>
<pre class="brush: thinkscript; title: ; notranslate"># TS_FiniteVolumeElement
# (c) 2009 http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 25 AUG 2009

declare lower;

input FVEPeriod = 22;
input smoothingPeriod = 10;
def intra = log(high)-log(low);
def vintra = stdev(intra, FVEPeriod);
def inter = log(hlc3)-log(hlc3[1]);
def vinter = stdev(inter,FVEPeriod);
def cutoff = 0.1*(vinter+vintra)*close;

def MF = (Close - (High + Low ) / 2 )+ hlc3 - hlc3[1] ;
def VE = if MF &gt; cutoff then volume else if MF &lt; -cutoff then -volume else 0;
def FVE = 100*sum(VE,FVEPeriod)/(average(volume,FVEPeriod)*FVEPeriod);

plot FiniteVolumeElement = FVE;
FiniteVolumeElement.setDefaultColor(color.cyan);

plot SmoothedFVE = Average(FVE,smoothingPeriod)  ;
SmoothedFVE.setDefaultColor(color.blue);

plot zero = 0;
zero.setDefaultColor(color.white);</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkscripter.com/indicator/finite-volume-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

