<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — 2 simultaneous opposite signals]]></title>
		<link>https://forexsb.com/forum/topic/3179/2-simultaneous-opposite-signals/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/3179/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in 2 simultaneous opposite signals.]]></description>
		<lastBuildDate>Fri, 06 Apr 2012 19:58:23 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: 2 simultaneous opposite signals]]></title>
			<link>https://forexsb.com/forum/post/13669/#p13669</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>Can 2 positions be transferred to new bar?</p></blockquote></div><p>You can never have two open positions. You always have one position: Long or Short, or you are Square (no position).</p><div class="quotebox"><blockquote><p>The most important question&nbsp; : if MaxOrders is modified to 7, does it prevent FSB crashing or not?</p></blockquote></div><p>It will prevent orders holding array to overflow but it must be increased with much more.&nbsp; For every additional entry order we need of 1 additional exit order, 1 permanent SL, 1 permanent TP, 2 Breakeven orders.</p><div class="quotebox"><blockquote><p>Can FST handle and manage several entry points?</p></blockquote></div><p>I&#039;m not sure. It was never tested, but I do not see problems for that. Probably FST can be easily modified to manage multiple entries per bar. Actually it handles multiple manual entries very well. There is no reason to make the same automatically. The manual and automatic executions are same.</p><div class="quotebox"><blockquote><p>Thanks for the quick and thorough responses!</p></blockquote></div><p>It&#039;s my pleasure to chat about FSB / FST.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 06 Apr 2012 19:58:23 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/13669/#p13669</guid>
		</item>
		<item>
			<title><![CDATA[Re: 2 simultaneous opposite signals]]></title>
			<link>https://forexsb.com/forum/post/13666/#p13666</link>
			<description><![CDATA[<p>Can 2 positions be transferred to new bar? If yes, can they be opposite positions?</p><p>The most important question <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> : if MaxOrders is modified to 7, does it prevent FSB crashing or not?</p><p>Can FST handle and manage several entry points?</p><p>Thanks for the quick and thorough responses!</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Fri, 06 Apr 2012 18:42:28 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/13666/#p13666</guid>
		</item>
		<item>
			<title><![CDATA[Re: 2 simultaneous opposite signals]]></title>
			<link>https://forexsb.com/forum/post/13663/#p13663</link>
			<description><![CDATA[<p>You can have max three positions per bar.<br />1. One transferred from the previous bar (actually not open in this bar.)<br />2. One long (or short) entry at Opening Point of the Position.<br />3. One short (or long) entry if the indicator in the Opening Point of the Position slot has two entry prices. For example Pivot Point.</p><p>If the indicator in the Opening Point of the Position slot has one entry price (MA, Bar Opening...), FSB can enter only once.</p><p>If the entry indicator has two entry prices, FSB can mace two entries. It depends on if the first position was close and if not, it depends on the adding and reducing options of the strategy.</p><p>...</p><p>But your question leads to other questions. What if we make a custom indicator that has several entry points... FSB must open several positions or add / reduce several times per bar. But first it will crash because the array that holds orders of a bar has limited size.</p><div class="codebox"><pre><code>        private static int MaxOrders
        {
            get
            {
                int maxOrders = 6; // Entry - 2, Exit - 3, Exit Margin Call - 1
                if (Strategy.UsePermanentSL)
                    maxOrders += 3; // Exit Perm. S/L - 3
                if (Strategy.UsePermanentTP)
                    maxOrders += 3; // Exit Perm. T/P - 3
                if (Strategy.UseBreakEven)
                    maxOrders += 6; // Activation - 3, Exit - 3
                return maxOrders;
            }
        }</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 06 Apr 2012 15:10:15 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/13663/#p13663</guid>
		</item>
		<item>
			<title><![CDATA[Re: 2 simultaneous opposite signals]]></title>
			<link>https://forexsb.com/forum/post/13659/#p13659</link>
			<description><![CDATA[<p>Well, I know it&#039;s not me, it&#039;s FSB, hehee. The nature of FSB - 1 signal per bar, therefore 1 trade per bar.</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Fri, 06 Apr 2012 13:50:48 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/13659/#p13659</guid>
		</item>
		<item>
			<title><![CDATA[Re: 2 simultaneous opposite signals]]></title>
			<link>https://forexsb.com/forum/post/13658/#p13658</link>
			<description><![CDATA[<p>(-; Nice try, but you&#039;ll end with ambiguous bars?<br />Do you know why?</p><p><a href="http://postimage.org/image/twwyrqjmz/"><span class="postimg"><img src="http://s17.postimage.org/twwyrqjmz/ambiguous_strat.jpg" alt="http://s17.postimage.org/twwyrqjmz/ambiguous_strat.jpg" /></span></a></p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 06 Apr 2012 13:32:24 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/13658/#p13658</guid>
		</item>
		<item>
			<title><![CDATA[2 simultaneous opposite signals]]></title>
			<link>https://forexsb.com/forum/post/13657/#p13657</link>
			<description><![CDATA[<p>Had an idea - what if a strat, which uses 2 logical groups for buy and sell direction each, has both signals of buy and sell in one bar? Will 2 positions be opened or not?</p>]]></description>
			<author><![CDATA[null@example.com (footon)]]></author>
			<pubDate>Fri, 06 Apr 2012 12:44:17 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/13657/#p13657</guid>
		</item>
	</channel>
</rss>
