<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Added little automation for FST]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/2718/" />
	<updated>2012-07-17T08:10:59Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/2718/added-little-automation-for-fst/</id>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15447/#p15447" />
			<content type="html"><![CDATA[<p>Windows (at least the newer versions) have the timeout.exe command included (and available) from the command prompt.&nbsp; This command can be used to delay a batch file for a set number of seconds and I believe will do what you are trying to achieve, eg:</p><div class="codebox"><pre><code>start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   100   &quot;yes&quot;   &quot;Test Trade&quot;
timeout 10
start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   110   &quot;yes&quot;   &quot;Test Trade&quot;
timeout 10
start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   120   &quot;yes&quot;   &quot;Test Trade&quot;</code></pre></div><p>This command may not be built in to earlier versions of windows by can downloaded for free from <a href="http://www.petri.co.il/download_free_reskit_tools.htm">http://www.petri.co.il/download_free_reskit_tools.htm</a>.</p>]]></content>
			<author>
				<name><![CDATA[ab]]></name>
				<uri>https://forexsb.com/forum/user/5420/</uri>
			</author>
			<updated>2012-07-17T08:10:59Z</updated>
			<id>https://forexsb.com/forum/post/15447/#p15447</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15440/#p15440" />
			<content type="html"><![CDATA[<p>Found some workaround of the problem with autostarting several copies of FST on a slow computer.</p><p>Since there is no <em>delay</em> command for batch files, we can use side effects of ping command.&nbsp; <br /></p><div class="quotebox"><blockquote><p>For any MS-DOS or Windows version with a TCP/IP client, PING can be used to delay execution for a number of seconds.<br />If specified (-w switch), PING will wait for a number of milliseconds between two pings before giving a time-out.</p><p>PING 1.1.1.1 -n 1 -w 60000 &gt;NUL<br />will delay execution of the next command 60 seconds, provided 1.1.1.1 is not a valid IP address.</p><p>Quote from: <a href="http://www.robvanderwoude.com/wait.php">http://www.robvanderwoude.com/wait.php</a>.</p></blockquote></div><p>We can add <strong>PING 1.1.1.1 -n 1 -w 5000 &gt;NUL</strong> command between batch file rows in order to achieve 5 seconds delay.</p><div class="codebox"><pre><code>start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   100   &quot;yes&quot;   &quot;Test Trade&quot;
ping 1.1.1.1 -n 1 -w 5000 &gt;NUL
start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   110   &quot;yes&quot;   &quot;Test Trade&quot;
ping 1.1.1.1 -n 1 -w 5000 &gt;NUL
start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   120   &quot;yes&quot;   &quot;Test Trade&quot;
ping 1.1.1.1 -n 1 -w 5000 &gt;NUL
start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   130   &quot;no&quot;    &quot;Test Trade&quot;
ping 1.1.1.1 -n 1 -w 5000 &gt;NUL
start &quot;&quot; &quot;Forex Strategy Trader.exe&quot;   140   &quot;no&quot;    &quot;Test Trade&quot;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2012-07-16T21:37:31Z</updated>
			<id>https://forexsb.com/forum/post/15440/#p15440</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15422/#p15422" />
			<content type="html"><![CDATA[<p>You are right that starting multiple copies simultaneously on a slower machine can overload it.<br />It will be better if we could schedule each start 5 sec apart but I don&#039;t know the appropriate command for .bat files.<br />I want (an probably will do) a small GUI programs for starting FST.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2012-07-14T09:27:52Z</updated>
			<id>https://forexsb.com/forum/post/15422/#p15422</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15420/#p15420" />
			<content type="html"><![CDATA[<p>Hi,<br />I tested the autostart-feature on<br />FSTv1.5.3.1NB</p><p>If I put more than 5 entrys in the autostart.bat the<br />FSB-Trader crashes on my laptop. (It start mostly only 4 strategies)<br />Is my Laptop to slow? </p><p>A quick solution for me is to use two autostarts.</p><p>Autostart1.bat start the first 5 strategies<br />Autostart2.bat start the second 5 strategies</p><p>thomas</p>]]></content>
			<author>
				<name><![CDATA[tnickel]]></name>
				<uri>https://forexsb.com/forum/user/5655/</uri>
			</author>
			<updated>2012-07-14T08:19:52Z</updated>
			<id>https://forexsb.com/forum/post/15420/#p15420</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15387/#p15387" />
			<content type="html"><![CDATA[<p>Wiki page here: <a href="http://forexsb.com/wiki/fst/manual/autostart">Autostart and Connect Multiple Copies</a></p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2012-07-10T05:53:47Z</updated>
			<id>https://forexsb.com/forum/post/15387/#p15387</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/15383/#p15383" />
			<content type="html"><![CDATA[<p>Automatic start is integrated in FST v1.5.1 NB. It works via autostart.bat file.<br />See more details here: <a href="http://forexsb.com/forum/post/15368/#p15368">http://forexsb.com/forum/post/15368/#p15368</a></p><p>Download link of&nbsp; FST v1.5.1 NB in this post: <a href="http://forexsb.com/forum/topic/3453/fst-15-nightly-build/">http://forexsb.com/forum/topic/3453/fst … tly-build/</a></p><p>We need some documentation of this feature.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2012-07-09T14:37:36Z</updated>
			<id>https://forexsb.com/forum/post/15383/#p15383</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/14076/#p14076" />
			<content type="html"><![CDATA[<p>I have missed these posts. The automated start of FSB proposed by @acerguest is really helpful. <br />I&#039;ll add it in the core in next release.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2012-04-22T06:40:06Z</updated>
			<id>https://forexsb.com/forum/post/14076/#p14076</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/14072/#p14072" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Sam M. wrote:</cite><blockquote><p>Wish I had searched this out months ago- many thanks acerguest.</p><p>Thanks Brian for bringing this back to the top.</p></blockquote></div><p>From now this is going to be a sticky topic!</p>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2012-04-21T19:43:38Z</updated>
			<id>https://forexsb.com/forum/post/14072/#p14072</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/14071/#p14071" />
			<content type="html"><![CDATA[<p>Wish I had searched this out months ago- many thanks acerguest.</p><p>Thanks Brian for bringing this back to the top.</p>]]></content>
			<author>
				<name><![CDATA[Sam M.]]></name>
				<uri>https://forexsb.com/forum/user/4979/</uri>
			</author>
			<updated>2012-04-21T19:34:49Z</updated>
			<id>https://forexsb.com/forum/post/14071/#p14071</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/12985/#p12985" />
			<content type="html"><![CDATA[<p>Thanks for the file Acerguest. Good trading to all!</p>]]></content>
			<author>
				<name><![CDATA[Brian73]]></name>
				<uri>https://forexsb.com/forum/user/5793/</uri>
			</author>
			<updated>2012-03-05T12:04:08Z</updated>
			<id>https://forexsb.com/forum/post/12985/#p12985</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/11126/#p11126" />
			<content type="html"><![CDATA[<p>Yes, exactly Krog. <br />Setup 20 tests systems over and over after some accidental restart, was a real pain for me.</p>]]></content>
			<author>
				<name><![CDATA[acerguest]]></name>
				<uri>https://forexsb.com/forum/user/3701/</uri>
			</author>
			<updated>2011-10-26T17:38:32Z</updated>
			<id>https://forexsb.com/forum/post/11126/#p11126</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/11124/#p11124" />
			<content type="html"><![CDATA[<p>Very interesting and helpful. Can you call the batch file on startup, for example, to get FST-MT4 running automatically if the machine restarts?</p>]]></content>
			<author>
				<name><![CDATA[krog]]></name>
				<uri>https://forexsb.com/forum/user/1692/</uri>
			</author>
			<updated>2011-10-26T13:03:28Z</updated>
			<id>https://forexsb.com/forum/post/11124/#p11124</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/11119/#p11119" />
			<content type="html"><![CDATA[<p>That`s the changes to orginal source code.</p>]]></content>
			<author>
				<name><![CDATA[acerguest]]></name>
				<uri>https://forexsb.com/forum/user/3701/</uri>
			</author>
			<updated>2011-10-26T08:29:45Z</updated>
			<id>https://forexsb.com/forum/post/11119/#p11119</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/11111/#p11111" />
			<content type="html"><![CDATA[<p>What do the files in autostart.zip do?</p>]]></content>
			<author>
				<name><![CDATA[SpiderMan]]></name>
				<uri>https://forexsb.com/forum/user/4094/</uri>
			</author>
			<updated>2011-10-25T20:44:59Z</updated>
			<id>https://forexsb.com/forum/post/11111/#p11111</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Added little automation for FST]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/11110/#p11110" />
			<content type="html"><![CDATA[<p>Hi.<br />I would like to share my little contribution, to this excellent project. </p><p>I needed to run mulitple FST from cmd line, with strategy and connectionID specified.<br />So now it`s possible to create a batch file with entries like this:<br />FST.exe 11 &quot;Test Trade1&quot;<br />FST.exe 12 &quot;Test Trade2&quot;</p><p>FST will load startegy set`s the connection ID, and will wait for Mt4.<br />When discovered it would automatically start to trade. <br />(Sorry that`s not a patch, but I`m new with Git)</p><p><strong>EDIT by Popov</strong><br />This automation is included in FST v1.5.1 NB. Download link in this post: <a href="http://forexsb.com/forum/topic/3453/fst-15-nightly-build/">http://forexsb.com/forum/topic/3453/fst … tly-build/</a></p><p>Wiki page here: <a href="http://forexsb.com/wiki/fst/manual/autostart">Autostart and Connect Multiple Copies</a></p>]]></content>
			<author>
				<name><![CDATA[acerguest]]></name>
				<uri>https://forexsb.com/forum/user/3701/</uri>
			</author>
			<updated>2011-10-25T20:28:10Z</updated>
			<id>https://forexsb.com/forum/post/11110/#p11110</id>
		</entry>
</feed>
