<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Express Generator not Generating Strategies]]></title>
		<link>https://forexsb.com/forum/topic/9538/express-generator-not-generating-strategies/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/9538/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Express Generator not Generating Strategies.]]></description>
		<lastBuildDate>Tue, 22 Aug 2023 13:40:50 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76212/#p76212</link>
			<description><![CDATA[<p>Lookin&#039; good! I leave mine running all week on the 28 major/cross pairs, and then swap strategies in or out on weekends for the next week. I have a dedicated server with a Ryzen 5900X (12 cores, 24 threads), so it has enough horsepower to just churn out strategies every day. It&#039;s a single one-click command that opens all the instances. Very convenient!</p>]]></description>
			<author><![CDATA[null@example.com (aaronpriest)]]></author>
			<pubDate>Tue, 22 Aug 2023 13:40:50 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76212/#p76212</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76199/#p76199</link>
			<description><![CDATA[<div class="quotebox"><cite>aaronpriest wrote:</cite><blockquote><p>The .ini file doesn&#039;t have a ^ at the end of every line, only if you include those settings in your command. When calling those settings from the .ini file there isn&#039;t a caret. You can override any setting in the .ini file by including it your command instead, and if you do that you need a ^ at the end of every line in your command, to tell the command to continue on to the next line. I have my generic settings in my .ini file, but sometimes I override a specific setting for a particular pair or timeframe by including a different setting in the command line.</p></blockquote></div><p>Thank you. Will keep in mind. Right now to be honest Lisa&#039;s post helped to speed up using Express Generator. Just needed to tune a bit with advice given thus far. You are also right the &#039;/&#039; or &#039;\&#039; not an issue.</p><p>I&#039;ve replicated Lisa&#039;s advanced script with pair am interested to look at using the Premier data for time being.</p><p>Am also trialing Tick Data Manager from one of Lisa&#039;s video to do further optimization testing on tick data.</p><p>Attached image is where am at.</p><p>Script is following Lisa&#039;s one from one of her blog post.</p><div class="codebox"><pre><code>start step2a_a_template EURUSD H1 &quot;22 August 2021 00:00 GMT&quot; &quot;22 August 2023 00:00 GMT&quot; Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template USDJPY H1 &quot;22 August 2021 00:00 GMT&quot; &quot;22 August 2023 00:00 GMT&quot; Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template GBPUSD H1 &quot;22 August 2021 00:00 GMT&quot; &quot;22 August 2023 00:00 GMT&quot; Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template BRENTCMDUSD H1 &quot;22 August 2021 00:00 GMT&quot; &quot;22 August 2023 00:00 GMT&quot; Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template USA500IDXUSD H1 &quot;22 August 2021 00:00 GMT&quot; &quot;22 August 2023 00:00 GMT&quot; Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]
start step2a_a_template XAUUSD H1 &quot;22 August 2021 00:00 GMT&quot; &quot;22 August 2023 00:00 GMT&quot; Coll_[SERVER]_[SYMBOL]_[PERIOD]_[YEAR]-[MONTH]-[DAY]</code></pre></div><p>The template is from Lisa&#039;s blog post. The &#039;\&#039; works . So definitely was not an issue.</p><div class="codebox"><pre><code>set symbol=%1
set period=%2
set startd=%3
set endd=%4
set ofile=%5

if &quot;%symbol%&quot; == &quot;&quot; EXIT
if &quot;%period%&quot; == &quot;&quot; EXIT

node .\bin\gen.js ^
 --server                 Premium ^
 --symbol                  %symbol% ^
 --period                 %period% ^
 --max-data-bars          200000 ^
 --use_data_start         true ^
 --use_data_end           true ^
 --entry_lots             0.1 ^
 --trade_direction_mode   LongAndShort ^
 --opposite_entry_signal  IgnoreOrReverse ^
 --stop_loss_usage        AlwaysUse ^
 --stop_loss_type         Fixed ^
 --stop_loss_range_min    10 ^
 --stop_loss_range_max    100 ^
 --take_profit_usage      AlwaysUse ^
 --take_profit_range_min  10 ^
 --take_profit_range_max  100 ^
 --max_entry_slots        4 ^
 --max_exit_slots         2 ^
 --min_count_of_trades    150 ^
 --min_profit_factor      1.2 ^
 --min_r_squared          10 ^
 --max-working-minutes    600 ^
 --enable_monte_carlo     true ^
 --ind_params_change_probability 20 ^
 --account_currency       USD ^
 --initial_account        1000 ^
 --leverage               400 ^
 --collection-capacity    200 ^
 --correlation_threshold  0.98 ^
 --resolve_correlation    true ^
 --resolve_similar_rules  true ^
 --trade_on_sunday        false ^
 --output                 %ofile% ^
 --data_start             %startd% ^
 --data_end               %endd%
 
 pause</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Tue, 22 Aug 2023 06:57:25 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76199/#p76199</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76190/#p76190</link>
			<description><![CDATA[<p>The .ini file doesn&#039;t have a ^ at the end of every line, only if you include those settings in your command. When calling those settings from the .ini file there isn&#039;t a caret. You can override any setting in the .ini file by including it your command instead, and if you do that you need a ^ at the end of every line in your command, to tell the command to continue on to the next line. I have my generic settings in my .ini file, but sometimes I override a specific setting for a particular pair or timeframe by including a different setting in the command line.</p>]]></description>
			<author><![CDATA[null@example.com (aaronpriest)]]></author>
			<pubDate>Mon, 21 Aug 2023 14:37:20 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76190/#p76190</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76186/#p76186</link>
			<description><![CDATA[<div class="quotebox"><cite>aaronpriest wrote:</cite><blockquote><p>I suspect you are editing the original C:\express-generator\bin\gen.ini file. Don&#039;t do that. It will get overwritten every time Express Generator updates. Instead, make a copy of it and place it one folder up, above the bin folder, like C:\express-generator\generate.ini for example (call it anything you want). Then you can alter and reference that .ini file with &quot;node ./bin/gen.js --settings gen.ini&quot; (or generate.ini or settings.ini or whatever you want to call it).</p><p>Also, my start script is using \ instead of /, but I&#039;m not sure if it matters. Mine looks like &quot;node .\bin\gen.js --settings generate.ini&quot;. Try that if the other doesn&#039;t work.</p></blockquote></div><p>Hi that&#039;s not what I am doing. Under C:\express-generator, I created a file called gen.ini. The contents of the file is below</p><div class="codebox"><pre><code>server                    = Premium                    ^
symbol                    = EURUSD                    ^
period                    = M15 ^
max_data_bars             = 200000                    ^
entry_lots                = 0.1                        ^
trade_direction_mode      = LongAndShort            ^
opposite_entry_signal     = IgnoreOrReverse            ^
stop_loss_usage           = DoNotUse                ^
stop_loss_type            = Fixed                    ^
stop_loss_range_min       = 10                        ^
stop_loss_range_max       = 100                        ^
take_profit_usage         = DoNotUse                ^
take_profit_range_min     = 10                        ^
take_profit_range_max     = 100                        ^
max_entry_slots           = 4                        ^
max_exit_slots            = 2                        ^
min_count_of_trades       = 200                        ^
min_profit_factor         = 1.4                        ^
min_r_squared             = 10                        ^
max_working_minutes       = 6                        ^
account_currency          = USD                        ^
initial_account           = 1000                    ^
leverage                  = 100                        ^
collection_capacity      = 200                        ^
correlation_threshold     = 0.98                    ^
resolve_correlation       = true                    ^
resolve_similar_rules     = true                    ^
trade_on_sunday           = false                    ^
use_data_start            = true                    ^
data_start                = &quot;20 Apr 2020 00:00 GMT&quot;</code></pre></div><br /><p>In same directory C:\express-generator, I created a script called step_2_generate_strategies_v2.cmd. The contents of the file is</p><div class="codebox"><pre><code>node ./bin/gen.js --settings gen.ini

pause</code></pre></div><p>When I double click it, it gives the error</p><div class="quotebox"><blockquote><p>Cannot read settings file: gen.ini per the image I attached previously</p></blockquote></div><p>Perhaps I don&#039;t need to add the caret in an .ini file in comparison to adding a caret in the actual script except at the end of line ?</p><p>Any clues</p>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Mon, 21 Aug 2023 12:59:23 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76186/#p76186</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76185/#p76185</link>
			<description><![CDATA[<p>&gt; Also, my start script is using \ instead of /, but I&#039;m not sure if it matters.</p><p>Aaron, you are correct.</p><p>The &quot;\&quot; separator is native for Windows, and the &quot;/&quot; separator is native for Linux and MacOS.<br />However, &quot;/&quot; works for all of them.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 21 Aug 2023 12:47:28 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76185/#p76185</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76183/#p76183</link>
			<description><![CDATA[<p>I suspect you are editing the original C:\express-generator\bin\gen.ini file. Don&#039;t do that. It will get overwritten every time Express Generator updates. Instead, make a copy of it and place it one folder up, above the bin folder, like C:\express-generator\generate.ini for example (call it anything you want). Then you can alter and reference that .ini file with &quot;node ./bin/gen.js --settings gen.ini&quot; (or generate.ini or settings.ini or whatever you want to call it).</p><p>Also, my start script is using \ instead of /, but I&#039;m not sure if it matters. Mine looks like &quot;node .\bin\gen.js --settings generate.ini&quot;. Try that if the other doesn&#039;t work.</p>]]></description>
			<author><![CDATA[null@example.com (aaronpriest)]]></author>
			<pubDate>Mon, 21 Aug 2023 12:30:48 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76183/#p76183</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76171/#p76171</link>
			<description><![CDATA[<div class="quotebox"><cite>Popov wrote:</cite><blockquote><p>You don&#039;t need a caret at the last line of your multiline command.</p><p>Your last example can be written as:<br /></p><div class="codebox"><pre><code>node ./bin/gen.js ^
--settings gen.ini

pause</code></pre></div><p>Or even better:<br /></p><div class="codebox"><pre><code>node ./bin/gen.js --settings gen.ini

pause</code></pre></div></blockquote></div><p>Hi I tried this</p><div class="codebox"><pre><code>node ./bin/gen.js --settings gen.ini

pause</code></pre></div><p>Unfortunately I get this error from the image attached.</p><p>gen.ini is in directory C:\express-generator\</p>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Mon, 21 Aug 2023 06:54:01 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76171/#p76171</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76169/#p76169</link>
			<description><![CDATA[<p>You don&#039;t need a caret at the last line of your multiline command.</p><p>Your last example can be written as:<br /></p><div class="codebox"><pre><code>node ./bin/gen.js ^
--settings gen.ini

pause</code></pre></div><p>Or even better:<br /></p><div class="codebox"><pre><code>node ./bin/gen.js --settings gen.ini

pause</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 21 Aug 2023 02:45:07 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76169/#p76169</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76168/#p76168</link>
			<description><![CDATA[<div class="quotebox"><cite>aaronpriest wrote:</cite><blockquote><p>You have &quot;--use_data_start true ^&quot; used twice in the same script. Remove one of them and it will probably work. ;-)</p></blockquote></div><p>Thank you. I definitely missed this one. Finally works as per attached image.</p><p>Will check if working with the file gen.ini gives any success, Also had it twice in gen.ini</p><p>That&#039;s what I prefer actually actually </p><div class="codebox"><pre><code>node ./bin/gen.js ^
--settings gen.ini ^

pause</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Sun, 20 Aug 2023 19:58:01 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76168/#p76168</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76167/#p76167</link>
			<description><![CDATA[<p>You have &quot;--use_data_start true ^&quot; used twice in the same script. Remove one of them and it will probably work. ;-)</p>]]></description>
			<author><![CDATA[null@example.com (aaronpriest)]]></author>
			<pubDate>Sun, 20 Aug 2023 13:53:05 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76167/#p76167</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76166/#p76166</link>
			<description><![CDATA[<div class="quotebox"><cite>Popov wrote:</cite><blockquote><p>The message says that it cannot find &quot;collections_capacity&quot;.</p><p>The correct option is &quot;collection_capacity&quot;. Note the extra &quot;s&#039;.</p></blockquote></div><p>Thank you. Now I get this error attached.</p>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Sun, 20 Aug 2023 12:49:55 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76166/#p76166</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76165/#p76165</link>
			<description><![CDATA[<p>The message says that it cannot find &quot;collections_capacity&quot;.</p><p>The correct option is &quot;collection_capacity&quot;. Note the extra &quot;s&#039;.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Sun, 20 Aug 2023 11:44:34 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76165/#p76165</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76164/#p76164</link>
			<description><![CDATA[<div class="quotebox"><cite>Popov wrote:</cite><blockquote><p>You must put a caret character &quot;^&quot; to write multiline commands. </p><div class="codebox"><pre><code>node ./bin/gen.js                   ^
--server                    Premium ^
--symbol                    EURUSD  ^
--period                    M15     ^
...
--use_data_start            true  ^
--data_start                &quot;20 Apr 2020 00:00 GMT&quot;</code></pre></div><p>You do not put a caret character ( ^ ) at the last line of the command.</p></blockquote></div><p>Thank You.</p><p>I tried again using Lisa&#039;s way. This one worked for me</p><div class="codebox"><pre><code>TITLE Data Downloader

node  ./bin/fetch.js ^
 --fx-rates true ^
 --symbols EURUSD USDJPY GBPUSD BRENTCMDUSD AUDUSD USA500IDXUSD XAUUSD ^
 --periods M1 M5 M15 M30 H1 H4 D1 ^
 --max-bars 200000 ^
 --time-zone 0
 
pause</code></pre></div><p>The issue from her video is with node .\bin\fetch.js ^</p><p>Now trying again for strategies using this</p><div class="codebox"><pre><code>node ./bin/gen.js ^
--server                    Premium ^
--symbol                    EURUSD ^
--period                    M15 ^
--max_data_bars             200000 ^
--use_data_start            true ^
--entry_lots                0.1 ^
--trade_direction_mode      LongAndShort ^
--opposite_entry_signal     IgnoreOrReverse ^
--stop_loss_usage           DoNotUse ^
--stop_loss_type            Fixed ^
--stop_loss_range_min       10 ^
--stop_loss_range_max       100 ^
--take_profit_usage         DoNotUse ^
--take_profit_range_min     10 ^
--take_profit_range_max     100 ^
--max_entry_slots           4 ^
--max_exit_slots            2 ^
--min_count_of_trades       200 ^
--min_profit_factor         1.4 ^
--min_r_squared             10 ^
--max_working_minutes       6 ^
--account_currency          USD ^
--initial_account           1000 ^
--leverage                  100 ^
--collections_capacity      200 ^
--correlation_threshold     0.98 ^
--resolve_correlation       true ^
--resolve_similar_rules     true ^
--trade_on_sunday           false ^
--use_data_start            true ^
--data_start                &quot;20 Apr 2020 00:00 GMT&quot;
 
pause</code></pre></div><p>I get this error from shell</p><p>Please advise</p>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Sun, 20 Aug 2023 10:16:01 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76164/#p76164</guid>
		</item>
		<item>
			<title><![CDATA[Re: Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76163/#p76163</link>
			<description><![CDATA[<p>You must put a caret character &quot;^&quot; to write multiline commands. </p><div class="codebox"><pre><code>node ./bin/gen.js                   ^
--server                    Premium ^
--symbol                    EURUSD  ^
--period                    M15     ^
...
--use_data_start            true  ^
--data_start                &quot;20 Apr 2020 00:00 GMT&quot;</code></pre></div><p>You do not put a caret character ( ^ ) at the last line of the command.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Sun, 20 Aug 2023 02:14:12 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76163/#p76163</guid>
		</item>
		<item>
			<title><![CDATA[Express Generator not Generating Strategies]]></title>
			<link>https://forexsb.com/forum/post/76161/#p76161</link>
			<description><![CDATA[<p>Hi,</p><p>Please advise why this won&#039;t work from C:\express-generator\step_2_generate_strategies.cmd . </p><div class="quotebox"><blockquote><p>node ./bin/gen.js <br />--server&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Premium<br />--symbol&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EURUSD<br />--period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; M15<br />--max_data_bars&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;200000<br />--use_data_start&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; true<br />--entry_lots&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.1<br />--trade_direction_mode&nbsp; &nbsp; &nbsp; LongAndShort<br />--opposite_entry_signal&nbsp; &nbsp; &nbsp;IgnoreOrReverse<br />--stop_loss_usage&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DoNotUse<br />--stop_loss_type&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Fixed<br />--stop_loss_range_min&nbsp; &nbsp; &nbsp; &nbsp;10<br />--stop_loss_range_max&nbsp; &nbsp; &nbsp; &nbsp;100<br />--take_profit_usage&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DoNotUse<br />--take_profit_range_min&nbsp; &nbsp; &nbsp;10<br />--take_profit_range_max&nbsp; &nbsp; &nbsp;100<br />--max_entry_slots&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4<br />--max_exit_slots&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2<br />--min_count_of_trades&nbsp; &nbsp; &nbsp; &nbsp;200<br />--min_profit_factor&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1.4<br />--min_r_squared&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10<br />--max_working_minutes&nbsp; &nbsp; &nbsp; &nbsp;6<br />--account_currency&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; USD<br />--initial_account&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1000<br />--leverage&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 100<br />--collections_capacity&nbsp; &nbsp; &nbsp; 200<br />--correlation_threshold&nbsp; &nbsp; &nbsp;0.98<br />--resolve_correlation&nbsp; &nbsp; &nbsp; &nbsp;true<br />--resolve_similar_rules&nbsp; &nbsp; &nbsp;true<br />--trade_on_sunday&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;false<br />--use_data_start&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; true<br />--data_start&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;20 Apr 2020 00:00 GMT&quot;</p><p>pause</p></blockquote></div><p>What happens when I double click it is it runs what&#039;s inside \bin\gen.settings.ini</p><p>I even tried this. gen.ini is under C:\express-generator\</p><div class="quotebox"><blockquote><p>node ./bin/gen.js --settings gen.ini</p><p>pause</p></blockquote></div><p>The error is</p>]]></description>
			<author><![CDATA[null@example.com (tobeawinner)]]></author>
			<pubDate>Sat, 19 Aug 2023 23:58:07 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/76161/#p76161</guid>
		</item>
	</channel>
</rss>
