<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Indicators Included in FSB Pro Distribution]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/4208" />
	<updated>2020-09-09T12:39:13Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/4208/indicators-included-in-fsb-pro-distribution/</id>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/62219/#p62219" />
			<content type="html"><![CDATA[<p>You don&#039;t need to update.</p><p>If you want more functional indis you have to use custom ones. In your example I&#039;d suggest to use Ichi M indi, it is available here =&gt; <a href="https://forexsb.com/forum/post/31971/#p31971">https://forexsb.com/forum/post/31971/#p31971</a></p>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2020-09-09T12:39:13Z</updated>
			<id>https://forexsb.com/forum/post/62219/#p62219</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/62217/#p62217" />
			<content type="html"><![CDATA[<p>Hello Popov,</p><p>From the time I installed the software, I&#039;ve not updated my indicators list. Please let me know if I need to. </p><p>Also, I don&#039;t know why I cannot use Ichimoku for exit conditions. Is there anyway to be able to use it? For example, I want to exit long if price closes below Kijunsen. I would appreciate if you advise.</p>]]></content>
			<author>
				<name><![CDATA[Alishafi]]></name>
				<uri>https://forexsb.com/forum/user/12445/</uri>
			</author>
			<updated>2020-09-09T11:22:28Z</updated>
			<id>https://forexsb.com/forum/post/62217/#p62217</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/48602/#p48602" />
			<content type="html"><![CDATA[<p>You can find all indicators here.</p><p><a href="https://github.com/PopovMP/FSB_Pro_Indicators">https://github.com/PopovMP/FSB_Pro_Indicators</a></p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2018-01-06T17:06:12Z</updated>
			<id>https://forexsb.com/forum/post/48602/#p48602</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/48601/#p48601" />
			<content type="html"><![CDATA[<p>Thank you for your response. Is it possible to get the latest version to experiment with?</p>]]></content>
			<author>
				<name><![CDATA[tobias.stiefel]]></name>
				<uri>https://forexsb.com/forum/user/9785/</uri>
			</author>
			<updated>2018-01-06T16:36:01Z</updated>
			<id>https://forexsb.com/forum/post/48601/#p48601</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/48600/#p48600" />
			<content type="html"><![CDATA[<p>Tobias,</p><p>Trailing Stop, Trailing Stop Limit, Stop Limit, Break Even and some others are not actual indicators. These are just placeholders to present the settings to the user interface. The actual implementation is in the core of the backtester.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2018-01-06T15:52:25Z</updated>
			<id>https://forexsb.com/forum/post/48600/#p48600</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/48599/#p48599" />
			<content type="html"><![CDATA[<p>Good day mr. Popov</p><p>I tried to copy the trailing stop and the trailing stop limit from the above link and save it as a custom indicator, but both have a problem and stop the trailing is not triggered. I&#039;ve made the observation that he adapts to the course in both directions. I have not made any changes to the code, just changed the name. What can this be? Does the trailing stop need to be stored differently than the other indicators? Are the original indicators also found on my PC or only through the link above?</p><p>Thnks for your help.</p><p>Best regards</p>]]></content>
			<author>
				<name><![CDATA[tobias.stiefel]]></name>
				<uri>https://forexsb.com/forum/user/9785/</uri>
			</author>
			<updated>2018-01-06T15:10:15Z</updated>
			<id>https://forexsb.com/forum/post/48599/#p48599</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/41671/#p41671" />
			<content type="html"><![CDATA[<p>Hi Mr Popov, I found an issue with the included Rate of Change indicator&#039;s .mqh file.<br />It wasn&#039;t making any trades.<br />I made 2 changes, not sure which one fixed it.</p><p>first I created a new variable just in case creating a moving average of itself was causing an issue:<br /></p><div class="codebox"><pre><code>   double Roc[]; ArrayResize(Roc,Data.Bars); ArrayInitialize(Roc,0);  

   for(int bar=period; bar&lt;Data.Bars; bar++)
      Roc[bar]=price[bar]/price[bar-period];

   if(smooth&gt;0)
      MovingAverage(smooth,0,method,Roc,adRoc);
   else
      ArrayCopy(Roc,adRoc);</code></pre></div><p>then I added an arrayinitialize line to the 2 components<br /></p><div class="codebox"><pre><code>   ArrayResize(Component[1].Value,Data.Bars);
   ArrayInitialize(Component[1].Value,0);
   Component[1].FirstBar=firstBar;

   ArrayResize(Component[2].Value,Data.Bars);
   ArrayInitialize(Component[2].Value,0);
   Component[2].FirstBar=firstBar;</code></pre></div><p>Please check this out. Making these changes will make it work.&nbsp; Have a good day!</p>]]></content>
			<author>
				<name><![CDATA[jetaro]]></name>
				<uri>https://forexsb.com/forum/user/9581/</uri>
			</author>
			<updated>2017-02-14T14:52:02Z</updated>
			<id>https://forexsb.com/forum/post/41671/#p41671</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/24932/#p24932" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>1- {&quot;Limit the number of open lots&quot;};&nbsp; what s that ?</p></blockquote></div><p>This is part of Lot Limiter indicator.</p><div class="quotebox"><blockquote><p>2- May you convert two or three indicators in the new indicators set to LTF&nbsp; for us to start imitate</p></blockquote></div><p>No conversion is necessary. FSB Pro provides LTF functionality for all indicators. The only step&nbsp; you have to make for your custom indicators is for these that <strong>DO NOT work with LTF</strong>. You have to mark them with&nbsp; <strong>IndParam.IsAllowLTF = false;</strong>. Such indicators are these providing a specific moment for entry / exit or other filters.</p><p>Examples for indicators that are marked with&nbsp; IndParam.IsAllowLTF = false;<br />Lot Limiter - this indicator has nothing common with the time frame.<br />Entry Hour, Stop Loss, Take Profit, Stop Limit, Close and Reverse, Bar Closing...</p><p>All other regular indicators will work with LTF <strong>without changes</strong>.<br />All custom indicators from the repository will work with LTF by defautl.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2014-05-02T19:57:47Z</updated>
			<id>https://forexsb.com/forum/post/24932/#p24932</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/24931/#p24931" />
			<content type="html"><![CDATA[<p>Thans pop </p><p>Our turn to ask and request <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><br /><p>1- {&quot;Limit the number of open lots&quot;};&nbsp; what s that ?</p><br /><p>2- May you convert two or three indicators in the new indicators set to LTF&nbsp; for us to start imitate</p><br /><p>Thanks</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2014-05-02T19:22:13Z</updated>
			<id>https://forexsb.com/forum/post/24931/#p24931</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/24928/#p24928" />
			<content type="html"><![CDATA[<p>Indicator set is updated. Find a download link in the first post.</p><p>A new parameter is added: <strong>IndParam.IsAllowLTF</strong></p><p>It is set to true by default. FSB Pro shows Longer Time Frame (LTF), Signal Shift and Signal Repeat options if&nbsp; IndParam.IsAllowLTF = true.</p><p>You have to set it to false for the indicators that do not accept LTF like: Day Opening, Bar Closing, Lot Limiter...</p><div class="codebox"><pre><code>public override void Initialize(SlotTypes slotType)
{
    SlotType = slotType;

    IndParam.IndicatorType = TypeOfIndicator.Additional;
    IndParam.IsAllowLTF = false;  // &lt;===================== LTF is not allowed

    // The ComboBox parameters
    IndParam.ListParam[0].Caption = &quot;Logic&quot;;
    IndParam.ListParam[0].ItemList = new[] {&quot;Limit the number of open lots&quot;};</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2014-05-02T15:46:06Z</updated>
			<id>https://forexsb.com/forum/post/24928/#p24928</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/23373/#p23373" />
			<content type="html"><![CDATA[<p>pardon my ignorance if you can, but if you&#039;ve got a .dll file for a custom indicator [but not an .mq4 file] and you want to have FSB call it, and perhaps incorporate into a FST strategy,&nbsp; can that be done? and if so, how does one go about. please direct me to forum discussion on the subject. does FSB need both a dll And a mq4 file?</p>]]></content>
			<author>
				<name><![CDATA[jgp]]></name>
				<uri>https://forexsb.com/forum/user/3747/</uri>
			</author>
			<updated>2014-01-17T15:48:58Z</updated>
			<id>https://forexsb.com/forum/post/23373/#p23373</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/22021/#p22021" />
			<content type="html"><![CDATA[<p>I have updated FSB builder to the newest version (not the PRO).<br />I have downloaded the newsest indicators form rpository but still i get these errors.<br />Does it mean these indicators are no longer supported or did I do something wrong?<br />Custom Indicators</p><p>File name: A High Low Close Moving Average v2.cs<br />ERROR: Obsolete format of source code in file [A High Low Close Moving Average v2.cs].<br />Get a newer version from Code Repository.</p><p>File name: A HLC Candle formation 9 Bars Moda.cs<br />ERROR: Obsolete format of source code in file [A HLC Candle formation 9 Bars Moda.cs].<br />Get a newer version from Code Repository.</p><p>...</p>]]></content>
			<author>
				<name><![CDATA[togr]]></name>
				<uri>https://forexsb.com/forum/user/3519/</uri>
			</author>
			<updated>2013-09-24T10:21:50Z</updated>
			<id>https://forexsb.com/forum/post/22021/#p22021</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/20125/#p20125" />
			<content type="html"><![CDATA[<p>Yep:)&nbsp; Works like a charm <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[Radar]]></name>
				<uri>https://forexsb.com/forum/user/7448/</uri>
			</author>
			<updated>2013-06-02T11:51:09Z</updated>
			<id>https://forexsb.com/forum/post/20125/#p20125</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/20123/#p20123" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>I get an &quot;Obsolete format&quot; error for EnterOnce.cs from the above zipfile when starting FSB v2.98.3 RC...</p></blockquote></div><p>Indicator is good enough to work in FSB as integrated. When you put as a custom indicator, FSB checks it if it is compatible with FSB Pro. This check is more strict. It seams I missed something in this indicator. I&#039;ll fix it.</p><p>First I see is missing declaration of namespace usage:<br /></p><div class="codebox"><pre><code>using ForexStrategyBuilder.Infrastructure.Entities;</code></pre></div><p>This namespace is not used in FSB but is necessary for FSB Pro.<br />If you add this line in the beginning of the file, it will most probably work.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2013-06-02T07:33:27Z</updated>
			<id>https://forexsb.com/forum/post/20123/#p20123</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Indicators Included in FSB Pro Distribution]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/20122/#p20122" />
			<content type="html"><![CDATA[<p>Hey Popov,</p><p>I get an &quot;Obsolete format&quot; error for EnterOnce.cs from the above zipfile when starting FSB v2.98.3 RC...</p><p>It appears that there&#039;s a working version getting loaded somewhere, though.</p><p>Hmmm, too weird... I just grabbed a copy from the git repository, and am getting the same error, yet there is still a working version somewhere in the prog.</p><p>Have fun!</p><p>Radar&nbsp; =8^)</p>]]></content>
			<author>
				<name><![CDATA[Radar]]></name>
				<uri>https://forexsb.com/forum/user/7448/</uri>
			</author>
			<updated>2013-06-02T07:01:08Z</updated>
			<id>https://forexsb.com/forum/post/20122/#p20122</id>
		</entry>
</feed>
