<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: The Wisdom of Art Cashin, and More StrategyDesk Tips</title>
	<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/</link>
	<description>Stocks, Options, Currencies and One Big Dummy</description>
	<pubDate>Fri, 21 Nov 2008 01:21:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Dinosaur Trader</title>
		<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1901</link>
		<author>Dinosaur Trader</author>
		<pubDate>Thu, 22 Mar 2007 15:50:52 +0000</pubDate>
		<guid>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1901</guid>
		<description>Great witty comment by Art. 

And I agree with your assessment of Rick Santelli. But I must admit that sometimes, I have no idea what the heck he's talking about...

Slow trading day...</description>
		<content:encoded><![CDATA[<p>Great witty comment by Art. </p>
<p>And I agree with your assessment of Rick Santelli. But I must admit that sometimes, I have no idea what the heck he&#8217;s talking about&#8230;</p>
<p>Slow trading day&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1815</link>
		<author>Will</author>
		<pubDate>Wed, 21 Mar 2007 02:11:00 +0000</pubDate>
		<guid>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1815</guid>
		<description>BNJ - So with the Bar[Minute,30] you're specifying &lt;strong&gt;to the minute&lt;/strong&gt; when the bar starts so you can distinguish between the  1100 and 1130 bars, for instance...  Simply Awesome!  Looks like we've just about got this "period-x high" thing whipped!

If we ever need the first 10-minute bar's high (what, 36 different statements?), and then use it as part of a larger formula where we have to repeat it a few times, I guess we'll end up testing the limits of how  many characters long a StrategyDesk formula can really be...

Oh, and as of tonight I've finally knocked out a fully-functional "Hammer" formula, and it was way hairier than I expected- check it out in the &lt;a href="http://dummyspots.com/SD_formulas.html" rel="nofollow" rel="nofollow" rel="nofollow"&gt;Formula Reference Chart&lt;/a&gt;.  Also I'll add your "first 30-minute high" formula.  Thanks so much for it!</description>
		<content:encoded><![CDATA[<p>BNJ - So with the Bar[Minute,30] you&#8217;re specifying <strong>to the minute</strong> when the bar starts so you can distinguish between the  1100 and 1130 bars, for instance&#8230;  Simply Awesome!  Looks like we&#8217;ve just about got this &#8220;period-x high&#8221; thing whipped!</p>
<p>If we ever need the first 10-minute bar&#8217;s high (what, 36 different statements?), and then use it as part of a larger formula where we have to repeat it a few times, I guess we&#8217;ll end up testing the limits of how  many characters long a StrategyDesk formula can really be&#8230;</p>
<p>Oh, and as of tonight I&#8217;ve finally knocked out a fully-functional &#8220;Hammer&#8221; formula, and it was way hairier than I expected- check it out in the <a href="http://dummyspots.com/SD_formulas.html" rel="nofollow" rel="nofollow" rel="nofollow">Formula Reference Chart</a>.  Also I&#8217;ll add your &#8220;first 30-minute high&#8221; formula.  Thanks so much for it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BNJ</title>
		<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1814</link>
		<author>BNJ</author>
		<pubDate>Wed, 21 Mar 2007 01:20:59 +0000</pubDate>
		<guid>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1814</guid>
		<description>Heh, yeah, that one took me a while to figure out. At first I was convinced that the SD example was fubar, but I finally figured out their approach, although it was quite a forensic exercise.

Based on the same techniques, I built this formula for "the high of the first 30 minutes." You'd think it'd be easier....

&lt;blockquote&gt;
Bar[High,30] * (Bar[Hour,30]=9) * (Bar[Minute,30]=30) +
Bar[High,30,1] * (Bar[Hour,30]=10) * (Bar[Minute,30]=0) +
Bar[High,30,2] * (Bar[Hour,30]=10) * (Bar[Minute,30]=30) +
Bar[High,30,3] * (Bar[Hour,30]=11) * (Bar[Minute,30]=0) +
Bar[High,30,4] * (Bar[Hour,30]=11) * (Bar[Minute,30]=30) +
Bar[High,30,5] * (Bar[Hour,30]=12) * (Bar[Minute,30]=0) +
Bar[High,30,6] * (Bar[Hour,30]=12) * (Bar[Minute,30]=30) +
Bar[High,30,7] * (Bar[Hour,30]=13) * (Bar[Minute,30]=0) +
Bar[High,30,8] * (Bar[Hour,30]=13) * (Bar[Minute,30]=30) +
Bar[High,30,9] * (Bar[Hour,30]=14) * (Bar[Minute,30]=0) +
Bar[High,30,10] * (Bar[Hour,30]=14) * (Bar[Minute,30]=30) +
Bar[High,30,11] * (Bar[Hour,30]=15) * (Bar[Minute,30]=0) +
Bar[High,30,12] * (Bar[Hour,30]=15) * (Bar[Minute,30]=30) 
&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>Heh, yeah, that one took me a while to figure out. At first I was convinced that the SD example was fubar, but I finally figured out their approach, although it was quite a forensic exercise.</p>
<p>Based on the same techniques, I built this formula for &#8220;the high of the first 30 minutes.&#8221; You&#8217;d think it&#8217;d be easier&#8230;.</p>
<blockquote><p>
Bar[High,30] * (Bar[Hour,30]=9) * (Bar[Minute,30]=30) +<br />
Bar[High,30,1] * (Bar[Hour,30]=10) * (Bar[Minute,30]=0) +<br />
Bar[High,30,2] * (Bar[Hour,30]=10) * (Bar[Minute,30]=30) +<br />
Bar[High,30,3] * (Bar[Hour,30]=11) * (Bar[Minute,30]=0) +<br />
Bar[High,30,4] * (Bar[Hour,30]=11) * (Bar[Minute,30]=30) +<br />
Bar[High,30,5] * (Bar[Hour,30]=12) * (Bar[Minute,30]=0) +<br />
Bar[High,30,6] * (Bar[Hour,30]=12) * (Bar[Minute,30]=30) +<br />
Bar[High,30,7] * (Bar[Hour,30]=13) * (Bar[Minute,30]=0) +<br />
Bar[High,30,8] * (Bar[Hour,30]=13) * (Bar[Minute,30]=30) +<br />
Bar[High,30,9] * (Bar[Hour,30]=14) * (Bar[Minute,30]=0) +<br />
Bar[High,30,10] * (Bar[Hour,30]=14) * (Bar[Minute,30]=30) +<br />
Bar[High,30,11] * (Bar[Hour,30]=15) * (Bar[Minute,30]=0) +<br />
Bar[High,30,12] * (Bar[Hour,30]=15) * (Bar[Minute,30]=30)
</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: LP</title>
		<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1806</link>
		<author>LP</author>
		<pubDate>Tue, 20 Mar 2007 12:07:03 +0000</pubDate>
		<guid>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1806</guid>
		<description>Gotta love that Art...he's one of the few straight shooters on that show...eveyone else is just a wall street puppet</description>
		<content:encoded><![CDATA[<p>Gotta love that Art&#8230;he&#8217;s one of the few straight shooters on that show&#8230;eveyone else is just a wall street puppet</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1805</link>
		<author>Will</author>
		<pubDate>Tue, 20 Mar 2007 12:00:22 +0000</pubDate>
		<guid>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1805</guid>
		<description>jaybird- No, this one is from the only "time of day" hint AMTD gives us in their "documentation", and the fact that it doesn't seem to work as advertised is one of the questions I've been trying to sort out -- however, it is the starting point for the Opening Range formula we're pursuing.  I'll post that one in the comments below your original question in the other post when I can get it sorted out (got in late last night and am headed back to work right now, so haven't been able to work on it).  Hope to have something for ya soon, though.  Thanks.</description>
		<content:encoded><![CDATA[<p>jaybird- No, this one is from the only &#8220;time of day&#8221; hint AMTD gives us in their &#8220;documentation&#8221;, and the fact that it doesn&#8217;t seem to work as advertised is one of the questions I&#8217;ve been trying to sort out &#8212; however, it is the starting point for the Opening Range formula we&#8217;re pursuing.  I&#8217;ll post that one in the comments below your original question in the other post when I can get it sorted out (got in late last night and am headed back to work right now, so haven&#8217;t been able to work on it).  Hope to have something for ya soon, though.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jaybird</title>
		<link>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1803</link>
		<author>jaybird</author>
		<pubDate>Tue, 20 Mar 2007 09:05:32 +0000</pubDate>
		<guid>http://dummyspots.com/2007/03/the-wisdom-of-art-cashin-and-more-strategydesk-tips/#comment-1803</guid>
		<description>so is this formula the one for the first hour? i'm still confused about the bars and which to put in.  thanks</description>
		<content:encoded><![CDATA[<p>so is this formula the one for the first hour? i&#8217;m still confused about the bars and which to put in.  thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
