<?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: How To</title>
	<atom:link href="http://www.thinkscripter.com/get-em-all-for-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkscripter.com</link>
	<description>Custom ThinkScript Indicator Scripts for thinkorswim</description>
	<lastBuildDate>Wed, 28 Jul 2010 12:44:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/get-em-all-for-20/comment-page-1/#comment-2559</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Tue, 27 Jul 2010 17:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?page_id=456#comment-2559</guid>
		<description>Go to your studies panel in TOS. Select &quot;New Study&quot;. In the code window that pops up, delete the default line of code &quot;plot data=close;&quot; and paste in the code from this site. Change the name at the top to something like &quot;TS_DayRange&quot; and hit &quot;OK&quot;. 
-Eric</description>
		<content:encoded><![CDATA[<p>Go to your studies panel in TOS. Select &#8220;New Study&#8221;. In the code window that pops up, delete the default line of code &#8220;plot data=close;&#8221; and paste in the code from this site. Change the name at the top to something like &#8220;TS_DayRange&#8221; and hit &#8220;OK&#8221;.<br />
-Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.thinkscripter.com/get-em-all-for-20/comment-page-1/#comment-2558</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 27 Jul 2010 16:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?page_id=456#comment-2558</guid>
		<description>Greetings, can you tell me how to load the &quot;high/load/mid&quot; indicator into TOS? I see all this text, but not sure how to actually get it into TOS:

# DAYRANGE
# (c) 2009 http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 14 Feb 2009

......</description>
		<content:encoded><![CDATA[<p>Greetings, can you tell me how to load the &#8220;high/load/mid&#8221; indicator into TOS? I see all this text, but not sure how to actually get it into TOS:</p>
<p># DAYRANGE<br />
# (c) 2009 <a href="http://www.thinkscripter.com" rel="nofollow">http://www.thinkscripter.com</a><br />
# <a href="mailto:thinkscripter@gmail.com">thinkscripter@gmail.com</a><br />
# Last Update 14 Feb 2009</p>
<p>&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/get-em-all-for-20/comment-page-1/#comment-1754</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:05:01 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?page_id=456#comment-1754</guid>
		<description>You should check out the TOS Prodigio automated trading system then. You cannot execute trades automatically with thinkScript.
-Eric</description>
		<content:encoded><![CDATA[<p>You should check out the TOS Prodigio automated trading system then. You cannot execute trades automatically with thinkScript.<br />
-Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mk</title>
		<link>http://www.thinkscripter.com/get-em-all-for-20/comment-page-1/#comment-1753</link>
		<dc:creator>mk</dc:creator>
		<pubDate>Fri, 05 Mar 2010 14:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?page_id=456#comment-1753</guid>
		<description>I have noticed that sometimes stocks get stuck in a protracted trading range for an extended length of time. I would like to set up an automatic trade that will

1     allow me to allocate the start investment amount ( say $1000)
2     select the stock ( say ABCD)
3     set the entry price ( say $10)
4     set the exit price ( say $11)
5     execute trade and on exit ( at $11 first pass through) reset start investment amount to $1001 (in step 1) and repeat until I turn it off.</description>
		<content:encoded><![CDATA[<p>I have noticed that sometimes stocks get stuck in a protracted trading range for an extended length of time. I would like to set up an automatic trade that will</p>
<p>1     allow me to allocate the start investment amount ( say $1000)<br />
2     select the stock ( say ABCD)<br />
3     set the entry price ( say $10)<br />
4     set the exit price ( say $11)<br />
5     execute trade and on exit ( at $11 first pass through) reset start investment amount to $1001 (in step 1) and repeat until I turn it off.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ThinkScripter</title>
		<link>http://www.thinkscripter.com/get-em-all-for-20/comment-page-1/#comment-1494</link>
		<dc:creator>ThinkScripter</dc:creator>
		<pubDate>Mon, 11 Jan 2010 17:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://thinkscripter.wordpress.com/?page_id=456#comment-1494</guid>
		<description>Check out the compoundValue() statement. It is used exactly for this purpose:

rec signal = compoundValue(number of bars for initial value, formula for all bars after initial bars, value on initial bars);
rec signal = compoundValue(1, signal[1]+1, 1);

-Eric</description>
		<content:encoded><![CDATA[<p>Check out the compoundValue() statement. It is used exactly for this purpose:</p>
<p>rec signal = compoundValue(number of bars for initial value, formula for all bars after initial bars, value on initial bars);<br />
rec signal = compoundValue(1, signal[1]+1, 1);</p>
<p>-Eric</p>
]]></content:encoded>
	</item>
</channel>
</rss>
