<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Engineering Returns</title>
	<atom:link href="http://engineering-returns.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://engineering-returns.com</link>
	<description>engineering financial returns using quantitative methods</description>
	<lastBuildDate>Wed, 22 Feb 2012 08:28:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Combining TSI and RSI into a winning swing trading system [Part I.] by Frank Hassler</title>
		<link>http://engineering-returns.com/2010/07/13/tsi_rsi_system_parti/#comment-1578</link>
		<dc:creator><![CDATA[Frank Hassler]]></dc:creator>
		<pubDate>Wed, 22 Feb 2012 08:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=607#comment-1578</guid>
		<description><![CDATA[Hello JW

THANKS a lot for the code...

I don&#039;t trade that system at all. It only served as an example.

But to answer your question: i&#039;m not a big fan of these MA/ROC based filters. More often they are just a moderator for a different volatility regime.

Regards,
Frank]]></description>
		<content:encoded><![CDATA[<p>Hello JW</p>
<p>THANKS a lot for the code&#8230;</p>
<p>I don&#8217;t trade that system at all. It only served as an example.</p>
<p>But to answer your question: i&#8217;m not a big fan of these MA/ROC based filters. More often they are just a moderator for a different volatility regime.</p>
<p>Regards,<br />
Frank</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Combining TSI and RSI into a winning swing trading system [Part I.] by TrendXplorer</title>
		<link>http://engineering-returns.com/2010/07/13/tsi_rsi_system_parti/#comment-1577</link>
		<dc:creator><![CDATA[TrendXplorer]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 21:52:01 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=607#comment-1577</guid>
		<description><![CDATA[Hi Frank,

On a private board someone asked for the thinkscript code of your TSI. 
thinkscript is the coding language for thinkDesktop by Thinkorswim.com. Here you have the TOS-study for your visitors too. If you like, I could provide a chart also.

BTW, in the code I use TSX instead of TSI, because most of the time TSI  refers to the True Strength Index, published in 1991 by William Blau. I guess he was first :-)

Question: are the entry and exit values of RSI(2) still valid and is your market filter still 50MA &amp; 150ROC or do you use the tandem 20MA &amp; 200MA instead as a filter? 
I&#039;m planning to implement the entry and exit levels in a system for TOS.

Thanks for all the work you offer for free!
JW

# --- begin script ---
# Trend Strength Index TSX
# original by Frank Hassler
# http://engineering-returns.com/

declare lower;

input price = close;
#input lengthATR = 10;
#input lengthROC = 10;
input fastMA = 10;
input slowMA = 100;
input lineValue = 1.65;

def ATR = AvgTrueRange(high, close, low, 10);
def Ratio = AbsValue(close - close[10]) / ATR;

plot TSX = Average(Average(Ratio, fastMA),slowMA);
TSX.SetDefaultColor(GetColor(1));
TSX.setLineWeight(2);

plot line = lineValue;
line.setDefaultColor(GetColor(5));

# --- end script ---]]></description>
		<content:encoded><![CDATA[<p>Hi Frank,</p>
<p>On a private board someone asked for the thinkscript code of your TSI.<br />
thinkscript is the coding language for thinkDesktop by Thinkorswim.com. Here you have the TOS-study for your visitors too. If you like, I could provide a chart also.</p>
<p>BTW, in the code I use TSX instead of TSI, because most of the time TSI  refers to the True Strength Index, published in 1991 by William Blau. I guess he was first <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Question: are the entry and exit values of RSI(2) still valid and is your market filter still 50MA &amp; 150ROC or do you use the tandem 20MA &amp; 200MA instead as a filter?<br />
I&#8217;m planning to implement the entry and exit levels in a system for TOS.</p>
<p>Thanks for all the work you offer for free!<br />
JW</p>
<p># &#8212; begin script &#8212;<br />
# Trend Strength Index TSX<br />
# original by Frank Hassler<br />
# <a href="http://engineering-returns.com/" rel="nofollow">http://engineering-returns.com/</a></p>
<p>declare lower;</p>
<p>input price = close;<br />
#input lengthATR = 10;<br />
#input lengthROC = 10;<br />
input fastMA = 10;<br />
input slowMA = 100;<br />
input lineValue = 1.65;</p>
<p>def ATR = AvgTrueRange(high, close, low, 10);<br />
def Ratio = AbsValue(close &#8211; close[10]) / ATR;</p>
<p>plot TSX = Average(Average(Ratio, fastMA),slowMA);<br />
TSX.SetDefaultColor(GetColor(1));<br />
TSX.setLineWeight(2);</p>
<p>plot line = lineValue;<br />
line.setDefaultColor(GetColor(5));</p>
<p># &#8212; end script &#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weekly 360° view – 08 / 2012 by john doe</title>
		<link>http://engineering-returns.com/2012/02/21/weekly-360-view-08-2012/#comment-1576</link>
		<dc:creator><![CDATA[john doe]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 15:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=2669#comment-1576</guid>
		<description><![CDATA[You may surprise yourself with how accurate you&#039;ve been, I mean.]]></description>
		<content:encoded><![CDATA[<p>You may surprise yourself with how accurate you&#8217;ve been, I mean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weekly 360° view – 08 / 2012 by Frank Hassler</title>
		<link>http://engineering-returns.com/2012/02/21/weekly-360-view-08-2012/#comment-1574</link>
		<dc:creator><![CDATA[Frank Hassler]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 09:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=2669#comment-1574</guid>
		<description><![CDATA[Hi John,

I&#039;m considering that... what do you mean by surprising myself?

Frank]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>I&#8217;m considering that&#8230; what do you mean by surprising myself?</p>
<p>Frank</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weekly 360° view – 08 / 2012 by john doe</title>
		<link>http://engineering-returns.com/2012/02/21/weekly-360-view-08-2012/#comment-1573</link>
		<dc:creator><![CDATA[john doe]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 08:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=2669#comment-1573</guid>
		<description><![CDATA[Frank,
You should keep a track record of your weekly calls. You may surprise yourself.

John]]></description>
		<content:encoded><![CDATA[<p>Frank,<br />
You should keep a track record of your weekly calls. You may surprise yourself.</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Portfolio Trader &#8211; Trades (2011) by ETF Prophet &#124; Portfolio Trader ~ Week 08 / 2012</title>
		<link>http://engineering-returns.com/portfolio-trader-closed-trades/#comment-1571</link>
		<dc:creator><![CDATA[ETF Prophet &#124; Portfolio Trader ~ Week 08 / 2012]]></dc:creator>
		<pubDate>Mon, 20 Feb 2012 17:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?page_id=1774#comment-1571</guid>
		<description><![CDATA[[...] Portfolio Trader Read more about Portfolio Trader here (link). Past trades can be found here ( 2011 / 2012 ). This page will be updated as trades have been [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Portfolio Trader Read more about Portfolio Trader here (link). Past trades can be found here ( 2011 / 2012 ). This page will be updated as trades have been [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Portfolio Trader &#8211; Overview by ETF Prophet &#124; Portfolio Trader ~ Week 08 / 2012</title>
		<link>http://engineering-returns.com/portfoliotrader/#comment-1570</link>
		<dc:creator><![CDATA[ETF Prophet &#124; Portfolio Trader ~ Week 08 / 2012]]></dc:creator>
		<pubDate>Mon, 20 Feb 2012 17:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?page_id=1346#comment-1570</guid>
		<description><![CDATA[[...] Portfolio Trader Read more about Portfolio Trader here (link). Past trades can be found here ( 2011 / 2012 ). This page will be updated as trades have been [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Portfolio Trader Read more about Portfolio Trader here (link). Past trades can be found here ( 2011 / 2012 ). This page will be updated as trades have been [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Combining TSI and RSI into a winning swing trading system [Part II.] by Frank Hassler</title>
		<link>http://engineering-returns.com/2010/07/14/tsi_rsi_system_partii/#comment-1569</link>
		<dc:creator><![CDATA[Frank Hassler]]></dc:creator>
		<pubDate>Mon, 20 Feb 2012 14:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=621#comment-1569</guid>
		<description><![CDATA[Hello Marco,

i can not give you any advise on leverage. Simply because I don&#039;t use leverage at all. I&#039;m not ready to enter that area... I&#039;m fine trading my capital 100% (without leverage). Don&#039;t get me wrong, I&#039;m not saying not to use it ... i&#039;m just not there.

Frank]]></description>
		<content:encoded><![CDATA[<p>Hello Marco,</p>
<p>i can not give you any advise on leverage. Simply because I don&#8217;t use leverage at all. I&#8217;m not ready to enter that area&#8230; I&#8217;m fine trading my capital 100% (without leverage). Don&#8217;t get me wrong, I&#8217;m not saying not to use it &#8230; i&#8217;m just not there.</p>
<p>Frank</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Combining TSI and RSI into a winning swing trading system [Part II.] by marco</title>
		<link>http://engineering-returns.com/2010/07/14/tsi_rsi_system_partii/#comment-1568</link>
		<dc:creator><![CDATA[marco]]></dc:creator>
		<pubDate>Mon, 20 Feb 2012 10:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?p=621#comment-1568</guid>
		<description><![CDATA[Thank you very much Frank. What do you think on using leverage? For example: with leverage at 5 the drawdawn goes at 50%. But if I use only 2/3 of equity and keep 1/3 on cash I can add the cash to the equity keeping the stake at the same amount after the drawdawn. So in each trade I use:
0,33*(2/3)*(total equity) in one position leveraged. The profits are then saved until I reach the cash amount before drawdawn. On average having 1,3% as average trade, 2 average trades per month, in a year: 1,3*2*12*5*(2/3)=104%. This average yearly return should compensate for the risk. Am I right? Or have to keep *0,33 in the equation? It depends on your backtesting rules.
Marco]]></description>
		<content:encoded><![CDATA[<p>Thank you very much Frank. What do you think on using leverage? For example: with leverage at 5 the drawdawn goes at 50%. But if I use only 2/3 of equity and keep 1/3 on cash I can add the cash to the equity keeping the stake at the same amount after the drawdawn. So in each trade I use:<br />
0,33*(2/3)*(total equity) in one position leveraged. The profits are then saved until I reach the cash amount before drawdawn. On average having 1,3% as average trade, 2 average trades per month, in a year: 1,3*2*12*5*(2/3)=104%. This average yearly return should compensate for the risk. Am I right? Or have to keep *0,33 in the equation? It depends on your backtesting rules.<br />
Marco</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Portfolio Trader &#8211; Overview by Portfolio Trader – Week 08 / 2012 – Engineering Returns</title>
		<link>http://engineering-returns.com/portfoliotrader/#comment-1566</link>
		<dc:creator><![CDATA[Portfolio Trader – Week 08 / 2012 – Engineering Returns]]></dc:creator>
		<pubDate>Sun, 19 Feb 2012 19:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://engineering-returns.com/?page_id=1346#comment-1566</guid>
		<description><![CDATA[[...] more about Portfolio Trader here (link). Past trades can be found here ( 2011 / 2012 ). This page will be updated as trades have been [...]]]></description>
		<content:encoded><![CDATA[<p>[...] more about Portfolio Trader here (link). Past trades can be found here ( 2011 / 2012 ). This page will be updated as trades have been [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
