<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>wallstreetteachers.com Blog</title>
	<atom:link href="http://wallstreetteachers.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://wallstreetteachers.com/blog</link>
	<description>Investing wisely requires an understanding of technical analysis that's not dependent on whims.</description>
	<lastBuildDate>Tue, 24 Feb 2009 17:18:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>UPDATED TOS TEMPLATES</title>
		<link>http://wallstreetteachers.com/blog/2009/02/24/updated-tos-templates/</link>
		<comments>http://wallstreetteachers.com/blog/2009/02/24/updated-tos-templates/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 17:18:31 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2009/02/24/updated-tos-templates/</guid>
		<description><![CDATA[Version:0.9 StartHTML:-1 EndHTML:-1 StartFragment:0000000111 EndFragment:0000006074 
12:08 MS: SB Code W/ 50 line below:       # # Study: FW_SnapBack # # Adapted from ToS CCI and RSI_EMA studies, # and configured as used by David Elliott as of 1/7/09. # # Mostly copywrite thinkorswim, inc. (2007) # # Modifications by ToS [...]]]></description>
			<content:encoded><![CDATA[<p>Version:0.9 StartHTML:-1 EndHTML:-1 StartFragment:0000000111 EndFragment:0000006074 <!--StartFragment--></p>
<pre>12:08 <strong>MS</strong>: <strong>SB Code W/ 50 line below:       # </strong><strong># Study: FW_SnapBack </strong><strong># </strong><strong># Adapted from ToS CCI and RSI_EMA studies, </strong><strong># and configured as used by David Elliott as of 1/7/09. </strong><strong># </strong><strong># Mostly copywrite thinkorswim, inc. (2007) </strong><strong># </strong><strong># Modifications by ToS User: davidinc (david135@pc3i.com) </strong><strong># If you find any problems please let me know and refer </strong><strong># to the version number and date. Thanks. </strong><strong># </strong><strong># Revision history: </strong><strong># Vers Date        Change Descripton </strong><strong># ---- ---------   ----------------- </strong><strong>#  0.0 2009-01-06  Original </strong><strong>#  0.1 2009-01-12  Updated RSI section with code provided by kmktroy. </strong><strong>#  0.2 2009-01-12  Updated RSI section with code provided by Sidewinder747 </strong><strong># </strong><strong>declare lower; </strong><strong>declare all_for_one; </strong><strong> </strong><strong>input smoothingType = 1; </strong><strong> </strong><strong>def   over_bought   = 80; </strong><strong>def   over_sold     = 20; </strong><strong>def   priceH        = high; </strong><strong>def   priceL        = low; </strong><strong>def   priceC        = close; </strong><strong> </strong><strong>def KPeriod_0211 =  2; def DPeriod_0211 = 1; def slowing_period_0211 = 1; </strong><strong>def KPeriod_0232 =  2; def DPeriod_0232 = 3; def slowing_period_0232 = 2; </strong><strong>def KPeriod_0533 =  5; def DPeriod_0533 = 3; def slowing_period_0533 = 3; </strong><strong>def KPeriod_0835 =  8; def DPeriod_0835 = 3; def slowing_period_0835 = 5; </strong><strong>def KPeriod_1735 = 17; def DPeriod_1735 = 3; def slowing_period_1735 = 5; </strong><strong>def KPeriod_4832 = 48; def DPeriod_4832 = 3; def slowing_period_4832 = 2; </strong><strong> </strong><strong>def c1_0211  = priceC - Lowest(priceL, KPeriod_0211); </strong><strong>def c1_0232  = priceC - Lowest(priceL, KPeriod_0232); </strong><strong>def c1_0533  = priceC - Lowest(priceL, KPeriod_0533); </strong><strong>def c1_0835  = priceC - Lowest(priceL, KPeriod_0835); </strong><strong>def c1_1735  = priceC - Lowest(priceL, KPeriod_1735); </strong><strong>def c1_4832  = priceC - Lowest(priceL, KPeriod_4832); </strong><strong> </strong><strong>def c2_0211 = Highest(priceH, KPeriod_0211) - Lowest(priceL, KPeriod_0211); </strong><strong>def c2_0232 = Highest(priceH, KPeriod_0232) - Lowest(priceL, KPeriod_0232); </strong><strong>def c2_0533 = Highest(priceH, KPeriod_0533) - Lowest(priceL, KPeriod_0533); </strong><strong>def c2_0835 = Highest(priceH, KPeriod_0835) - Lowest(priceL, KPeriod_0835); </strong><strong>def c2_1735 = Highest(priceH, KPeriod_1735) - Lowest(priceL, KPeriod_1735); </strong><strong>def c2_4832 = Highest(priceH, KPeriod_4832) - Lowest(priceL, KPeriod_4832); </strong><strong> </strong><strong>def FastK_0211 = c1_0211 /c2_0211 * 100; </strong><strong>def FastK_0232 = c1_0232 /c2_0232 * 100; </strong><strong>def FastK_0533 = c1_0533 /c2_0533 * 100; </strong><strong>def FastK_0835 = c1_0835 /c2_0835 * 100; </strong><strong>def FastK_1735 = c1_1735 /c2_1735 * 100; </strong><strong>def FastK_4832 = c1_4832 /c2_4832 * 100; </strong><strong> </strong><strong>plot FullK_4832; </strong><strong>plot FullK_1735; </strong><strong>plot FullK_0835; </strong><strong>plot FullK_0533; </strong><strong>plot FullK_0232; </strong><strong>plot FullK_0211; </strong><strong> </strong><strong>if smoothingType == 1 then </strong><strong>{ FullK_0211 = Average(FastK_0211, slowing_period_0211); </strong><strong>  FullK_0232 = Average(FastK_0232, slowing_period_0232); </strong><strong>  FullK_0533 = Average(FastK_0533, slowing_period_0533); </strong><strong>  FullK_0835 = Average(FastK_0835, slowing_period_0835); </strong><strong>  FullK_1735 = Average(FastK_1735, slowing_period_1735); </strong><strong>  FullK_4832 = Average(FastK_4832, slowing_period_4832); </strong><strong>} else { </strong><strong>  FullK_0211 = ExpAverage(FastK_0211, slowing_period_0211); </strong><strong>  FullK_0232 = ExpAverage(FastK_0232, slowing_period_0232); </strong><strong>  FullK_0533 = ExpAverage(FastK_0533, slowing_period_0533); </strong><strong>  FullK_0835 = ExpAverage(FastK_0835, slowing_period_0835); </strong><strong>  FullK_1735 = ExpAverage(FastK_1735, slowing_period_1735); </strong><strong>  FullK_4832 = ExpAverage(FastK_4832, slowing_period_4832); </strong><strong>} </strong><strong> </strong><strong>FullK_0211.SetDefaultColor(Color.White); FullK_0211.SetStyle(Curve.Short_Dash); </strong><strong>FullK_0232.SetDefaultColor(Color.White); </strong><strong>FullK_0533.SetDefaultColor(Color.Yellow); </strong><strong>FullK_0835.SetDefaultColor(Color.Green); </strong><strong>FullK_1735.SetDefaultColor(Color.Red); </strong><strong>FullK_4832.setDefaultColor(Color.Cyan); </strong><strong> </strong><strong>FullK_0211.SetLineWeight(1); </strong><strong>FullK_0232.SetLineWeight(1); </strong><strong>FullK_0533.SetLineWeight(1); </strong><strong>FullK_0835.SetLineWeight(1); </strong><strong>FullK_1735.SetLineWeight(1); </strong><strong>FullK_4832.SetLineWeight(1); </strong><strong> </strong><strong> </strong><strong># RSI snapback studies - this piece is courtesy of Sidewinder747. Thanks. </strong><strong># updated 1/12/09. </strong><strong> </strong><strong>input RSI_length = 2; </strong><strong> </strong><strong>def diff = if close > close[1] then close - close[1] else 0; </strong><strong>def diff2 = if close < close[1] then close[1] - close else 0; </strong><strong> </strong><strong>rec avg = compoundValue(1, 2 / (RSI_length + 1) * diff + (RSI_length - 1) / (RSI_length + 1) * avg[1], diff * 2 / (RSI_length + 1)); </strong><strong>rec avg2 = compoundValue(1, 2 / (RSI_length + 1) * diff2 + (RSI_length - 1) / (RSI_length + 1) * avg2[1], diff2 * 2 / (RSI_length + 1)); </strong><strong> </strong><strong>rec avgSMA = compoundValue(1, (avgSMA[1] + diff) / 2, diff); </strong><strong>rec avgSMA2 = compoundValue(1, (avgSMA2[1] + diff2) / 2, diff2); </strong><strong> </strong><strong>def value = if avg2 != 0 then 100 - 100 / (1 + avg / avg2) else 0; </strong><strong>def valueSMA = if avg2 != 0 then 100 - 100 / (1 + avgSMA / avgSMA2) else 0; </strong><strong> </strong><strong>plot RSI_EMA = ExpAverage(value, 2); </strong><strong>plot RSI_SMA = Average(valueSMA, 2); </strong><strong> </strong><strong>RSI_EMA.SetDefaultColor(Color.DARK_ORANGE); </strong><strong>RSI_EMA.SetLineWeight(1); </strong><strong>RSI_SMA.SetDefaultColor(Color.MAGENTA); </strong><strong>RSI_SMA.SetLineWeight(1); </strong><strong> </strong><strong>plot Zeroline = 50;Zeroline.setdefaultColor (color.GREEN);zeroline.setStyle (curve.SHORT_DASH);</strong></pre>
<p><!--EndFragment--></p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2009/02/24/updated-tos-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>THINKORSWIM STUDIES</title>
		<link>http://wallstreetteachers.com/blog/2009/02/17/thinkorswim-studies/</link>
		<comments>http://wallstreetteachers.com/blog/2009/02/17/thinkorswim-studies/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 15:56:47 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2009/02/17/thinkorswim-studies/</guid>
		<description><![CDATA[SNAP BACK WITH STOCH AND RSI STUDIES.
declare lower;
declare all_for_one;
input smoothingType = 1;
input length = 2;
def priceH = high;
def priceL = low;
def priceC = close;
def KPeriod48 = 48;
def DPeriod48 = 3;
def slowing48 = 2;
def KPeriod17 = 17;
def DPeriod17 = 3;
def slowing17 = 5;
def KPeriod8 = 8;
def DPeriod8 = 3;
def slowing8 = 5;
def KPeriod5 = 5;
def DPeriod5 [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>SNAP BACK WITH STOCH AND RSI STUDIES.</p>
<p></em></strong>declare lower;<br />
declare all_for_one;</p>
<p>input smoothingType = 1;<br />
input length = 2;</p>
<p>def priceH = high;<br />
def priceL = low;<br />
def priceC = close;</p>
<p>def KPeriod48 = 48;<br />
def DPeriod48 = 3;<br />
def slowing48 = 2;</p>
<p>def KPeriod17 = 17;<br />
def DPeriod17 = 3;<br />
def slowing17 = 5;</p>
<p>def KPeriod8 = 8;<br />
def DPeriod8 = 3;<br />
def slowing8 = 5;</p>
<p>def KPeriod5 = 5;<br />
def DPeriod5 = 3;<br />
def slowing5 = 3;</p>
<p>def KPeriod22 = 2;<br />
def DPeriod22 = 3;<br />
def slowing22 = 2;</p>
<p>def KPeriod211 = 2;<br />
def DPeriod211 = 1;<br />
def slowing211 = 1;<br />
#### Stoc48 ####<br />
def c148 = priceC &#8211; Lowest(priceL, KPeriod48);<br />
def c248 = Highest(priceH, KPeriod48) &#8211; Lowest(priceL, KPeriod48);<br />
def FastK48 = c148/c248*100;<br />
plot FullK48;<br />
if smoothingType == 1<br />
then {<br />
    FullK48 = Average(FastK48, slowing48);<br />
} else {<br />
    FullK48 = ExpAverage(FastK48, slowing48);<br />
}<br />
FullK48.setDefaultColor(Color.CYAN);<br />
FullK48.SetLineWeight(2);</p>
<p>#### Stoc17 ####<br />
def c117 = priceC &#8211; Lowest(priceL, KPeriod17);<br />
def c217 = Highest(priceH, KPeriod17) &#8211; Lowest(priceL, KPeriod17);<br />
def FastK17 = c117/c217*100;<br />
plot FullK17;<br />
if smoothingType == 1<br />
then {<br />
    FullK17 = Average(FastK17, slowing17);<br />
} else {<br />
    FullK17 = ExpAverage(FastK17, slowing17);<br />
}<br />
FullK17.setDefaultColor(Color.RED);<br />
FullK17.SetLineWeight(2);</p>
<p>#### Stoc8 ####<br />
def c18 = priceC &#8211; Lowest(priceL, KPeriod8);<br />
def c28 = Highest(priceH, KPeriod8) &#8211; Lowest(priceL, KPeriod8);<br />
def FastK8 = c18/c28*100;<br />
plot FullK8;<br />
if smoothingType == 1<br />
then {<br />
    FullK8 = Average(FastK8, slowing8);<br />
} else {<br />
    FullK8 = ExpAverage(FastK8, slowing8);<br />
}<br />
FullK8.setDefaultColor(Color.GREEN);<br />
FullK8.SetLineWeight(2);</p>
<p>#### Stoc5 ####<br />
def c15 = priceC &#8211; Lowest(priceL, KPeriod5);<br />
def c25 = Highest(priceH, KPeriod5) &#8211; Lowest(priceL, KPeriod5);<br />
def FastK5 = c15/c25*100;<br />
plot FullK5;<br />
if smoothingType == 1<br />
then {<br />
    FullK5 = Average(FastK5, slowing5);<br />
} else {<br />
    FullK5 = ExpAverage(FastK5, slowing5);<br />
}<br />
FullK5.setDefaultColor(Color.YELLOW);<br />
FullK5.SetLineWeight(2);</p>
<p>#### Stoc223 ####<br />
def c122 = priceC &#8211; Lowest(priceL, KPeriod22);<br />
def c222 = Highest(priceH, KPeriod22) &#8211; Lowest(priceL, KPeriod22);<br />
def FastK22 = c122/c222*100;<br />
plot FullK22;<br />
if smoothingType == 1<br />
then {<br />
    FullK22 = Average(FastK22, slowing22);<br />
} else {<br />
    FullK22 = ExpAverage(FastK22, slowing22);<br />
}<br />
FullK22.setDefaultColor(Color.WHITE);<br />
FullK22.SetLineWeight(2);</p>
<p>#### Stoc211 ####<br />
def c1211 = priceC &#8211; Lowest(priceL, KPeriod211);<br />
def c2211 = Highest(priceH, KPeriod211) &#8211; Lowest(priceL, KPeriod211);<br />
def FastK211 = c1211/c2211*100;<br />
plot FullK211;<br />
if smoothingType == 1<br />
then {<br />
    FullK211 = Average(FastK211, slowing211);<br />
} else {<br />
    FullK211 = ExpAverage(FastK211, slowing211);<br />
}<br />
FullK211.setDefaultColor(Color.WHITE);<br />
FullK211.SetStyle(Curve.SHORT_DASH);<br />
FullK211.SetLineWeight(1);</p>
<p>def diff = if close > close[1] then close &#8211; close[1] else 0;<br />
def diff2 = if close < close[1] then close[1] - close else 0;</p>
<p>rec avg = compoundValue(1, 2 / (length + 1) * diff + (length - 1) / (length + 1) * avg[1], diff * 2 / (length + 1));<br />
rec avg2 = compoundValue(1, 2 / (length + 1) * diff2 + (length - 1) / (length + 1) * avg2[1], diff2 * 2 / (length + 1));</p>
<p>rec avgSMA = compoundValue(1, (avgSMA[1] + diff) / 2, diff);<br />
rec avgSMA2 = compoundValue(1, (avgSMA2[1] + diff2) / 2, diff2);</p>
<p>def value = if avg2 != 0 then 100 - 100 / (1 + avg / avg2) else 0;<br />
def valueSMA = if avg2 != 0 then 100 - 100 / (1 + avgSMA / avgSMA2) else 0;</p>
<p>plot RSI_EMA = ExpAverage(value, 2);<br />
plot RSI_SMA = Average(valueSMA, 2);</p>
<p>RSI_EMA.SetDefaultColor(Color.DARK_ORANGE);<br />
RSI_EMA.SetLineWeight(2);<br />
RSI_SMA.SetDefaultColor(Color.MAGENTA);<br />
RSI_SMA.SetLineWeight(2);</p>
<p><strong>CCI STUDIES</p>
<p>declare lower;</strong></p>
<p><strong>input length05 = 5;<br />
input length20 = 20;<br />
input length50 = 50;<br />
input over_sold   = -100;<br />
input over_bought =  100;</strong></p>
<p><strong>def price = (high + low + close);<br />
def linDev05 = lindev(price, length05);<br />
def linDev20 = lindev(price, length20);<br />
def linDev50 = lindev(price, length50);</strong></p>
<p><strong>plot CCI05 = if linDev05 == 0 then 0 else (price &#8211; Average(price, length05)) / linDev05 / 0.015;<br />
plot CCI20 = if linDev20 == 0 then 0 else (price &#8211; Average(price, length20)) / linDev20 / 0.015;<br />
plot CCI50 = if linDev50 == 0 then 0 else (price &#8211; Average(price, length50)) / linDev50 / 0.015;</strong></p>
<p><strong>plot OverBought = over_bought;<br />
plot ZeroLine = 0;<br />
plot OverSold = over_sold;</strong></p>
<p><strong>CCI05.SetDefaultColor(Color.MAGENTA);<br />
CCI20.SetDefaultColor(Color.YELLOW);<br />
CCI50.SetDefaultColor(Color.CYAN);</strong></p>
<p><strong>Overbought.SetDefaultColor(GetColor(5));<br />
ZeroLine.SetDefaultColor(GetColor(5));<br />
Oversold.SetDefaultColor(GetColor(5));</p>
<p></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2009/02/17/thinkorswim-studies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Market Caution Day</title>
		<link>http://wallstreetteachers.com/blog/2006/10/05/market-caution-day/</link>
		<comments>http://wallstreetteachers.com/blog/2006/10/05/market-caution-day/#comments</comments>
		<pubDate>Thu, 05 Oct 2006 17:22:14 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2006/10/05/market-caution-day/</guid>
		<description><![CDATA[YESTERDAY&#8217;S MARKET CALL: The DJ-30 closed up, per our technical `Flats&#8221; indicators signal after a two day down dip and made a new high close. The QQQQ hit our upside target, 50 SMA hourly to the penny, and stalled yesterday and closed below the hourly 50 SMA. The Q&#8217;s today suggest another upside close on [...]]]></description>
			<content:encoded><![CDATA[<p>YESTERDAY&#8217;S MARKET CALL: The DJ-30 closed up, per our technical `Flats&#8221; indicators signal after a two day down dip and made a new high close. The QQQQ hit our upside target, 50 SMA hourly to the penny, and stalled yesterday and closed below the hourly 50 SMA. The Q&#8217;s today suggest another upside close on the daily charts. Q&#8217;s first resistance is the 40.50 then the 40.60</p>
<p>TODAY&#8217;S MARKET CALL: Again we had a good up day with the Q&#8217;s and SP- 500 finally kicking into high gear along with the DJ-30. Transports also showed up for this move. Momentum is to the upside but we will see correction days along the way and that is my job to point out those corrections to the trend. Today we are getting signals from the `VIX&#8217; that it is going to rally today which means the markets should see some selling as some volatility starts to show itself today. We also have some &#8220;Up volume&#8221; issues for todayindicating it too may want to correct. DJ-30 shows resistance at the 11,885 levels and supports coming in at 11,805. The DJ -30 has support on intra dips at 11,704 and resistance at 11,811 Most supports will come of the moving intra day moving 50 simple moving averages. QQQQ will see resistance at 41.50 and supports starting at 41.00 and 40.70</p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2006/10/05/market-caution-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://wallstreetteachers.com/blog/2006/09/26/7/</link>
		<comments>http://wallstreetteachers.com/blog/2006/09/26/7/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 16:45:50 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2006/09/26/7/</guid>
		<description><![CDATA[The DJ-30 did rally this morning to make a new high for the month of
September per our called up move this morning.
Since then it has retraced back down 50 points from the 11,642 high ( a
Monthly Pivot resistance)
Attempts to retest the highs should come again later this afternooon.
The QQQQ made a new high and is [...]]]></description>
			<content:encoded><![CDATA[<p>The DJ-30 did rally this morning to make a new high for the month of<br />
September per our called up move this morning.<br />
Since then it has retraced back down 50 points from the 11,642 high ( a<br />
Monthly Pivot resistance)<br />
Attempts to retest the highs should come again later this afternooon.</p>
<p>The QQQQ made a new high and is how back negative on the day leaving us<br />
with a new high Doji candlestick&#8230; a warning if we do not blow the<br />
doors off the recent highs.</p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2006/09/26/7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monday Sept  25, 06</title>
		<link>http://wallstreetteachers.com/blog/2006/09/25/monday-sept-25-06/</link>
		<comments>http://wallstreetteachers.com/blog/2006/09/25/monday-sept-25-06/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 13:29:53 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2006/09/25/monday-sept-25-06/</guid>
		<description><![CDATA[Market Commentary:
The market, DJ-30 closed down 25 points Friday at 11,508
Financial Indexes, SP-500, , QQQQ, , COMPQX, NYSE,
IWM, DJ-20 DJ-65, DJ-15 SMH, SOX down.
*************************
M.A.P. (Moving Average Price Pattern)
Overall Outlook. DJ-30 as reference.
ALL THREE TIME PERIODS = BULL
Long term, &#8211; Bull, DJ-30, (weekly above 50sma and above
200sma)
Medium Term: BULL ,( Above the 50 daily, And above [...]]]></description>
			<content:encoded><![CDATA[<p>Market Commentary:<br />
The market, DJ-30 closed down 25 points Friday at 11,508<br />
Financial Indexes, SP-500, , QQQQ, , COMPQX, NYSE,<br />
IWM, DJ-20 DJ-65, DJ-15 SMH, SOX down.<br />
*************************<br />
M.A.P. (Moving Average Price Pattern)<br />
Overall Outlook. DJ-30 as reference.</p>
<p>ALL THREE TIME PERIODS = BULL<br />
Long term, &#8211; Bull, DJ-30, (weekly above 50sma and above<br />
200sma)<br />
Medium Term: BULL ,( Above the 50 daily, And above 200 sma daily,<br />
11,171 IS DAILY CUT OFF )<br />
Short Term: BEAR (hourly BELOW 50sma and 200 sma).<br />
*********************************************************************<br />
********************<br />
EUROPE, London, Ireland, EARLY FALL SEMINARS, EMAIL TO GET ON<br />
LIST.</p>
<p>*********************************************************************<br />
**************<br />
@@@@@@@@@@@@@<br />
@@@@@@@@@<br />
**********<br />
FRIDAY&#8217;S MARKET CALL: We got a correction of over -100 points intra-<br />
day and a bounce in the last hour from 2 day sell flats. Again we<br />
did not find any selling for the daily charts, just a case of over<br />
bought for some internals.<br />
The DJ is below the hourly 50 so we would expect an automatic rally<br />
back to test it this morning,<br />
11,551. At the 50 sma we will se if there is strength for a rally<br />
back to yesterday&#8217;s highs.</p>
<p>*******************************************************************<br />
**<br />
********************************************************</p>
<p>TODAY&#8217;S MARKET CALL: The Friday sell-off went thru Thursday lows and<br />
found support at the 30 min 200 SMA..<br />
Our bounce Friday failed to reach the 30 min. or hourly 50 sma a<br />
target today for resistance on any up move.<br />
DJ resistance is 11,545, 11,550<br />
DJ downside targets for support come in at 11.455, 11,353. and<br />
11,262.<br />
QQQQ Upside resistance 40.10 and 40.20 with down side support<br />
targets at 39.57, 39.35 and 38.46.<br />
SP-500 Upside targets start at 1319.22 , 1320.24 with downside<br />
targets at 1311.47, 1309.55.</p>
<p>*********************************************************************<br />
********************************************************<br />
Big Picture:<br />
The DJ-30 daily is now above the 50 sma, and above the 200 sma.<br />
We have TAKEN OUT the August highs and made new September high<br />
without making new highs for the year yet.<br />
We are now faced with a double top from the earlier highs of the<br />
year.</p>
<p>*********************************************************************<br />
***</p>
<p>METALS MARKETS:</p>
<p>GOLD, Suggesting a down day today, Low Target low $582.00, $577.80</p>
<p>SILVER, Bounce day for silver yesterday and more today, Low Target<br />
$10.32</p>
<p>US DOLLAR, 85.48 upside target today Any bounce tests the 50 from<br />
below.</p>
<p>GOVERNMENT REPORTS</p>
<p>Earnings<br />
Company Name Symbol EPS Estimate Call<br />
WALGREEN CO WAG<br />
0.41<br />
N/A<br />
WOLSELEY PLC WOS<br />
N/A<br />
N/A<br />
JLG INDUSTRIES JLG<br />
0.42<br />
Call</p>
<p>more&#8230;</p>
<p>Economic<br />
Statistic For/Time Actual Prior<br />
Existing Home Sales<br />
Aug/10:00 AM &#8211; 6.33M<br />
more&#8230;</p>
<p>SOME PRE MARKET UP MOVERS<br />
ACOR<br />
WARR<br />
SPPI<br />
GPCB<br />
PHRM<br />
CHRS<br />
UAUA<br />
BIDU<br />
LRCX</p>
<p>SOME P[RE MARKET DOWN MOVERS<br />
TALK<br />
UHCP<br />
MCSS<br />
HEPH<br />
FNET<br />
OXGN<br />
SNDK<br />
SYMC</p>
<p>BULL KICKERS;<br />
WTSLA<br />
AV<br />
GTCB<br />
PVX<br />
AHO<br />
VVR<br />
HMY<br />
SWIR<br />
NTO</p>
<p>BULL ENGULFING<br />
SYNA<br />
PDU<br />
KR<br />
NXXI<br />
AIM<br />
BXC<br />
BRP</p>
<p>OPTIONABLE STOCKS WITH HIGH VOLUME<br />
TALK<br />
COGN<br />
GCO<br />
TRB<br />
PIR<br />
HYGS<br />
NYX<br />
PCLN<br />
BJ<br />
BELM<br />
TWTC<br />
LFC<br />
HOV<br />
STSI<br />
PALM<br />
BMHC<br />
GSS<br />
BKS</p>
<p>MOBO BREAKOUTS WITH A GAP OVER THE 50 SMA<br />
OSCI<br />
CMED<br />
AZK<br />
AH<br />
PAL<br />
BA<br />
PCG</p>
<p>SNAP BACK UP STOCKS<br />
MDC<br />
JDSA<br />
SPG<br />
CAL<br />
AT<br />
HEW<br />
TTC<br />
PFGC<br />
DJUS<br />
WRS<br />
S<br />
PMET<br />
AEL<br />
RIGL<br />
NFP</p>
<p>UTILITY STOCKS<br />
FPU<br />
EGR<br />
PCG<br />
UTL</p>
<p>DOWNWARD SIGNALLING STOCKS<br />
STOCKS WITH MULTIIPLE DAY SELL FLATS<br />
CMCSA<br />
CHKP<br />
XRAY<br />
PCAR<br />
SYMC<br />
QCOM</p>
<p>UPWARD SIGNALING STOCKS WITH BUY FLATS.<br />
NHD<br />
GENZ<br />
CMVT</p>
<p>BEAR KICKERS<br />
KOOL<br />
SUNW<br />
BDY<br />
KNDL<br />
OSI<br />
IRIS<br />
ISE<br />
SIGM<br />
ORCL<br />
EAC<br />
SYMN<br />
XCO<br />
AVII<br />
SWW<br />
JNPR<br />
LNG<br />
FRO</p>
<p>BEAR ENGULFING<br />
SYNM<br />
CTCI<br />
PTN<br />
HOS<br />
PLLL<br />
CRZO<br />
ACI<br />
SWN<br />
HAWK<br />
THE<br />
BJS<br />
SLAB<br />
GIGM</p>
<p>WANT WALLSTREETTEACHERS CLASS IN YOU TOWN ?? , CALL …<br />
407-719-2592</p>
<p>WallStreetTeachers.com is not a registered Investment Advisor or a<br />
Broker/Dealer and does not provide investment advice or<br />
recommendations.<br />
Subscribers to the Hotcomm.com site, the Yahoo site, and the<br />
TCNET &#8220;firstwave&#8221; club are advised that the information, opinions,<br />
and analysis included there are based in good faith on sources<br />
believed to be reliable, but no representation or warranty,<br />
expressed or implied, is made as to their accuracy, completeness, or<br />
correctness. Past performance is not necessarily indicative of the<br />
future performance of stocks posted in the &#8220;firstwave&#8221; club or<br />
`Hotcomm.com&#8217; site, or Yahoo site.<br />
Neither these postings nor the &#8220;Firstwave&#8221;<br />
chat, &#8220;Wallstreetteachers&#8221; `Hotcomm.com&#8217; site, or yahoo emails, nor<br />
any other information provided on our web sites or through any other<br />
communication constitutes a recommendation to buy or sell stocks, or<br />
any other investment. Investing involves the risk of loss and<br />
readers are urged to consult with their own independent financial<br />
advisors with respect to any investment.</p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2006/09/25/monday-sept-25-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WRITING  PCF&#8217;S FOR PIVOTS</title>
		<link>http://wallstreetteachers.com/blog/2006/09/24/writing-pcfs-for-pivots/</link>
		<comments>http://wallstreetteachers.com/blog/2006/09/24/writing-pcfs-for-pivots/#comments</comments>
		<pubDate>Sun, 24 Sep 2006 00:12:45 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2006/09/24/writing-pcfs-for-pivots/</guid>
		<description><![CDATA[Pivot Point Formulas For TCNet/TC2000
Daily calculations
Pivot Point Daily
((H + L + C) / 3)
S1D
((((H + L + C) / 3) * 2) &#8211; H)
S2D
((((H + L + C) / 3) &#8211; H) + L)
R1D
((((H + L + C) / 3) * 2) &#8211; L)
R2D
((((H + L + C) / 3) + H) &#8211; L)
Weekly Calculations [...]]]></description>
			<content:encoded><![CDATA[<p>Pivot Point Formulas For TCNet/TC2000</p>
<p>Daily calculations</p>
<p>Pivot Point Daily<br />
((H + L + C) / 3)</p>
<p>S1D<br />
((((H + L + C) / 3) * 2) &#8211; H)</p>
<p>S2D<br />
((((H + L + C) / 3) &#8211; H) + L)</p>
<p>R1D<br />
((((H + L + C) / 3) * 2) &#8211; L)</p>
<p>R2D<br />
((((H + L + C) / 3) + H) &#8211; L)</p>
<p>Weekly Calculations (Rolling calculations, so review on Friday after close for calendar week)</p>
<p>Pivot Point weekly<br />
((MAXH5 + MINL5 + C) / 3)</p>
<p>S1W<br />
((((MAXH5 + MINL5 + C) / 3) * 2) &#8211; MAXH5)</p>
<p>S2W<br />
((((MAXH5 + MINL5 + C) / 3) &#8211; MAXH5) + MINL5)</p>
<p>R1W<br />
((((MAXH5 + MINL5 + C) / 3) * 2) &#8211; MINL5)</p>
<p>R2W<br />
((((MAXH5 + MINL5 + C) / 3) + MAXH5) &#8211; MINL5)</p>
<p>Note:<br />
Only copy/paste the formulas. The PCF names are arbitrary and can be changed to your liking.</p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2006/09/24/writing-pcfs-for-pivots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Market Updates will pe posted here and in the Yahoo site.</title>
		<link>http://wallstreetteachers.com/blog/2006/09/24/market-updates-will-pe-posted-here-and-in-the-yahoo-site/</link>
		<comments>http://wallstreetteachers.com/blog/2006/09/24/market-updates-will-pe-posted-here-and-in-the-yahoo-site/#comments</comments>
		<pubDate>Sun, 24 Sep 2006 00:09:26 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2006/09/24/market-updates-will-pe-posted-here-and-in-the-yahoo-site/</guid>
		<description><![CDATA[I will be posteing here regularly now i have figured out how to use it
]]></description>
			<content:encoded><![CDATA[<p><strong>I will be posteing here regularly now i have figured out how to use it</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2006/09/24/market-updates-will-pe-posted-here-and-in-the-yahoo-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s almost time!</title>
		<link>http://wallstreetteachers.com/blog/2006/06/15/its-almost-time/</link>
		<comments>http://wallstreetteachers.com/blog/2006/06/15/its-almost-time/#comments</comments>
		<pubDate>Thu, 15 Jun 2006 04:03:38 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wallstreetteachers.com/blog/2006/06/15/its-almost-time/</guid>
		<description><![CDATA[The David Elliott Blog will begin SOON. Stay tuned!
]]></description>
			<content:encoded><![CDATA[<p>The David Elliott Blog will begin SOON. Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://wallstreetteachers.com/blog/2006/06/15/its-almost-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.978 seconds -->

