<?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 on: containing a strategy</title>
	<atom:link href="http://www.puppetmastertrading.com/blog/index.php/2009/08/19/containing-a-strategy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/</link>
	<description>Algorithmic trading experiences</description>
	<lastBuildDate>Wed, 28 Jul 2010 01:46:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hack the market &#187; lock free</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-8663</link>
		<dc:creator>Hack the market &#187; lock free</dc:creator>
		<pubDate>Wed, 17 Feb 2010 00:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-8663</guid>
		<description>[...] In the remainder of this post, I&#8217;ll briefly describe the FF design and then illustrate a sample C++ program which uses FastFlow to &#8216;architecturally prototype&#8217; a feed handler interacting with strategies inside an EMS / strategy container. [...]</description>
		<content:encoded><![CDATA[<p>[...] In the remainder of this post, I&#8217;ll briefly describe the FF design and then illustrate a sample C++ program which uses FastFlow to &#8216;architecturally prototype&#8217; a feed handler interacting with strategies inside an EMS / strategy container. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hack the market &#187; ready to launch</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-7056</link>
		<dc:creator>Hack the market &#187; ready to launch</dc:creator>
		<pubDate>Wed, 18 Nov 2009 17:21:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-7056</guid>
		<description>[...] this post I&#8217;m going to revisit some of the topics discussed in the recent &#8216;containing a strategy&#8216; and &#8216;multi-strategy trading with regimes&#8216; posts, focusing on the process of [...]</description>
		<content:encoded><![CDATA[<p>[...] this post I&#8217;m going to revisit some of the topics discussed in the recent &#8216;containing a strategy&#8216; and &#8216;multi-strategy trading with regimes&#8216; posts, focusing on the process of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hack the market &#187; multi-strategy trading with regimes</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-7054</link>
		<dc:creator>Hack the market &#187; multi-strategy trading with regimes</dc:creator>
		<pubDate>Wed, 18 Nov 2009 17:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-7054</guid>
		<description>[...] strategies in relevant ways using the strategy &#8216;object model&#8217; I&#8217;ve described previously through an example, and conclude with some thoughts on how these kinds of strategies might be [...]</description>
		<content:encoded><![CDATA[<p>[...] strategies in relevant ways using the strategy &#8216;object model&#8217; I&#8217;ve described previously through an example, and conclude with some thoughts on how these kinds of strategies might be [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tito</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-5298</link>
		<dc:creator>tito</dc:creator>
		<pubDate>Fri, 21 Aug 2009 11:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-5298</guid>
		<description>I had written a post entitled &#039;simulating an exchange&#039; which spoke a bit about the issues in writing a simulator.  It&#039;s a complex-ish piece of software, and can really be a mess as you try to support conditional and contingent orders.  Supporting different data frequencies/qualities also adds complexity.  If I had it to do over again, I&#039;d focus on ensuring I had very good quality data treated uniformly and the simulator would simplify significantly.

I&#039;ve managed to avoid refactoring that code for a longish while now, but when I do I&#039;ll try to identify some interesting characteristics to share about it...</description>
		<content:encoded><![CDATA[<p>I had written a post entitled &#8217;simulating an exchange&#8217; which spoke a bit about the issues in writing a simulator.  It&#8217;s a complex-ish piece of software, and can really be a mess as you try to support conditional and contingent orders.  Supporting different data frequencies/qualities also adds complexity.  If I had it to do over again, I&#8217;d focus on ensuring I had very good quality data treated uniformly and the simulator would simplify significantly.</p>
<p>I&#8217;ve managed to avoid refactoring that code for a longish while now, but when I do I&#8217;ll try to identify some interesting characteristics to share about it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-5276</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 20 Aug 2009 18:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-5276</guid>
		<description>I&#039;m not sure I would have anything to show, my stuff is C++/interface based, I basically have a series of &#039;mix-in&#039; classes which perform different services (result tracking, indicator containers) which form a basic strategy. I have the abstract &#039;trading platform&#039; concept currently implemented as FIX (like you), feel free to ask me about anything in particular. The thing which interests me most about your setup is the &#039;Exchange Simulator&#039;, do you mind talking more about how that works?</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure I would have anything to show, my stuff is C++/interface based, I basically have a series of &#8216;mix-in&#8217; classes which perform different services (result tracking, indicator containers) which form a basic strategy. I have the abstract &#8216;trading platform&#8217; concept currently implemented as FIX (like you), feel free to ask me about anything in particular. The thing which interests me most about your setup is the &#8216;Exchange Simulator&#8217;, do you mind talking more about how that works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tito</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-5266</link>
		<dc:creator>tito</dc:creator>
		<pubDate>Thu, 20 Aug 2009 12:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-5266</guid>
		<description>Thanks - glad you enjoyed it.  If you have any interesting innovations in your system I&#039;d like to hear about them...</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; glad you enjoyed it.  If you have any interesting innovations in your system I&#8217;d like to hear about them&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://www.puppetmastertrading.com/blog/2009/08/19/containing-a-strategy/comment-page-1/#comment-5258</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 20 Aug 2009 04:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.puppetmastertrading.com/blog/?p=543#comment-5258</guid>
		<description>Nice read, my project is just about at it&#039;s one year anniversary, it sounds very similar in some ways to what you have done. The hardest part with real-time programs is always the testing, it may look like it&#039;s working but...

Your blog is always interesting, keep up the good posts!</description>
		<content:encoded><![CDATA[<p>Nice read, my project is just about at it&#8217;s one year anniversary, it sounds very similar in some ways to what you have done. The hardest part with real-time programs is always the testing, it may look like it&#8217;s working but&#8230;</p>
<p>Your blog is always interesting, keep up the good posts!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
