<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Added little automation for FST]]></title>
		<link>https://forexsb.com/forum/topic/2718/added-little-automation-for-fst/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/2718/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Added little automation for FST.]]></description>
		<lastBuildDate>Tue, 17 Jul 2012 08:10:59 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/15447/#p15447</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (ab)]]></author>
			<pubDate>Tue, 17 Jul 2012 08:10:59 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15447/#p15447</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/15440/#p15440</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 16 Jul 2012 21:37:31 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15440/#p15440</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/15422/#p15422</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Sat, 14 Jul 2012 09:27:52 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15422/#p15422</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/15420/#p15420</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (tnickel)]]></author>
			<pubDate>Sat, 14 Jul 2012 08:19:52 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15420/#p15420</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/15387/#p15387</link>
			<description><![CDATA[<p>Wiki page here: <a href="http://forexsb.com/wiki/fst/manual/autostart">Autostart and Connect Multiple Copies</a></p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Tue, 10 Jul 2012 05:53:47 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15387/#p15387</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/15383/#p15383</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 09 Jul 2012 14:37:36 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/15383/#p15383</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/14076/#p14076</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Sun, 22 Apr 2012 06:40:06 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/14076/#p14076</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/14072/#p14072</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Sat, 21 Apr 2012 19:43:38 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/14072/#p14072</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/14071/#p14071</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Sam M.)]]></author>
			<pubDate>Sat, 21 Apr 2012 19:34:49 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/14071/#p14071</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/12985/#p12985</link>
			<description><![CDATA[<p>Thanks for the file Acerguest. Good trading to all!</p>]]></description>
			<author><![CDATA[null@example.com (Brian73)]]></author>
			<pubDate>Mon, 05 Mar 2012 12:04:08 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/12985/#p12985</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/11126/#p11126</link>
			<description><![CDATA[<p>Yes, exactly Krog. <br />Setup 20 tests systems over and over after some accidental restart, was a real pain for me.</p>]]></description>
			<author><![CDATA[null@example.com (acerguest)]]></author>
			<pubDate>Wed, 26 Oct 2011 17:38:32 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/11126/#p11126</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/11124/#p11124</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (krog)]]></author>
			<pubDate>Wed, 26 Oct 2011 13:03:28 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/11124/#p11124</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/11119/#p11119</link>
			<description><![CDATA[<p>That`s the changes to orginal source code.</p>]]></description>
			<author><![CDATA[null@example.com (acerguest)]]></author>
			<pubDate>Wed, 26 Oct 2011 08:29:45 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/11119/#p11119</guid>
		</item>
		<item>
			<title><![CDATA[Re: Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/11111/#p11111</link>
			<description><![CDATA[<p>What do the files in autostart.zip do?</p>]]></description>
			<author><![CDATA[null@example.com (SpiderMan)]]></author>
			<pubDate>Tue, 25 Oct 2011 20:44:59 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/11111/#p11111</guid>
		</item>
		<item>
			<title><![CDATA[Added little automation for FST]]></title>
			<link>https://forexsb.com/forum/post/11110/#p11110</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (acerguest)]]></author>
			<pubDate>Tue, 25 Oct 2011 20:28:10 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/11110/#p11110</guid>
		</item>
	</channel>
</rss>
