<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>thestrategictrader.com</title>
	
	<link>http://thestrategictrader.com</link>
	<description>Detailed Strategy Evaluation</description>
	<lastBuildDate>Sun, 08 Jan 2012 05:19:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Thestrategictradercom" /><feedburner:info uri="thestrategictradercom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Pattern DLL Released</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/OTrjh066ZzI/784</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/pattern-dll-released/784#comments</comments>
		<pubDate>Sun, 08 Jan 2012 04:47:12 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Testing Setup]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=784</guid>
		<description><![CDATA[We have now officially released the DLL capable of running the new &#8220;pattern&#8221; based strategies that we have been working on. Using this DLL, you can now test/use the same patterns we are using in our strategies. To use these patterns you will need to install the DLL software located at: DLL Installation. You should [...]]]></description>
			<content:encoded><![CDATA[<p>We have now officially released the DLL capable of running the new &#8220;pattern&#8221; based strategies that we have been working on. Using this DLL, you can now test/use the same patterns we are using in our strategies.</p>
<p>To use these patterns you will need to install the DLL software located at: <a href="dll-installation">DLL Installation</a>. You should also download one of our pattern strategies to get started. One can be found at: <a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722">RSI Strategy 1</a></p>
<p>Now that the initial DLL software development is done, we will release several new patterns in the upcoming weeks.</p>
<p>PS: If you have any trouble getting the software installed and working correctly, please email joe@thestrategictrader.com </p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722" rel="bookmark">RSI Pattern Strategy</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/intro-to-pattern-searching/714" rel="bookmark">Intro to Pattern Searching</a></li>
</ul>
</div>
<p></strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/OTrjh066ZzI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/pattern-dll-released/784/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/pattern-dll-released/784</feedburner:origLink></item>
		<item>
		<title>RSI Pattern Strategy</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/Dn1gi1JwtXg/722</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722#comments</comments>
		<pubDate>Mon, 26 Dec 2011 20:40:36 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[RSI]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=722</guid>
		<description><![CDATA[Intro This is the first strategy built entirely using patterns discovered from the tstPattern Searching software. The strategy is set to exit after being in the trade for 5 bars. Obviously, 5 bars is not an ideal exit. However, it provides a uniform baseline to build with room to improve in the future. The pattern [...]]]></description>
			<content:encoded><![CDATA[<h3>Intro</h3>
<p>This is the first strategy built entirely using patterns discovered from the tstPattern Searching software. The strategy is set to exit after being in the trade for 5 bars. Obviously, 5 bars is not an ideal exit. However, it provides a uniform baseline to build with room to improve in the future. The pattern consists almost entirely of RSI based inputs.</p>
<p>The in-sample testing period consists of 6/1/2001 &#8211; 1/1/2011 on 5 minute ES bars.</p>
<h3>Pattern Inputs</h3>
<p>AddParam(RSI(3,1)[0],&#8221;RSI3 &#8220;);<br />
AddParam(RSI(7,1)[0],&#8221;RSI7 &#8220;);<br />
AddParam(RSI(14,1)[0],&#8221;RSI14 &#8220;);<br />
AddParam(RSI(21,1)[0],&#8221;RSI21 &#8220;);<br />
AddParam(RSI(30,1)[0],&#8221;RSI30 &#8220;);<br />
AddParam(RSI(45,1)[0],&#8221;RSI45 &#8220;);<br />
AddParam(RSI(60,1)[0],&#8221;RSI60 &#8220;);<br />
AddParam(ADX(3)[0],&#8221;ADX3 &#8220;);<br />
AddParam(ADX(21)[0],&#8221;ADX21 &#8220;);<br />
AddParam(ADX(45)[0],&#8221;ADX45 &#8220;);<br />
AddParam(RSI(ATR(5),3,1)[0],&#8221;RSIATR5 &#8220;);<br />
AddParam(RSI(ATR(14),3,1)[0],&#8221;RSIATR14 &#8220;);<br />
AddParam(RSI(Volume,3,1)[0],&#8221;RSIVOLUME3 &#8220;);</p>
<h3>Observations</h3>
<p>When we ran the pattern searching software against our testing file a total of 220 patterns exceeding statistical significance were generated. Shown here is the top pattern discovered. Keep in mind, because this is only one pattern, the number of trades is a bit low. Because of this we also validate the pattern against the Dow Mini (YM). This allows us to feel more confident that the pattern is not simply curve fit to the ES data.</p>
<h3>Strategy In-sample Results</h3>
<p>Profit: $26,192<br />
PF: 2.14<br />
Trades: 650<br />
Win %: 62.26<br />
Expectancy: +$41.40 per contract</p>
<h3><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722/insample1-2" rel="attachment wp-att-733"><img class="alignleft  wp-image-733" title="insample1" src="http://thestrategictrader.com/wp-content/uploads/2011/12/insample11-1024x841.jpg" alt="" width="500" height="441" /></a></h3>
<h3>Strategy Out of Sample Results (1/1/2011 &#8211; 12/1/2011)</h3>
<p>Profit:$5,062<br />
PF: 2.19<br />
Trades: 97<br />
Win %: 67.01<br />
Expectancy: +$52.19</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722/outsample1" rel="attachment wp-att-740"><img class="alignleft  wp-image-740" title="outsample1" src="http://thestrategictrader.com/wp-content/uploads/2011/12/outsample1-1024x841.jpg" alt="" width="500" height="421" /></a></p>
<h3>Strategy On YM</h3>
<p>Profit: +$22,770<br />
PF: 1.70<br />
Trades: 827<br />
Win %: 59.61<br />
Expectancy: +$27.53</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722/outsample2" rel="attachment wp-att-745"><img class="alignleft  wp-image-745" title="outsample2" src="http://thestrategictrader.com/wp-content/uploads/2011/12/outsample2-1024x841.jpg" alt="" width="500" height="421" /></a></p>
<h3>Summary</h3>
<p>This new method for generating strategies has a lot of promise, but a lot of work left to do. We have built the main pattern reading software into a DLL so that we can distribute it with the strategy. Although we have built this blog to share with the world our techniques, there still exists IP that we do not wish to share completely. Before you can use the pattern below, you must install the pattern reading software. Follow the instructions here: <a href="http://www.thestrategictrader.com/dll-installation">DLL Installation</a></p>
<p><strong><a href="http://thestrategictrader.com/?s2member_file_download=thestrategictrader.zip&amp;s2member_skip_confirmation">Download Pattern Strategy</a></strong><br />
<strong><a href="http://thestrategictrader.com/?s2member_file_download=rsi1.tst&amp;s2member_skip_confirmation">Download Pattern File</a></strong><br />
<strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/intro-to-pattern-searching/714" rel="bookmark">Intro to Pattern Searching</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-abandoned/705" rel="bookmark">Simple Profitable Strategy: Abandoned</a></li>
</ul>
</div>
<p></strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/Dn1gi1JwtXg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-pattern-strategy/722</feedburner:origLink></item>
		<item>
		<title>Intro to Pattern Searching</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/Lja4WJyiF6U/714</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/intro-to-pattern-searching/714#comments</comments>
		<pubDate>Mon, 26 Dec 2011 04:28:42 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Strategies]]></category>
		<category><![CDATA[Trading]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=714</guid>
		<description><![CDATA[What is this software? Going forward we will be using custom pattern searching software for creating new strategies. The software searches through thousands of potential patterns and only saves the patterns that exceed statistical thresholds. The method for finding strategies is very similar to standard neural networks except with a few custom twists. How is [...]]]></description>
			<content:encoded><![CDATA[<h3>What is this software?</h3>
<p>Going forward we will be using custom pattern searching software for creating new strategies. The software searches through thousands of potential patterns and only saves the patterns that exceed statistical thresholds. The method for finding strategies is very similar to standard neural networks except with a few custom twists.</p>
<h3>How is a pattern found?</h3>
<p>We feed raw indicator values and the resulting output into a &#8220;training&#8221; file. The software then constructs neural networks that &#8220;learn&#8221; the profitable patterns. For example, we may wish to find a pattern that identifies a high likelihood of being profitable 5 bars into the future. For this training file we would write the delta between today&#8217;s bar and 5 bars into the future with the corresponding raw indicator values for each entry. </p>
<p>The software then traverses the training file and determines the best patterns for reaching the desired outcome. </p>
<h3>Statistical Thresholds</h3>
<p>When searching for patterns in an automated fashion, we have to be careful not to include a pattern just because of random luck. To filter out patterns that are the result of luck, we require the pattern to exceed values on win% and/or trade expectancy. At the start of each training cycle the software traverses the training file and determines the average win% and trade expectancy for various trading frequencies as well as the corresponding standard deviation. </p>
<p>Using this information the software identifies which thresholds need to be exceeded to be statistically significant.</p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-abandoned/705" rel="bookmark">Simple Profitable Strategy: Abandoned</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/data-mining-for-strategies/456" rel="bookmark">Data mining for strategies</a></li>
</ul>
</div>
<p></strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/Lja4WJyiF6U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/intro-to-pattern-searching/714/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/intro-to-pattern-searching/714</feedburner:origLink></item>
		<item>
		<title>Simple Profitable Strategy: Abandoned</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/Op5478KmTSg/705</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-abandoned/705#comments</comments>
		<pubDate>Mon, 26 Dec 2011 03:52:35 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Strategies]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=705</guid>
		<description><![CDATA[This post was suppose to be a follow up to part 1. However, while filtering down trades utilizing my pattern searching software I had an epiphany of sorts. Using various technical indicators directly is just a waste of time. Its true that some indicators have more value than others, but the process of searching for [...]]]></description>
			<content:encoded><![CDATA[<p>This post was suppose to be a follow up to <a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653" title="Simple Profitable Strategy Part 1">part 1</a>. However, while filtering down trades utilizing my pattern searching software I had an epiphany of sorts. Using various technical indicators directly is just a waste of time. Its true that some indicators have more value than others, but the process of searching for an edge the way I have been is too slow and clumsy. Instead, using pattern searching software I can determine which indicators work and identify tradeable patterns much quicker.</p>
<p>As part of this discovery, I found that the same patterns I was using to filter out losing trades could instead be used as entry conditions. In a matter of minutes I had created a strategy using only newly discovered patterns that drastically outperformed the simplistic strategy outlined in <a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653" title="Simple Profitable Strategy Part 1">part 1</a>.</p>
<p>Armed with this knowledge, I plan to take this blog in an entirely new direction. Instead of focusing on if indicator does x, then do y, I will feed raw indicator values into the pattern searching software and let it figure out the underlying relationships. Then use these patterns to build new strategies.</p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653" rel="bookmark">Simple Profitable Strategy: Part 1 (Design)</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/data-mining-for-strategies/456" rel="bookmark">Data mining for strategies</a></li>
</ul>
</div>
<p></strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/Op5478KmTSg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-abandoned/705/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-abandoned/705</feedburner:origLink></item>
		<item>
		<title>Simple Profitable Strategy: Part 1 (Design)</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/nTCFd9uCOac/653</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653#comments</comments>
		<pubDate>Fri, 18 Nov 2011 03:15:05 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Aroon Oscillator]]></category>
		<category><![CDATA[Bollinger Bands]]></category>
		<category><![CDATA[Divergence]]></category>
		<category><![CDATA[MACD]]></category>
		<category><![CDATA[RSI]]></category>
		<category><![CDATA[Strategies]]></category>
		<category><![CDATA[Technical Indicators]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=653</guid>
		<description><![CDATA[In this article series we are going to take what we have learned from RSI, MACD, Bollinger Bands, and Aroon Oscillator to build a simple yet profitable strategy. For validation, the strategy testing period will exclude 1/1/2000-6/1/2001 and 1/1/2011 &#8211; present. This will allow us to perform sanity checks in later phases to avoid curve [...]]]></description>
			<content:encoded><![CDATA[<p>In this article series we are going to take what we have learned from RSI, MACD, Bollinger Bands, and Aroon Oscillator to build a simple yet profitable strategy. For validation, the strategy testing period will exclude 1/1/2000-6/1/2001 and 1/1/2011 &#8211; present. This will allow us to perform sanity checks in later phases to avoid curve fitting.</p>
<p>The goal is to build a strategy that is still profitable after taking out both slippage and commissions. Since most of our articles to date have dealt with the 5 minute time frame on ES, we will continue using those parameters.</p>
<h4>The Setup:</h4>
<p>In order to build a strategy, we have to have a place to start. For this strategy, we will start by combining the best aspects of each of the trading methods we have tested thus far. Starting with the most recent Aroon Oscillator method.  We identified AroonOscillator(8) crossing below -80 as possessing a slight edge, so we will put a stick in the ground here.</p>
<h4>Initial Results (Pre commission/Slippage):</h4>
<p><strong>Profit:</strong> +<span style="color: #339966;">$54,987</span><br />
<strong>PF:</strong> 1.20<br />
<strong>Max DD:</strong> -<span style="color: #ff0000;">$4,662</span><br />
<strong>Sharp:</strong> .58<br />
<strong>Trades:</strong> 6925<br />
<strong>Win %</strong>: 58.51%<br />
<strong>Average Trade:</strong> +<span style="color: #339966;">$7.94</span></p>
<p>&nbsp;</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653/strategy1-1" rel="attachment wp-att-660"><img class="alignleft size-large wp-image-660" title="strategy1-1" src="http://thestrategictrader.com/wp-content/uploads/2011/11/strategy1-1-1024x841.jpg" alt="" width="500" height="400" /></a></p>
<p>This is a good start, but far from profitable once commissions and slippage are applied.</p>
<p>Before we move on to filtering out trades or tweaking the exits we need to add more potential &#8220;entry conditions&#8221;. In this step we go back through all the indicators that showed a slight edge and see if an optimized parameter combination for it improves overall performance.</p>
<p>The main purpose of this phase is to get as many entries as possible while still remaining over our &#8220;statically significant&#8221; thresholds. Each individual entry criteria does not need to remain above the threshold, but as a whole when used in an if/or combination the strategy needs to at least exceed on percent profitable or pure profit.</p>
<ol>
<li><strong>Additional Aroon Oscillator Parameter Combinations</strong>
<ul>
<li>No additional combinations improved results significantly. AroonOscillator(27) &lt;-99 helped, but not enough to justify inclusion</li>
</ul>
</li>
<li><strong>Cross below Bollinger Lower Band</strong>
<ul>
<li>Bollinger(2.5,7) was added to the strategy</li>
</ul>
</li>
<li><strong>MACD cross below signal line</strong>
<ul>
<li>MACD(2,12,4) was added to the strategy</li>
</ul>
</li>
<li><strong>RSI Hidden Divergence</strong>
<ul>
<li>RSI Hidden Divergence 29,10,4 was added to the strategy</li>
</ul>
</li>
<li><strong>RSI Hidden Divergence</strong>
<ul>
<li>RSI Hidden Divergence 14,22,6 was added to the strategy</li>
</ul>
</li>
<li><strong>RSI Hidden Divergence</strong>
<ul>
<li>RSI Hidden Divergence 18,6,2 was added to the strategy</li>
</ul>
</li>
<li><strong>Aroon Hidden Divergence</strong>
<ul>
<li>Aroon Hidden Divergence 12,17,4 was added to the strategy</li>
</ul>
</li>
</ol>
<h4>Results:</h4>
<p><strong>Profit:</strong> +<span style="color: #339966;">$81,925</span><br />
<strong>PF:</strong> 1.15<br />
<strong>Max DD:</strong> -<span style="color: #ff0000;">$4,700</span><br />
<strong>Sharp:</strong> .59<br />
<strong>Trades:</strong> 13600<br />
<strong>Win %</strong>: 57.32%<br />
<strong>Average Trade:</strong> +<span style="color: #339966;">$6.02</span></p>
<h4><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653/strategy1-2" rel="attachment wp-att-693"><img class="alignleft size-large wp-image-693" title="strategy1-2" src="http://thestrategictrader.com/wp-content/uploads/2011/11/strategy1-2-1024x841.jpg" alt="trading strategy development" width="500" height="400" /></a></h4>
<h4>Summary:</h4>
<p>Several key metrics decreased from the initial entry condition, but this is to be expected. Now we have a basic set of entry conditions providing over 13,000 trades. In the next several articles we will look at different ways of filtering out the non-performing trades, and implement an exit that makes more sense than a static 5 bar exit.</p>
<p>Eventually we will incorporate advanced concepts such as data mining and neural networks to improve the final product.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/nTCFd9uCOac" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/simple-profitable-strategy-part-1-design/653</feedburner:origLink></item>
		<item>
		<title>Trading Methods Using Aroon Oscillator</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/ktV2hMTWRiE/622</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-aroon-oscillator/622#comments</comments>
		<pubDate>Mon, 14 Nov 2011 02:45:12 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Aroon Oscillator]]></category>
		<category><![CDATA[Technical Indicators]]></category>
		<category><![CDATA[Trading]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=622</guid>
		<description><![CDATA[The Aroon Oscillator is commonly used as a trend following indicator. Meaning buy when trending up, sale when trending down. In this article we will look at the following strategies for trading the Aroon Oscillator: Buy when aroon oscillator crosses above 0 Buy when aroon oscillator crosses above some value x Buy when aroon oscillator [...]]]></description>
			<content:encoded><![CDATA[<p>The Aroon Oscillator is commonly used as a trend following indicator. Meaning buy when trending up, sale when trending down. In this article we will look at the following strategies for trading the Aroon Oscillator:</p>
<ol>
<li>Buy when aroon oscillator crosses above 0</li>
<li>Buy when aroon oscillator crosses above some value x</li>
<li>Buy when aroon oscillator crosses below 0</li>
<li>Buy when aroon oscillator crosses below some value x</li>
</ol>
<h4>Strategy #1: Buy when aroon oscillator crosses above 0</h4>
<p>Almost all parameters result in negative expectancy</p>
<h4>Strategy #2: Buy when aroon crosses above some value x</h4>
<p>This strategy performs fairly well, as long as x is &lt; 0.  No parameter combination was able to exceed our target thresholds. However, a few came pretty close. The closest one would be AroonOscillator(40) crosses above -99</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-aroon-oscillator/622/aroon1" rel="attachment wp-att-625"><img class="alignleft size-large wp-image-625" title="aroon1" src="http://thestrategictrader.com/wp-content/uploads/2011/11/aroon1-1024x409.jpg" alt="aroon oscillator strategy 1" width="500" height="200" /></a></p>
<p>&nbsp;</p>
<h4>Strategy #3: Buy when aroon oscillator crosses below 0</h4>
<p>Performs better than when crossing above 0, but is not enough of an edge to use in a strategy.</p>
<h4>Strategy #4: Buy when aroon oscillator crosses below x</h4>
<p>There were several parameter combinations that exceeded both profit and winning % after 5 bars. The best combination was when aroonoscillator(8) crossed below -80</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-aroon-oscillator/622/aroon2" rel="attachment wp-att-634"><img class="alignleft size-large wp-image-634" title="aroon2" src="http://thestrategictrader.com/wp-content/uploads/2011/11/aroon2-1024x409.jpg" alt="aroon oscillator strategy 2" width="500" height="200" /></a></p>
<p>&nbsp;</p>
<p><strong>Summary:</strong></p>
<p>Using the aroon oscillator to trade &#8220;with the trend&#8221;, does not look like a viable strategy. However, buying when aroon oscillator crosses below certain values can yield a small edge. May be useful in filtering out bad trades as we start to build out a strategy.</p>
<p><strong>Source Code:</strong></p>
<p><strong><a href="http://thestrategictrader.com/?s2member_file_download=aroon.zip&amp;s2member_skip_confirmation">Download Source</a></strong></p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-bollinger-bands/562" rel="bookmark">Trading Methods Using Bollinger Bands</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-1-zero-line-long-only/426" rel="bookmark">MACD Part 1: Zero Line (Long Only)</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-part-one/18" rel="bookmark">RSI Part 1 &#8211; Momentum Trading</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/5-minute-testing-procedures/20" rel="bookmark">5-Minute Testing Procedures (Long Only)</a></li>
</ul>
</div>
<p></strong></p>
<p><strong><br />
</strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/ktV2hMTWRiE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-aroon-oscillator/622/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-aroon-oscillator/622</feedburner:origLink></item>
		<item>
		<title>Trading Methods Using Bollinger Bands</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/U5BNsdnXWeo/562</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-bollinger-bands/562#comments</comments>
		<pubDate>Sat, 12 Nov 2011 03:57:05 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Bollinger Bands]]></category>
		<category><![CDATA[Technical Indicators]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=562</guid>
		<description><![CDATA[Bollinger bands consist of 3 lines. A moving average in the middle, an upper band (avg + x standard deviations), and a lower band (avg &#8211; x standard deviations). Commonly the upper band is thought of as overbought territory and the lower band oversold. In this article we will explore several uses of Bollinger bands: [...]]]></description>
			<content:encoded><![CDATA[<p>Bollinger bands consist of 3 lines. A moving average in the middle, an upper band (avg + x standard deviations), and a lower band (avg &#8211; x standard deviations). Commonly the upper band is thought of as overbought territory and the lower band oversold. In this article we will explore several uses of Bollinger bands:</p>
<ol>
<li>Buying when the price crosses below the lower band</li>
<li>Buying when the price crosses above the upper band</li>
<li>Buying when the price crosses back above the lower band</li>
<li>Buying when the price crosses back below the upper band</li>
</ol>
<h4>Test #1: Buy on cross below lower band</h4>
<p>This method tested out well. There were a few parameter combinations that narrowly exceeded our profit and percent profitable targets set for 5 bar exits. The best parameter combination was 1.5 standard deviations and 4 for the lookback period. Here is the equity curve achieved:</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-bollinger-bands/562/bollinger1-3" rel="attachment wp-att-573"><img class="alignleft size-large wp-image-573" title="bollinger1" src="http://thestrategictrader.com/wp-content/uploads/2011/11/bollinger12-1024x409.jpg" alt="" width="500" height="210" /></a></p>
<h4>Test 2: Buy on cross of upper band</h4>
<p>This method did not yield a single profitable result.</p>
<h4>Test 3: Buy when price crosses back above lower band</h4>
<p>This method is similar to test #1 except we wait for confirmation of price turning around by crossing back above the lower band. Common sense would dictate this strategy should perform well. However, the actual results were closer to Test #2 than Test #1.</p>
<h4>Test 4: Buy when price crosses back below the upper band</h4>
<p>This strategy was unable to exceed our preset thresholds. Attached is the equity curve for the best parameter combination: 2.5 std, 24 period</p>
<p><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-bollinger-bands/562/bollinger2" rel="attachment wp-att-604"><img class="alignleft size-large wp-image-604" title="bollinger2" src="http://thestrategictrader.com/wp-content/uploads/2011/11/bollinger2-1024x409.jpg" alt="" width="500" height="200" /></a></p>
<h4>Summary:</h4>
<p>We discovered that buying on oversold bollinger band conditions can be a viable strategy. However, more work is needed to fully exploit this potential edge.</p>
<p><strong>Source Code:</strong></p>
<p><strong><a href="http://thestrategictrader.com/?s2member_file_download=bollinger.zip&amp;s2member_skip_confirmation">Download Source</a></strong></p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-1-zero-line-long-only/426" rel="bookmark">MACD Part 1: Zero Line (Long Only)</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/rsi-part-one/18" rel="bookmark">RSI Part 1 &#8211; Momentum Trading</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/5-minute-testing-procedures/20" rel="bookmark">5-Minute Testing Procedures (Long Only)</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/the-testing-environment/12" rel="bookmark">The Testing Environment</a></li>
</ul>
</div>
<p></strong></p>
<p><strong><br />
</strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/U5BNsdnXWeo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-bollinger-bands/562/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/trading-methods-using-bollinger-bands/562</feedburner:origLink></item>
		<item>
		<title>MACD Part 2: Signal Cross (Long Only)</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/4U8GgZ6T4e8/461</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-2-signal-cross-long-only/461#comments</comments>
		<pubDate>Thu, 10 Nov 2011 03:31:12 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Long]]></category>
		<category><![CDATA[MACD]]></category>
		<category><![CDATA[Technical Indicators]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=461</guid>
		<description><![CDATA[In this article we will explore the viability of trading the 5 minute ES when the MACD crosses the signal line. The signal line is nothing more than a moving average of the MACD values. To start with, we will test a very common strategy (going long when the current MACD  value crosses above the [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css">
hr { height: 0; border-style: dashed ; border-width: 1px 0 0 0; border-color:
#000000; } 
</style>
<p>In this article we will explore the viability of trading the 5 minute ES when the MACD crosses the signal line. The signal line is nothing more than a moving average of the MACD values. To start with, we will test a very common strategy (going long when the current MACD  value crosses above the signal line).</p>
<hr />
<span style="color: #000000;"><strong>Strategy</strong><strong> #1</strong></span><em><br />
</em>For the first test, we will enter any trade when the MACD crosses above the signal line.</p>
<p><span style="color: #000000;"><em><strong>Results: Exit at 5 Bars</strong></em></span><br />
A common theme is starting to emerge. Buying on up moves is generally a losing strategy. Buying when MACD crosses above its signal line and then holding for 5 bars is a pretty bad idea. Not a single optimized parameter set was able to turn a profit in this scenario. Winning percentages were decent, but not above the threshold required to be meaningful.</p>
<hr />
<span style="color: #000000;"><strong>Strategy</strong><strong> #2</strong></span><br />
Buy when the MACD crosses above the signal line and MACD above the zero line</p>
<p><span style="color: #000000;"><em><strong>Results:</strong></em> <strong><em>Exit at 5 Bars</em></strong></span><br />
Although we are still buying on an up move, the fact that we are above the zero line appears to make a difference. Based on previous testing results related to the zero line, I did not expect the strategy to do well. However, there were quite a few combinations of parameters that were profitable.  The 4,2,2 parameter combination was even able to (slightly) exceed our percent profitable threshold, but fell short of the overall profit goal.</p>
<hr />
<span style="color: #000000;"><strong>Strategy #3</strong></span><br />
Buy when the MACD crosses above the signal line and MACD below the zero line</p>
<p><span style="color: #000000;"><em><strong>Results: Exit at 5 Bars</strong></em></span><br />
Not surprisingly based on the results from Strategy #2 and Strategy #1, this strategy does not perform very well.</p>
<hr />
<span style="color: #000000;"><strong>Strategy #4</strong></span><br />
Buy when the MACD crosses below the signal line</p>
<p><span style="color: #000000;"><em><strong>Results: Exit at 5 Bars</strong></em></span><br />
Some profitable combinations, but no where near significant.</p>
<hr />
<span style="color: #000000;"><strong>Strategy #5</strong></span><br />
Buy when the MACD crosses below the signal line and MACD below zero</p>
<p><span style="color: #000000;"><em><strong>Results: Exit at 5 Bars</strong></em></span><br />
Once again, we come very close to passing our thresholds on percentage and profit, but fall short.</p>
<hr />
<span style="color: #000000;"><strong>Strategy #6</strong></span><br />
Buy when the MACD crosses below the signal line and MACD above zero</p>
<p><span style="color: #000000;"><em><strong>Results: Exit at 5 Bars</strong></em></span><br />
As logic would dictate, because Test #5 performed well, Test#6 did not do so great.</p>
<p><strong>Summary</strong><br />
MACD signal line crosses mostly reinforce the theme that buying after an up move is a losing strategy. However, strategy 2 had an unexpected result. If you buy on signal line crosses and the MACD is above zero, the strategy performs well. In future tests we will need to examine this behavior more closely.</p>
<p><strong>Source Code:</strong></p>
<p><strong> </strong></p>
<p><strong><a href="http://thestrategictrader.com/?s2member_file_download=macd2.zip&amp;s2member_skip_confirmation">Download Source</a></strong></p>
<p><strong>Related Posts:</strong></p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-1-zero-line-long-only/426" rel="bookmark">MACD Part 1: Zero Line (Long Only)</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/5-minute-testing-procedures/20" rel="bookmark">5-Minute Testing Procedures (Long Only)</a></li>
</ul>
</div>
<p></strong></p>
<p><strong><br />
</strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/4U8GgZ6T4e8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-2-signal-cross-long-only/461/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-2-signal-cross-long-only/461</feedburner:origLink></item>
		<item>
		<title>Data mining for strategies</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/IpEgyKhBkKM/456</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/data-mining-for-strategies/456#comments</comments>
		<pubDate>Sat, 29 Oct 2011 02:50:51 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[Patterns]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=456</guid>
		<description><![CDATA[For the past several months, I have been busy working on software to aide in &#8220;data mining&#8221; the market. With the hope of eventually finding repeatable patterns. The basic premise is to devise software capable of finding patterns that provide an exploitable edge. Because I have been spending all my free time working on this [...]]]></description>
			<content:encoded><![CDATA[<p>For the past several months, I have been busy working on software to aide in &#8220;data mining&#8221; the market. With the hope of eventually finding repeatable patterns. The basic premise is to devise software capable of finding patterns that provide an exploitable edge. Because I have been spending all my free time working on this software, I have been falling behind on the pursuits outlined within this journal.</p>
<p>I am hoping to get back into the swing of things, and eventually incorporate the software I have been working on as a way of further discovering what works and what does not work. The software is great at finding an &#8220;edge containing pattern&#8221; if one exists in the provided data set. However, the most challenging aspect is figuring out what data to provide and the basic constructs of the pattern you are interesting in.</p>
<p>That is why its important to continue down the path that I started within this journal. To most effectively find patterns within the market, you have to have a way of weeding out some of the useless indicators and ideals. Without performing this degree of pre-filtering, the software can not run fast enough to sift through all of the data.</p>
<p>As this software becomes more polished, I will release a version here in this journal as well as utilize it in further weeding out the garbage indicators. For example, by focusing on a single indicator and feeding it into the software, you can &#8220;fairly&#8221; quickly see if any edge is possible. If the software is not able to extract any repeatable patterns (resulting in an edge), then that indicator is most likely useless in your trading. Unfortunately, the software is not quite polished enough for prime time. In the mean time, I will continue to test indicators the way I previously approached the issue while slowly migrating towards utilizing this data mining software. Eventually replacing most of my analysis of indicators with results found through the data mining software approach.</p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/IpEgyKhBkKM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/data-mining-for-strategies/456/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/data-mining-for-strategies/456</feedburner:origLink></item>
		<item>
		<title>MACD Part 1: Zero Line (Long Only)</title>
		<link>http://feedproxy.google.com/~r/Thestrategictradercom/~3/ITSQUJQC29M/426</link>
		<comments>http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-1-zero-line-long-only/426#comments</comments>
		<pubDate>Fri, 01 Apr 2011 02:45:35 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[MACD]]></category>
		<category><![CDATA[Technical Indicators]]></category>

		<guid isPermaLink="false">http://thestrategictrader.com/?p=426</guid>
		<description><![CDATA[In this series we will test the MACD (Moving Average Convergence Divergence) indicator. Like our other indicator series we will test the results against our 5-minute base line results found here: Long Baseline, Short Baseline, and Risk/Reward Baseline MACD is commonly used to enter trades based on its position relative to the Zero Line. Our [...]]]></description>
			<content:encoded><![CDATA[<p>In this series we will test the MACD (Moving Average Convergence Divergence) indicator. Like our other indicator series we will test the results against our 5-minute base line results found here: <a href="http://thestrategictrader.com/?p=20">Long Baseline</a>, <a href="http://thestrategictrader.com/?p=142">Short Baseline</a>, and <a href="http://thestrategictrader.com/?p=363">Risk/Reward Baseline</a></p>
<p>MACD is commonly used to enter trades based on its position relative to the Zero Line. Our first test will enter long whenever MACD is above the zero line.</p>
<p><em><strong>Results: Exit at 5 Bars</strong></em><br />
These results turned out very similar to what we saw with RSI when above 50. Very few combinations were even positive with no results coming close to demonstrating a tradeable edge.</p>
<p><em><strong>Results: Exit Using 1:2 Risk/Reward Ratio</strong></em><br />
Not a single combination resulted in a net profit. Clearly it is not wise to buy when MACD is above the Zero Line.</p>
<p>Now we will test the MACD below the Zero Line. Based on the above results, we expect being below the Zero Line to outperform.</p>
<p><em><strong>Results: Exit at 5 Bars</strong></em><br />
No combination was able to surpass our targets for total profit. However, a large number of combinations surpassed our percent profitable threshold. This indicates a potential edge, however the edge is likely too small to surpass trading costs such as commission. May be useful as a filter to filter out losing trades.</p>
<p>Best Combination: Fast = 2, Slow =4 Smooth =4<br />
<a href="http://thestrategictrader.com/technical-analysis/macd-part-1-zero-line-long-only/426/macd1" rel="attachment wp-att-437"><img src="http://thestrategictrader.com/wp-content/uploads/2011/03/macd1.jpg" alt="" title="macd1" width="500" height="215" class="alignnone size-full wp-image-437" /></a></p>
<p><em><strong>Results: Exit Using 1:2 Risk/Reward Ratio</strong></em><br />
No combination came close to our thresholds. This combined with the failure to reach profit thresholds using 5 bar exit, further underscores this strategy as containing a very weak if any edge.</p>
<p><strong>Summary</strong><br />
There may be a slight edge when entering trades while below the Zero Line. However, by itself it is not tradeable. In future articles we will look at ways of using this filter to improve our overall edge.</p>
<p><strong>Source Code:</strong></p>
<p><strong> </strong></p>
<p><strong><a href="http://thestrategictrader.com/?s2member_file_download=macd1.zip&amp;s2member_skip_confirmation">Download Source</a></strong></p>
<p><strong>Related Posts:</strong></p>
<p><strong>
<div id="rpp_related">
<h3>Related Posts</h3>
<ul>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-2-signal-cross-long-only/461" rel="bookmark">MACD Part 2: Signal Cross (Long Only)</a></li>
<li><a href="http://thestrategictrader.com/technical-analysis/trading-strategy/5-minute-testing-procedures/20" rel="bookmark">5-Minute Testing Procedures (Long Only)</a></li>
</ul>
</div>
<p></strong></p>
<p><strong><br />
</strong></p>
<img src="http://feeds.feedburner.com/~r/Thestrategictradercom/~4/ITSQUJQC29M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-1-zero-line-long-only/426/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://thestrategictrader.com/technical-analysis/trading-strategy/macd-part-1-zero-line-long-only/426</feedburner:origLink></item>
	</channel>
</rss>

