<?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/"
		>
<channel>
	<title>Comments for Adaptive Trading Systems Blog</title>
	<atom:link href="http://www.adaptivetradingsystems.com/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.adaptivetradingsystems.com/blog</link>
	<description>Trading Systems</description>
	<lastBuildDate>Fri, 03 Dec 2010 00:10:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Obtaining the Full Signal History when Calculating Bot Performance by jamess</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2163&#038;cpage=1#comment-652</link>
		<dc:creator>jamess</dc:creator>
		<pubDate>Fri, 03 Dec 2010 00:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2163#comment-652</guid>
		<description>Thanks Ed. You shouldn&#039;t use a global scope array to store a signal history within the CPerformance class of an equity engine. One instance of each equity engine is created by Dakota during start up. Function CalculateAdaptationPerformance() is called by the swarm server when it requires the performance for each bot. The Signal array for the given bot is passed into the function. If you had a 2 dimensional array so that you could store the bot id and corresponding signal history then you this would work. Even if you could get the bot id (I don&#039;t think you can), the solution isn&#039;t as neat.

James</description>
		<content:encoded><![CDATA[<p>Thanks Ed. You shouldn&#8217;t use a global scope array to store a signal history within the CPerformance class of an equity engine. One instance of each equity engine is created by Dakota during start up. Function CalculateAdaptationPerformance() is called by the swarm server when it requires the performance for each bot. The Signal array for the given bot is passed into the function. If you had a 2 dimensional array so that you could store the bot id and corresponding signal history then you this would work. Even if you could get the bot id (I don&#8217;t think you can), the solution isn&#8217;t as neat.</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Trading Systems Reporting by jamess</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2170&#038;cpage=1#comment-651</link>
		<dc:creator>jamess</dc:creator>
		<pubDate>Thu, 02 Dec 2010 23:59:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2170#comment-651</guid>
		<description>The system used in the examples is based on a production system that predicts the WaveOsc2 indicator using the CPredict2 with the equity engine performance lookback period decreased from 1,000 trading days to 500 trading days and the CPredictor2 lookback period also decreased from 1,000 trading days to 500. I decreased the lookback periods to speed up the run.

The original PPIP (proportion of perfect while in position) equity engine will be included in the new set of equity engines as well as some new equity engines based on different performance adaptation metrics. When I have completed the development of these equity engines I will run some monte carlo simulations for a simple system using each of the equity engines.

James</description>
		<content:encoded><![CDATA[<p>The system used in the examples is based on a production system that predicts the WaveOsc2 indicator using the CPredict2 with the equity engine performance lookback period decreased from 1,000 trading days to 500 trading days and the CPredictor2 lookback period also decreased from 1,000 trading days to 500. I decreased the lookback periods to speed up the run.</p>
<p>The original PPIP (proportion of perfect while in position) equity engine will be included in the new set of equity engines as well as some new equity engines based on different performance adaptation metrics. When I have completed the development of these equity engines I will run some monte carlo simulations for a simple system using each of the equity engines.</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Futures Trading Systems Reporting by jamess</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2192&#038;cpage=1#comment-650</link>
		<dc:creator>jamess</dc:creator>
		<pubDate>Thu, 02 Dec 2010 23:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2192#comment-650</guid>
		<description>There is a distinction between running a futures trading versus stock trading simulation. I haven&#039;t posted an example of the stock trading report yet. When running the futures trading simulation the net profit for a trade is calculated by multiplying the value per point by the number of points made or lost and subtracting the trading costs. The returns are calculated against the trading capital that remains at the value set.

When running the stock trading simulation the value per point is always $1. The assumption is that trading capital is 100% invested at the traded price when opening a position and, therefore, the number of shares traded varies. As with the futures trading simulation, the trading capital remains fixed.

These two simulation types are basic and additional methods for futures and stock trading, as well as no-load mutual fund trading, will be incorporated down the track.

James</description>
		<content:encoded><![CDATA[<p>There is a distinction between running a futures trading versus stock trading simulation. I haven&#8217;t posted an example of the stock trading report yet. When running the futures trading simulation the net profit for a trade is calculated by multiplying the value per point by the number of points made or lost and subtracting the trading costs. The returns are calculated against the trading capital that remains at the value set.</p>
<p>When running the stock trading simulation the value per point is always $1. The assumption is that trading capital is 100% invested at the traded price when opening a position and, therefore, the number of shares traded varies. As with the futures trading simulation, the trading capital remains fixed.</p>
<p>These two simulation types are basic and additional methods for futures and stock trading, as well as no-load mutual fund trading, will be incorporated down the track.</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Obtaining the Full Signal History when Calculating Bot Performance by ed</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2163&#038;cpage=1#comment-648</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Thu, 02 Dec 2010 02:23:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2163#comment-648</guid>
		<description>great insight, apparently this beats my use of global scope variable to keep a running history of the signal for use inside the bot, to look back into history, so great insight.!</description>
		<content:encoded><![CDATA[<p>great insight, apparently this beats my use of global scope variable to keep a running history of the signal for use inside the bot, to look back into history, so great insight.!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Trading Systems Reporting by ed</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2170&#038;cpage=1#comment-647</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Thu, 02 Dec 2010 02:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2170#comment-647</guid>
		<description>the equity curve is really impressive, almost 8% of perfect and 53% direction correct 60% winning trades and a .59 sharpe, my eyes are not so perfect and i cant zoom in any further.
what would be the results from the ordinary non log normal ppip older engine? perhaps this
would be even more interesting.
my guess is it underperforms, but only visible to a difference plot?

thanks</description>
		<content:encoded><![CDATA[<p>the equity curve is really impressive, almost 8% of perfect and 53% direction correct 60% winning trades and a .59 sharpe, my eyes are not so perfect and i cant zoom in any further.<br />
what would be the results from the ordinary non log normal ppip older engine? perhaps this<br />
would be even more interesting.<br />
my guess is it underperforms, but only visible to a difference plot?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Futures Trading Systems Reporting by ed</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2192&#038;cpage=1#comment-646</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Thu, 02 Dec 2010 02:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2192#comment-646</guid>
		<description>is there a distinction between the futures equity engine and one used for cash stocks?
i only ask because i dont see the difference out side of parameter setting, but i could
be forgetting something.

thanks</description>
		<content:encoded><![CDATA[<p>is there a distinction between the futures equity engine and one used for cash stocks?<br />
i only ask because i dont see the difference out side of parameter setting, but i could<br />
be forgetting something.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Predicting SP Futures Returns with the K-NN Algorithm Part II by jamess</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2097&#038;cpage=1#comment-441</link>
		<dc:creator>jamess</dc:creator>
		<pubDate>Tue, 14 Sep 2010 02:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2097#comment-441</guid>
		<description>Hi Jeff,

Thank you for the feedback. The latest round of work on the CPredictor and other software is looking very promising.

Best Regards,

James</description>
		<content:encoded><![CDATA[<p>Hi Jeff,</p>
<p>Thank you for the feedback. The latest round of work on the CPredictor and other software is looking very promising.</p>
<p>Best Regards,</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Predicting SP Futures Returns with the K-NN Algorithm Part II by Jeffrey Mishlove</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=2097&#038;cpage=1#comment-424</link>
		<dc:creator>Jeffrey Mishlove</dc:creator>
		<pubDate>Mon, 13 Sep 2010 01:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=2097#comment-424</guid>
		<description>James,

This looks very interesting and exciting. I look forward to learning the results of the additional tests that you plan.

Jeff</description>
		<content:encoded><![CDATA[<p>James,</p>
<p>This looks very interesting and exciting. I look forward to learning the results of the additional tests that you plan.</p>
<p>Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adaptive ARMD(2) SP500 Trading System by jamess</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=1976&#038;cpage=1#comment-317</link>
		<dc:creator>jamess</dc:creator>
		<pubDate>Sun, 05 Sep 2010 01:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=1976#comment-317</guid>
		<description>Hi Ed,

Thanks for making me aware of the additional trading vehicles. Eventually I will compare the trading costs associated with each of them. I know Michael Stokes is keen on the 2X leveraged no load mutual funds and I&#039;m thinking he has thoroughly checked out the slippage etc.

Combining the signals is going to be an interesting exercise.

Best Regards,

James</description>
		<content:encoded><![CDATA[<p>Hi Ed,</p>
<p>Thanks for making me aware of the additional trading vehicles. Eventually I will compare the trading costs associated with each of them. I know Michael Stokes is keen on the 2X leveraged no load mutual funds and I&#8217;m thinking he has thoroughly checked out the slippage etc.</p>
<p>Combining the signals is going to be an interesting exercise.</p>
<p>Best Regards,</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adaptive ARMD(2) SP500 Trading System by ed</title>
		<link>http://www.adaptivetradingsystems.com/blog/?p=1976&#038;cpage=1#comment-316</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Sat, 04 Sep 2010 19:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.adaptivetradingsystems.com/blog/?p=1976#comment-316</guid>
		<description>Hi James
not only leverage mutual funds, but try double and triple leverage.
like sds, spy, sh, sso
Direxion Large Cap Bear 3X Shares(BGZ) (correlation/basis risk here)
Direxion Small Cap Bear 3X Shares(TZA)(correlation/basis risk here)
and lets not forget vxx + xxv 
there are so many leveraged ways to make or loose money, just need
to be sure its worth the bet and control the risk

and need i mention that china affect australia, and now leads us markets
by the nose, and there are triple long and triple short china etfs also
but these suckers are illiquid and move.

&quot;this is me wondering out loud&quot;
but i have been playing with the idea that one signal might not be correct,
instead all the dv models combine to 1 vote, all the ar models combine to
one vote, all the xyz models are also sorted and combined into the &quot;speciality&quot;
vote, then a final choice could be weighted sigal average, a swarm vote,
something else to control for signal quality?

end of loud thinking
</description>
		<content:encoded><![CDATA[<p>Hi James<br />
not only leverage mutual funds, but try double and triple leverage.<br />
like sds, spy, sh, sso<br />
Direxion Large Cap Bear 3X Shares(BGZ) (correlation/basis risk here)<br />
Direxion Small Cap Bear 3X Shares(TZA)(correlation/basis risk here)<br />
and lets not forget vxx + xxv<br />
there are so many leveraged ways to make or loose money, just need<br />
to be sure its worth the bet and control the risk</p>
<p>and need i mention that china affect australia, and now leads us markets<br />
by the nose, and there are triple long and triple short china etfs also<br />
but these suckers are illiquid and move.</p>
<p>&#8220;this is me wondering out loud&#8221;<br />
but i have been playing with the idea that one signal might not be correct,<br />
instead all the dv models combine to 1 vote, all the ar models combine to<br />
one vote, all the xyz models are also sorted and combined into the &#8220;speciality&#8221;<br />
vote, then a final choice could be weighted sigal average, a swarm vote,<br />
something else to control for signal quality?</p>
<p>end of loud thinking</p>
]]></content:encoded>
	</item>
</channel>
</rss>

