<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Parameters not recognized]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/9359/" />
	<updated>2023-02-01T16:06:55Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/9359/parameters-not-recognized/</id>
		<entry>
			<title type="html"><![CDATA[Re: Parameters not recognized]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/73392/#p73392" />
			<content type="html"><![CDATA[<p>You are completely correct, that was the issue!</p><p>Thanks for your great support and awesome software!</p>]]></content>
			<author>
				<name><![CDATA[Scifo]]></name>
				<uri>https://forexsb.com/forum/user/14277/</uri>
			</author>
			<updated>2023-02-01T16:06:55Z</updated>
			<id>https://forexsb.com/forum/post/73392/#p73392</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Parameters not recognized]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/73391/#p73391" />
			<content type="html"><![CDATA[<p>You have spaces after &quot;^&quot; on the previous line.</p><p>The &quot;^&quot; <strong>must</strong> be the last character of the line. Its purpose is to ignore the next char, which suppose to be the New Line char. If there are spaces or tabs, it ignores one space or one tab.</p><br /><p><a href="https://image-holder.forexsb.com/store/trailing-spaces.png"><span class="postimg"><img src="https://image-holder.forexsb.com/store/trailing-spaces-thumb.png" alt="https://image-holder.forexsb.com/store/trailing-spaces-thumb.png" /></span></a></p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2023-02-01T15:59:59Z</updated>
			<id>https://forexsb.com/forum/post/73391/#p73391</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Parameters not recognized]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/73390/#p73390" />
			<content type="html"><![CDATA[<p>Thanks for the fast reply mr. Popov.</p><br /><p>It is the validation part (Second command) which gives me the issue. <br />I&#039;m trying to first create strategies based on one timeframe, and then validate them on another timeframe (IS/OOS).</p><p><a href="https://postimg.cc/hhYNYmRT"><span class="postimg"><img src="https://i.postimg.cc/sDfyvPn6/EG-screenshot.png" alt="https://i.postimg.cc/sDfyvPn6/EG-screenshot.png" /></span></a></p>]]></content>
			<author>
				<name><![CDATA[Scifo]]></name>
				<uri>https://forexsb.com/forum/user/14277/</uri>
			</author>
			<updated>2023-02-01T15:33:52Z</updated>
			<id>https://forexsb.com/forum/post/73390/#p73390</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Parameters not recognized]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/73388/#p73388" />
			<content type="html"><![CDATA[<p>I tested your command script, and it works fine (without the requested GBPUSD_M1_GENERATE.ini)</p><br /><p><a href="https://image-holder.forexsb.com/store/xgen-bug-report-test.png"><span class="postimg"><img src="https://image-holder.forexsb.com/store/xgen-bug-report-test-thumb.png" alt="https://image-holder.forexsb.com/store/xgen-bug-report-test-thumb.png" /></span></a></p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2023-02-01T15:10:31Z</updated>
			<id>https://forexsb.com/forum/post/73388/#p73388</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Parameters not recognized]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/73386/#p73386" />
			<content type="html"><![CDATA[<p>Hi!</p><p>Trying to leverage the power of the EG tool and parameterize it all my inputs to make a dynamic script. However, I seem to be having issues with parameters when creating my CMD file.</p><p>I&#039;ve done a very simple version of my script here, where it seems that the validation part will not accept the &quot;--use_data_start&quot; parameter.</p><p>Can one of you help me with what I am doing wrong? Or should this just be done in a different way?</p><p>EDIT1: The input/output strings are not wrapped, it&#039;s just due to the size of the text box in the forum.<br />EDIT2: For the data start parameters, I tried both - and _ with same issue.</p><div class="codebox"><pre><code>    start cmd /k node .\bin\gen.js ^
     --settings = GBPUSD_M1_GENERATE.ini ^
     --output = ./collections/[SYMBOL]_[PERIOD]/Coll_[YEAR]-[MONTH]-[DAY]_[SYMBOL]_[PERIOD]_str_[COUNT].json ^
     --server = Premium ^
     --symbol = GBPUSD ^
     --period = M5 ^
     --use_data_start = true ^
     --data-start     = &quot;12-07-2022 UTC&quot; ^
     --use-data-end   = true ^
     --data-end       = &quot;01-24-2023 UTC&quot; ^
     --min-count-of-trades = 100 ^
     --max_working_minutes = 1     

    timeout 60
    
    start cmd /k node .\bin\gen.js ^
     --settings = GBPUSD_M1_GENERATE.ini ^
     --input = ./collections/[SYMBOL]_[PERIOD]/ ^
     --output = ./collections/[SYMBOL]_[PERIOD]/Coll_[YEAR]-[MONTH]-[DAY]_[SYMBOL]_[PERIOD]_str_[COUNT]_Validated.json ^
     --min-count-of-trades = 5 ^
     --server = Premium ^
     --symbol = GBPUSD ^
     --period = M5 ^     
     --use_data_start = true ^
     --data-start = &quot;01-25-2023 UTC&quot;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Scifo]]></name>
				<uri>https://forexsb.com/forum/user/14277/</uri>
			</author>
			<updated>2023-02-01T14:32:17Z</updated>
			<id>https://forexsb.com/forum/post/73386/#p73386</id>
		</entry>
</feed>
