<?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/"
	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>moolala.org</title>
	<atom:link href="http://moolaladotorg.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://moolaladotorg.wordpress.com</link>
	<description>baby steps in stock trading</description>
	<lastBuildDate>Wed, 30 Apr 2008 21:30:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='moolaladotorg.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>moolala.org</title>
		<link>http://moolaladotorg.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://moolaladotorg.wordpress.com/osd.xml" title="moolala.org" />
	<atom:link rel='hub' href='http://moolaladotorg.wordpress.com/?pushpress=hub'/>
		<item>
		<title>thinkScript: MACD Lines and Histogram</title>
		<link>http://moolaladotorg.wordpress.com/2008/04/30/thinkscript-macd-lines-and-histogram/</link>
		<comments>http://moolaladotorg.wordpress.com/2008/04/30/thinkscript-macd-lines-and-histogram/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 21:30:21 +0000</pubDate>
		<dc:creator>moolaladotorg</dc:creator>
				<category><![CDATA[Technical Analysis]]></category>

		<guid isPermaLink="false">http://moolaladotorg.wordpress.com/2008/04/30/thinkscript-macd-lines-and-histogram/</guid>
		<description><![CDATA[As far as I can see, the default studies in thinkorswim does not include one where both the MACD lines and histogram are plotted on the same pane. I&#8217;ve simply combined the code from the two studies. &#160; # MACD Lines and Histogram # Author: moolala.org # Date: 04/23/2008 declare lower; input fastLength = 12; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=15&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As far as I can see, the default studies in thinkorswim does not include one where both the MACD lines and histogram are plotted on the same pane. I&#8217;ve simply combined the code from the two studies.</p>
<p>&nbsp;<a href="http://moolaladotorg.files.wordpress.com/2008/04/thinkscript-macd-lines-histogram-combined.png"><img style="border-width:0;" height="119" alt="thinkscript-macd-lines-histogram-combined" src="http://moolaladotorg.files.wordpress.com/2008/04/thinkscript-macd-lines-histogram-combined-thumb.png?w=453&#038;h=119" width="453" border="0"></a></p>
<p><span id="more-15"></span>
<div>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"># MACD Lines and Histogram
# Author: moolala.org
# Date: 04/23/2008

declare lower;

input fastLength = 12;
input slowLength = 26;
input MACDLength = 9;

def fastAvg = Ema2(data = close, <span style="color:#006080;">"smoothing factor"</span> = 2 / (1 + fastLength));

def slowAvg = Ema2(data = close, <span style="color:#006080;">"smoothing factor"</span> = 2 / (1 + slowLength));

plot Value = fastAvg - slowAvg;

def nextAvg = ExpAverage(data = Value, MACDLength);

plot Avg = nextAvg[1];
plot ZeroLine = 0;

Avg.SetDefaultColor(Color.Red);
Value.SetDefaultColor(Color.White);
ZeroLine.SetDefaultColor(GetColor(5));

plot Diff = <span style="color:#0000ff;">value</span> - nextAvg[1];

diff.AssignValueColor(<span style="color:#0000ff;">if</span> Diff &gt;= 0 then Color.UPTICK <span style="color:#0000ff;">else</span> Color.DOWNTICK);
Diff.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);</pre>
</div>
<div>&nbsp;</div>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:63b3f63a-af4a-4023-b590-daedaf27b833" style="display:inline;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/thinkScript" rel="tag">thinkScript</a>,<a href="http://technorati.com/tags/thinkorswim" rel="tag">thinkorswim</a>,<a href="http://technorati.com/tags/technical%20analysis" rel="tag">technical analysis</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/moolaladotorg.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/moolaladotorg.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moolaladotorg.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moolaladotorg.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moolaladotorg.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moolaladotorg.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moolaladotorg.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moolaladotorg.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moolaladotorg.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moolaladotorg.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=15&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moolaladotorg.wordpress.com/2008/04/30/thinkscript-macd-lines-and-histogram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c4210ec42002aeb100e01fb319d7cce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moolaladotorg</media:title>
		</media:content>

		<media:content url="http://moolaladotorg.files.wordpress.com/2008/04/thinkscript-macd-lines-histogram-combined-thumb.png" medium="image">
			<media:title type="html">thinkscript-macd-lines-histogram-combined</media:title>
		</media:content>
	</item>
		<item>
		<title>thinkScript: EMA Channel</title>
		<link>http://moolaladotorg.wordpress.com/2008/04/27/thinkscript-ema-channel/</link>
		<comments>http://moolaladotorg.wordpress.com/2008/04/27/thinkscript-ema-channel/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 17:33:22 +0000</pubDate>
		<dc:creator>moolaladotorg</dc:creator>
				<category><![CDATA[Technical Analysis]]></category>

		<guid isPermaLink="false">http://moolaladotorg.wordpress.com/2008/04/27/thinkscript-ema-channel/</guid>
		<description><![CDATA[This is a rather simple study/indicator, so I hope I just didn&#8217;t miss seeing it in the list of predefined studies. Basically, it consists of two channel lines drawn at a percentage above and below the EMA centerline. Again, Dr. Alexander Elder recommends this over the simple moving average channel. Although, in a pinch, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=12&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a rather simple study/indicator, so I hope I just didn&#8217;t miss seeing it in the list of predefined studies. Basically, it consists of two channel lines drawn at a percentage above and below the EMA centerline. Again, Dr. Alexander Elder recommends this over the simple moving average channel. Although, in a pinch, the SMA channel works just fine.</p>
<p><a href="http://moolaladotorg.files.wordpress.com/2008/04/thinkscriptemachannel.png"><img style="border-width:0;" height="299" alt="thinkscript-ema-channel" src="http://moolaladotorg.files.wordpress.com/2008/04/thinkscriptemachannel-thumb.png?w=484&#038;h=299" width="484" border="0"></a></p>
</p>
<p><span id="more-12"></span>
</p>
<div>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"># EMA Channel
# Author: moolala.org
# Date: 2008/04/23

input price = close;
input period = 22;
input offset = 0.01;

plot midline = ExpAverage(data = price, length = period);
midline.setDefaultColor(Color.Gray);

plot lowerBand = midline - (midline * offset);
lowerBand.setDefaultColor(Color.Blue);

plot UpperBand = midline + (midline * offset);
UpperBand.setDefaultColor(Color.Blue); </pre>
</div>
<p>&nbsp;</p>
<p>As for input settings, the period is the number of bars back that is used to calculate the EMA. Offset is the multiple or percentage of the calculated EMA away from the center EMA to draw your channel lines. Here are my settings for my three favorite time frames:</p>
<p>Weekly</p>
<blockquote>
<p>Period: 26, Offset: 0.2</p>
</blockquote>
<p>Daily</p>
<blockquote>
<p>Period: 22, Offset: 0.1</p>
</blockquote>
<p>5 Minute</p>
<blockquote>
<p>Period: 12, Offset: 0.006</p>
</blockquote>
<p>&nbsp;</p>
<p>The offset will vary depending on the EMA value. So stocks with here prices will differ from stocks with lower prices. I personally don&#8217;t tweak the offset all that often. Close is good enough for me. The goal is to have the EMA channel encapsulate about 95% of all the visible bars.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:52d1552b-5b0b-419c-aa3e-f81bed933383" style="display:inline;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/thinkscript" rel="tag">thinkscript</a>,<a href="http://technorati.com/tags/thinkorswim" rel="tag">thinkorswim</a>,<a href="http://technorati.com/tags/technical%20analysis" rel="tag">technical analysis</a>,<a href="http://technorati.com/tags/alexander%20elder" rel="tag">alexander elder</a>,<a href="http://technorati.com/tags/ema%20channel" rel="tag">ema channel</a>,<a href="http://technorati.com/tags/trading" rel="tag">trading</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/moolaladotorg.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/moolaladotorg.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moolaladotorg.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moolaladotorg.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moolaladotorg.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moolaladotorg.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moolaladotorg.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moolaladotorg.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moolaladotorg.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moolaladotorg.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=12&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moolaladotorg.wordpress.com/2008/04/27/thinkscript-ema-channel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c4210ec42002aeb100e01fb319d7cce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moolaladotorg</media:title>
		</media:content>

		<media:content url="http://moolaladotorg.files.wordpress.com/2008/04/thinkscriptemachannel-thumb.png" medium="image">
			<media:title type="html">thinkscript-ema-channel</media:title>
		</media:content>
	</item>
		<item>
		<title>thinkScript: Impulse Study for Charts</title>
		<link>http://moolaladotorg.wordpress.com/2008/04/23/thinkscript-impulse-study-for-charts/</link>
		<comments>http://moolaladotorg.wordpress.com/2008/04/23/thinkscript-impulse-study-for-charts/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 22:36:45 +0000</pubDate>
		<dc:creator>moolaladotorg</dc:creator>
				<category><![CDATA[Technical Analysis]]></category>

		<guid isPermaLink="false">http://moolaladotorg.wordpress.com/2008/04/23/thinkscript-impulse-study-for-charts/</guid>
		<description><![CDATA[The Impulse indicator, as defined by Dr. Alexander Elder in &#8220;Come Into My Trading Room&#8221;, helps you know when it is fairly safe to enter a trade. It relies on a exponential moving average and the MACD-Histogram. If both the EMA and MACD-H is trending up, the Impulse will be a green point above the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=5&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471225347%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471225347%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img style="margin:0 0 15px 15px;" height="79" src="http://ecx.images-amazon.com/images/I/51E4V5M9BSL._SL75_.jpg" width="52" align="right" border="1"></a>The Impulse indicator, as defined by Dr. Alexander Elder in &#8220;Come Into My Trading Room&#8221;, helps you know when it is fairly safe to enter a trade. It relies on a exponential moving average and the MACD-Histogram.</p>
<p>If both the EMA and MACD-H is trending up, the Impulse will be a <font color="#008000">green</font> point above the price bar. If both the EMA and MACD-H is trending down, then the Impulse will be a <font color="#ff0000">red</font> point below the price bar. If the EMA is trending up and the MACD-H is trending down, the Impulse will be a <font color="#0000ff">blue</font> point above the price bar. And if the EMA is trending down and the MACD-H is trending up, the Impulse will be a <font color="#0000ff">blue</font> point below the price bar.</p>
<p><a href="http://moolaladotorg.files.wordpress.com/2008/04/thinkscript-impulse-sample1.png"><img style="border-width:0;" height="267" alt="thinkscript_impulse_sample" src="http://moolaladotorg.files.wordpress.com/2008/04/thinkscript-impulse-sample-thumb1.png?w=467&#038;h=267" width="467" border="0"></a></p>
<p><span id="more-5"></span>
<p>I prefer to have the price bars reflect the impulse colors; however, thinkScript does not have that capability (or I haven&#8217;t found it yet). Here&#8217;s the script: </p>
<div class="csharpcode-wrapper">
<div>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;font-family:consolas, 'Courier New', courier, monospace;background-color:#f4f4f4;border-style:none;margin:0;padding:0;"># Impuse Indicator
# Author: moolala.org
# Date: 2008/04/23

input offset = 0.25;
input emaPeriod = 13;

def ema = ExpAverage(data = close, length = emaPeriod);
def hist = reference MACDHistogram.Diff;

plot impulse =
    <span style="color:#0000ff;">if</span> (ema &gt; ema[1] &amp;&amp; hist &gt; hist[1]) then
        high + offset
    <span style="color:#0000ff;">else</span> <span style="color:#0000ff;">if</span> (ema &lt; ema[1] &amp;&amp; hist &lt; hist[1]) then
        low - offset
    <span style="color:#0000ff;">else</span> <span style="color:#0000ff;">if</span> (ema &gt; ema[1] &amp;&amp; hist &lt; hist[1]) then
        high + offset
    <span style="color:#0000ff;">else</span>
        low - offset;

impulse.SetPaintingStrategy(PaintingStrategy.POINTS);
impulse.assignValueColor(
    <span style="color:#0000ff;">if</span> ema &gt; ema[1] &amp;&amp; hist &gt; hist[1] then
     Color.UPTICK
    <span style="color:#0000ff;">else</span> <span style="color:#0000ff;">if</span> ema &lt; ema[1] &amp;&amp; hist &lt; hist[1] then
     Color.DOWNTICK
    <span style="color:#0000ff;">else</span> <span style="color:#0000ff;">if</span> ema &gt; ema[1] &amp;&amp; hist &lt; hist[1] then
     Color.BLUE
    <span style="color:#0000ff;">else</span>
     Color.BLUE); </pre>
</div>
</div>
<p>&nbsp;</p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471225347%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471225347%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/51E4V5M9BSL._SL75_.jpg" border="1"></a></td>
<td valign="top"><b>Come Into My Trading Room: A Complete Guide to Trading</b><br />by Alexander Elder </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471225347%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471225347%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></p>
</td>
</tr>
</tbody>
</table>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c80f7a0c-3f68-4588-8c05-e7a8f1934f86" style="display:inline;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/thinkorswim" rel="tag">thinkorswim</a>,<a href="http://technorati.com/tags/thinkscript" rel="tag">thinkscript</a>,<a href="http://technorati.com/tags/alexander%20elder" rel="tag">alexander elder</a>,<a href="http://technorati.com/tags/impulse" rel="tag">impulse</a>,<a href="http://technorati.com/tags/trading" rel="tag">trading</a>,<a href="http://technorati.com/tags/technical%20analysis" rel="tag">technical analysis</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/moolaladotorg.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/moolaladotorg.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moolaladotorg.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moolaladotorg.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moolaladotorg.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moolaladotorg.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moolaladotorg.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moolaladotorg.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moolaladotorg.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moolaladotorg.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=5&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moolaladotorg.wordpress.com/2008/04/23/thinkscript-impulse-study-for-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c4210ec42002aeb100e01fb319d7cce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moolaladotorg</media:title>
		</media:content>

		<media:content url="http://ecx.images-amazon.com/images/I/51E4V5M9BSL._SL75_.jpg" medium="image" />

		<media:content url="http://moolaladotorg.files.wordpress.com/2008/04/thinkscript-impulse-sample-thumb1.png" medium="image">
			<media:title type="html">thinkscript_impulse_sample</media:title>
		</media:content>

		<media:content url="http://ecx.images-amazon.com/images/I/51E4V5M9BSL._SL75_.jpg" medium="image" />
	</item>
		<item>
		<title>Getting wet with thinkorswim</title>
		<link>http://moolaladotorg.wordpress.com/2008/04/18/getting-wet-with-thinkorswim/</link>
		<comments>http://moolaladotorg.wordpress.com/2008/04/18/getting-wet-with-thinkorswim/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 16:25:16 +0000</pubDate>
		<dc:creator>moolaladotorg</dc:creator>
				<category><![CDATA[Brokerages]]></category>

		<guid isPermaLink="false">http://moolaladotorg.wordpress.com/2008/04/18/getting-wet-with-thinkorswim/</guid>
		<description><![CDATA[Last week, while looking for a brokerage to setup my Roth IRA, I stumbled upon a new discount brokerage, thinkorswim. I haven&#8217;t&#160; setup my Roth with them yet, but I did register for a free paperMoney account and downloaded their desktop software. I also downloaded thinkAnywhere, which is a Java-based application for Windows Mobile. From [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=3&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week, while looking for a brokerage to setup my Roth IRA, I stumbled upon a new discount brokerage, <a href="http://www.thinkorswim.com/">thinkorswim</a>. I haven&#8217;t&nbsp; setup my Roth with them yet, but I did register for a free paperMoney account and downloaded their desktop software. I also downloaded thinkAnywhere, which is a Java-based application for Windows Mobile.</p>
<p>From the couple days I&#8217;ve had it, I am very impressed with all the tools and data you have accessed to. When I first saw what TOS offered in their desktop software, I was blown away. I currently only have trading accounts with Zecco and Interactive Brokers, so that may have something to do with my reaction. (If you are familiar with either, you can probably tell that I was looking for the cheapest of the cheap when I signed up for those two. And you do get what you pay for in those two cases.)&nbsp; </p>
<p><span id="more-3"></span>
<p>With TOS, I have two kinds of charting modules: Charts and Prophet.net. I have company news that are quickly retrieved. I have CNBC video updates throughout the day. And on top of that, their data feed seems to be real time for the charts. I don&#8217;t know if this is an &#8220;accident&#8221; or a first 30 day trial kind of thing, but whatever it is, I am happy to finally get real time intra-day charts. I can finally apply my Elder indicators (or studies as TOS calls them) via thinkScript. Speaking of which, it turns out that I only needed to write the impulse indicators. The Force Index and Elder ray studies were already available.</p>
<p>Now I do have several gripes about thinkorswim. They are not major gripes, but they are roadblocks during my first hours of use. One, you can&#8217;t customize the charts colors too much, such as the background and the price bar colors. I prefer to have my price bars reflect what the Impulse indicator: green, blue, and red. (Green when EMA and MACD-H are both trending up, blue for opposing directions, and red when both are trending down.) This is what I have in NinjaTrader (which by the way is another free but good charting software).</p>
<p>The other issue I had was that I couldn&#8217;t even find documentation about thinkScript or any reference to it at all. I googled with several different key phrases, but couldn&#8217;t find any reference to it. Either I was not versed enough with the different terminologies or TOS just doesn&#8217;t market this feature enough.</p>
<p>Lastly, I am very impressed with the other options you have as far as trading interfaces go. Aside from the desktop, you have thinkAnywhere for PDAs, thinkMobile for phones, and a web interface. I greatly appreciate the thinkAnywhere because that allows me to check quotes without using a web application. (I hate refreshing the browser on my phone.)</p>
<p>That&#8217;s it for now. I plan on setting up my IRA with thinkorswim once I can meet the minimum $3,000 balance. In the meantime, I will paper trade and use the intra-day charts on TOS.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:d6b20b91-0b70-4226-a903-4e9550b94416" style="display:inline;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/stocks" rel="tag">stocks</a>,<a href="http://technorati.com/tags/trading" rel="tag">trading</a>,<a href="http://technorati.com/tags/discount%20brokerages" rel="tag">discount brokerages</a>,<a href="http://technorati.com/tags/thinkorswim" rel="tag">thinkorswim</a>,<a href="http://technorati.com/tags/zecco" rel="tag">zecco</a>,<a href="http://technorati.com/tags/interactive%20brokers" rel="tag">interactive brokers</a>,<a href="http://technorati.com/tags/roth%20ira" rel="tag">roth ira</a>,<a href="http://technorati.com/tags/investing" rel="tag">investing</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/moolaladotorg.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/moolaladotorg.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moolaladotorg.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moolaladotorg.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moolaladotorg.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moolaladotorg.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moolaladotorg.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moolaladotorg.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moolaladotorg.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moolaladotorg.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=3&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moolaladotorg.wordpress.com/2008/04/18/getting-wet-with-thinkorswim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c4210ec42002aeb100e01fb319d7cce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moolaladotorg</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Live Writer</title>
		<link>http://moolaladotorg.wordpress.com/2008/04/17/windows-live-writer/</link>
		<comments>http://moolaladotorg.wordpress.com/2008/04/17/windows-live-writer/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 16:27:11 +0000</pubDate>
		<dc:creator>moolaladotorg</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://moolaladotorg.wordpress.com/2008/04/17/windows-live-writer/</guid>
		<description><![CDATA[I don&#8217;t blog. It&#8217;s not because I don&#8217;t have time. It&#8217;s not that I don&#8217;t like the idea of blogging or having a blog. I have tried several times over the past couple years to start and maintain a blog; however, I only manage to get a few posts up before I lose interest (see [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=4&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t blog. It&#8217;s not because I don&#8217;t have time. It&#8217;s not that I don&#8217;t like the idea of blogging or having a blog. I have tried several times over the past couple years to start and maintain a blog; however, I only manage to get a few posts up before I lose interest (see <a href="http://www.surpluscode.com/">SurplusCode</a>).</p>
<p>In analyzing my failed attempts to be a blogger, I believe I have found two main reasons why I don&#8217;t succeed at blogging. One, <strong>I hate to write</strong>. Well, to be more exact, I have the fear of not writing well. I have this strange inner feeling that someone is always critiquing me and that makes me want to write perfect blog posts. And whenever you have perfection as the ultimate, each keystroke comes further and further apart. In fact, I probably use the backspace and delete keys more often than any other key. Sad, but true.</p>
<p><span id="more-4"></span>
<p>The second reason I failed at maintaining a blog is that <strong>I didn&#8217;t agree with the web user interfaces</strong> to input my thoughts. I hate the idea of not being able to save a draft, do spell checks, do undo and redo, and many other features that you have in a desktop application such as Word or Outlook. As a matter of fact, I compare my experiences with web-based blogging interfaces to these two previously mentioned Office applications because that is where I type the most (aside from Visual Studio), if I had to type them that is. I will say that newer versions of these blogging engines and web sites do have better UIs than when I looked into blogging (thanks to Ajax); however, I still prefer a good desktop application over a great web app any day.</p>
<p>Well, long story short, it is going to take a while before I overcome reason one and my fear of not being perfect. English is my main language, but my second language nonetheless. So I just have to come to grips with that fact.</p>
<p>As for reason number two, I think I may have found the answer with <a href="http://windowslivewriter.spaces.live.com/blog/cns!D85741BB5E0BE8AA!174.entry">Windows Live Writer</a>.</p>
<p>As I am typing, I find myself looking forward to blogging. I now have a desktop app that I can fire right up and start typing. I don&#8217;t have open up a web browser and log into some web site. I don&#8217;t even need an Internet connection to write my drafts. I also get all the other features I listed as missing previously, mainly the ability to save drafts. I also get a few other expected features of a document producing application: formatting, multiple views, attaching objects, state-related preferences and options.</p>
<p>Since this is my first post via Windows Live Writer, I won&#8217;t give a full recommendation; however, so far so good. I am also looking forward to using Windows Live Writer SDKs to integrate with the Trading Manager that I am writing.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4f6f7a6c-8b56-4092-bc8d-0942baf3fce9" style="display:inline;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/Windows%20Live%20Writer" rel="tag">Windows Live Writer</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/moolaladotorg.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/moolaladotorg.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moolaladotorg.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moolaladotorg.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moolaladotorg.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moolaladotorg.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moolaladotorg.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moolaladotorg.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moolaladotorg.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moolaladotorg.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moolaladotorg.wordpress.com&amp;blog=3548662&amp;post=4&amp;subd=moolaladotorg&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moolaladotorg.wordpress.com/2008/04/17/windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c4210ec42002aeb100e01fb319d7cce?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moolaladotorg</media:title>
		</media:content>
	</item>
	</channel>
</rss>
