<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Doji pattern in FSB]]></title>
		<link>https://forexsb.com/forum/topic/1799/doji-pattern-in-fsb/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/1799/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Doji pattern in FSB.]]></description>
		<lastBuildDate>Tue, 28 Jun 2011 16:03:40 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/9542/#p9542</link>
			<description><![CDATA[<p>This indicator was designed to work with Forex Strategy Builder and Forex Strategy Trader.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Tue, 28 Jun 2011 16:03:40 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/9542/#p9542</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/9539/#p9539</link>
			<description><![CDATA[<p>HELLO<br />PLEASE, I DOWNLOADED THE DOGI BUT i COULD NOT INSTALL IT ON MY MT4</p>]]></description>
			<author><![CDATA[null@example.com (igumzfx)]]></author>
			<pubDate>Tue, 28 Jun 2011 11:41:58 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/9539/#p9539</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/9538/#p9538</link>
			<description><![CDATA[<div class="quotebox"><cite>Popov wrote:</cite><blockquote><p><a href="http://postimage.org/image/pfea0uw4/"><span class="postimg"><img src="http://s2.postimage.org/cwWwr.jpg" alt="http://s2.postimage.org/cwWwr.jpg" /></span></a></p><p>The formula was changed a little. You can correct it if you want.</p><div class="codebox"><pre><code>double point = (Digits == 5 || Digits == 3) ? 10 * Point : Point;
double maxOpenClose = 5 * point;
double minHeight    = 1.2 * maxOpenClose;

for (int iBar = 1; iBar &lt; Bars; iBar++)
    if (Math.Abs(Close[iBar - 1] - Open[iBar - 1]) &lt; maxOpenClose &amp;&amp; High[iBar - 1] - Low[iBar - 1] &gt; minHeight)
        doji[iBar] = 1;</code></pre></div></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (igumzfx)]]></author>
			<pubDate>Tue, 28 Jun 2011 11:40:50 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/9538/#p9538</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/9350/#p9350</link>
			<description><![CDATA[<p>Exclamation points -- sounds like ambiguous signal. The indicator is telling it both long and short at the same time, in the side panel, &quot;Allow Long/Short Entry&quot; will both say &quot;yes&quot;. Try adding another indicator to break the tie.</p>]]></description>
			<author><![CDATA[null@example.com (krog)]]></author>
			<pubDate>Sat, 04 Jun 2011 17:49:40 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/9350/#p9350</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/9348/#p9348</link>
			<description><![CDATA[<p>I couldn&#039;t get these to work. They just put exclamation points above candles. Thoughts?</p><p>Thanks.</p>]]></description>
			<author><![CDATA[null@example.com (therealdrag0)]]></author>
			<pubDate>Sat, 04 Jun 2011 04:47:38 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/9348/#p9348</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6650/#p6650</link>
			<description><![CDATA[<p>Thanks for the guidance.</p><p>I have now entered the percentage setup into the attached indicator.</p><p>I think it is correct, but it seem to work in back tests. Now it is interesting if it also works in forward testing.</p><p>If you have a moment please take a look at the coding. When I have results from the forward testing I will let you know of the performance.</p>]]></description>
			<author><![CDATA[null@example.com (Itai)]]></author>
			<pubDate>Mon, 20 Sep 2010 21:09:42 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6650/#p6650</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6644/#p6644</link>
			<description><![CDATA[<div class="codebox"><pre><code>double point = (Digits == 5 || Digits == 3) ? 10 * Point : Point;</code></pre></div><p>This line compensate 5 digit quotations. Using it you can set <em>n * point</em> where &quot;n&quot; will work with 5 digits as well as 4 digit quotation.</p><div class="codebox"><pre><code>double maxOpenClose = 5 * point;</code></pre></div><p>together with<br /></p><div class="codebox"><pre><code>Math.Abs(Close[iBar - 1] - Open[iBar - 1]) &lt; maxOpenClose</code></pre></div><p>limits the max body height to 5 pips.</p><br /><p>If you want percent rate, you can use:</p><div class="codebox"><pre><code>if (Math.Abs(Close[iBar - 1] - Open[iBar - 1]) &lt; PERCENT * (High[iBar - 1] - Low[iBar - 1]))
    ...</code></pre></div><p>You can use an entry numerical box to setup PERCENT value from the Indicator Properties dialog window.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 20 Sep 2010 15:31:11 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6644/#p6644</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6643/#p6643</link>
			<description><![CDATA[<p>Popov, thanks for the fast response and the attached indicator. </p><p>Just to understand it correctly. <br /></p><div class="codebox"><pre><code>double maxOpenClose = 5 * point;
double minHeight    = 1.2 * maxOpenClose;</code></pre></div><p>Does the first line of this code indicate the size of the body of the doji? That the body can be max 5 points?<br />Can I adjust somewhere that the body of the doji maximum should be 8 percent of the total candle (highest - lowest)?<br />And a final question, is there in this indicator any limitation to the size of the total candle (Highest - lowest)?</p>]]></description>
			<author><![CDATA[null@example.com (Itai)]]></author>
			<pubDate>Mon, 20 Sep 2010 14:35:56 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6643/#p6643</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6632/#p6632</link>
			<description><![CDATA[<p>The problem has been resolved<br />thanks&nbsp; Popov.</p>]]></description>
			<author><![CDATA[null@example.com (FOX000)]]></author>
			<pubDate>Mon, 20 Sep 2010 03:41:18 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6632/#p6632</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6631/#p6631</link>
			<description><![CDATA[<p>Dear Popov|<br /> open()-close()|&lt;=(( high() - low() )*p ) for Small body</p><p>|open()-close()|&gt;=(( high() - low() )*p ) for big body</p><br /><p>p=Percent .9 to 0.5 for small <br />p= Percent .5 to 0.1 for big </p><p>We need an Indicators calculates this equation with the possibility for give us Insert&nbsp; variable&nbsp; of Percent to make Optimizing</p>]]></description>
			<author><![CDATA[null@example.com (FOX000)]]></author>
			<pubDate>Mon, 20 Sep 2010 03:24:22 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6631/#p6631</guid>
		</item>
		<item>
			<title><![CDATA[Re: Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6630/#p6630</link>
			<description><![CDATA[<p><a href="http://postimage.org/image/pfea0uw4/"><span class="postimg"><img src="http://s2.postimage.org/cwWwr.jpg" alt="http://s2.postimage.org/cwWwr.jpg" /></span></a></p><p>The formula was changed a little. You can correct it if you want.</p><div class="codebox"><pre><code>double point = (Digits == 5 || Digits == 3) ? 10 * Point : Point;
double maxOpenClose = 5 * point;
double minHeight    = 1.2 * maxOpenClose;

for (int iBar = 1; iBar &lt; Bars; iBar++)
    if (Math.Abs(Close[iBar - 1] - Open[iBar - 1]) &lt; maxOpenClose &amp;&amp; High[iBar - 1] - Low[iBar - 1] &gt; minHeight)
        doji[iBar] = 1;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 20 Sep 2010 01:52:14 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6630/#p6630</guid>
		</item>
		<item>
			<title><![CDATA[Doji pattern in FSB]]></title>
			<link>https://forexsb.com/forum/post/6629/#p6629</link>
			<description><![CDATA[<p>Dear forum, </p><p>I think it could be very interested if it was possible to include a doji candle pattern in a strategy in the FSB. <br />I have worked out this formula:</p><p>( ( high() - low() ) * 0.64 ) &gt;= (( close () - open() )*(close()-open())) and high() - low() &gt; 1</p><p>This think this will be able to scan for dojis with a body no larger then 8 % of the high of the candle minus the low of the candle.</p><p>Does anyone know how this can be created as an indicator that can be used in FSB?</p><p>Best regards<br />Itai</p>]]></description>
			<author><![CDATA[null@example.com (Itai)]]></author>
			<pubDate>Sun, 19 Sep 2010 23:15:49 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/6629/#p6629</guid>
		</item>
	</channel>
</rss>
