<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Some restrict in Control Panel - Symbols]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/6434/" />
	<updated>2017-06-06T17:26:07Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/6434/some-restrict-in-control-panel-symbols/</id>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/44123/#p44123" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>AnarchoTrader wrote:</cite><blockquote><p>On Control Panel - Symbols, I can&#039;t add or modificate imported via FSB-MT4 Brige symbols with postfix &quot;.m&quot;, &quot;.e&quot; etc., used my brocker on some type of accounts. e - ECN, m - micro.<br />EURUSD.e, EURUSD.m, EURUSD.m1, ...</p><p>If it possible, fix it, please. Thx.</p></blockquote></div><br /><p>For MT4, use attached EA to export to csv. It will remove .m&#039;s from filename so FSB can import it automatically (and continously i guess).</p><p>Found it somewhere, modified a bit. Have been using it for a long time.</p>]]></content>
			<author>
				<name><![CDATA[kukreknecmi]]></name>
				<uri>https://forexsb.com/forum/user/7125/</uri>
			</author>
			<updated>2017-06-06T17:26:07Z</updated>
			<id>https://forexsb.com/forum/post/44123/#p44123</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40558/#p40558" />
			<content type="html"><![CDATA[<p>I preferred to make these changes inside EXPORT Data to CSV in MT5</p><p>My symbols are USDCAD_i etc. Simple!</p><div class="codebox"><pre><code>//| Copyright:  (C) 2015 Forex Software Ltd.                           |
//| Website:    http://forexsb.com/                                    |
//| Support:    http://forexsb.com/forum/                              |
//| License:    Proprietary under the following circumstances:         |
//|                                                                    |
//| This code is a part of Forex Strategy Builder. It is free for      |
//| use as an integral part of Forex Strategy Builder.                 |
//| One can modify it in order to improve the code or to fit it for    |
//| personal use. This code or any part of it cannot be used in        |
//| other applications without a permission.                           |
//| The contact information cannot be changed.                         |
//|                                                                    |
//| NO LIABILITY FOR CONSEQUENTIAL DAMAGES                             |
//|                                                                    |
//| In no event shall the author be liable for any damages whatsoever  |
//| (including, without limitation, incidental, direct, indirect and   |
//| consequential damages, damages for loss of business profits,       |
//| business interruption, loss of business information, or other      |
//| pecuniary loss) arising out of the use or inability to use this    |
//| product, even if advised of the possibility of such damages.       |
//+--------------------------------------------------------------------+

#property copyright &quot;Copyright 2015, Forex Software Ltd.&quot;
#property link      &quot;http://forexsb.com&quot;
#property version   &quot;2.00&quot;
string finalsymbol1=Symbol();
string finalsymbol=StringSubstr(finalsymbol1,0,6);
   

void  OnStart()
  {
   Comment(&quot;Loading...&quot;);
   int maxBars= MathMin(TerminalInfoInteger(TERMINAL_MAXBARS),100000);
   string comment=&quot;&quot;;
   ENUM_TIMEFRAMES periods[] = {PERIOD_M1, PERIOD_M5, PERIOD_M15, PERIOD_M30, PERIOD_H1, PERIOD_H4, PERIOD_D1, PERIOD_W1};
   for(int p=0;p&lt;ArraySize(periods);p++)
     {
      comment+=ExportBars(periods[p], maxBars)+&quot;\n&quot;;
      Comment(comment);
     }
   comment+=&quot;Ready&quot;;
   Comment(comment);
  }
  
string ExportBars(ENUM_TIMEFRAMES period, int maxBars)
{
   MqlRates  rates_array[];
   ArraySetAsSeries(rates_array,true);
   int bars=CopyRates(_Symbol,period,0,maxBars,rates_array);
   string fileName=finalsymbol+PeriodToStr(period)+&quot;.csv&quot;;
   string comment=&quot;&quot;;
   if(bars&gt;1)
     {
      int filehandle=FileOpen(fileName,FILE_WRITE|FILE_CSV);
      for(int i=bars-1; i&gt;=0; i--)
        {
         FileWrite(filehandle,
            TimeToString(rates_array[i].time,TIME_DATE),
            TimeToString(rates_array[i].time,TIME_MINUTES),
            rates_array[i].open,
            rates_array[i].high,
            rates_array[i].low,
            rates_array[i].close,
            rates_array[i].tick_volume);
        }
      FileFlush(filehandle);
      FileClose(filehandle);
      comment=&quot;File exported: &quot;+fileName+&quot;, &quot;+IntegerToString(bars)+&quot; bars&quot;;
     }
   else
     {
      comment=&quot;Error with exporting: &quot;+fileName;
     }
   return (comment);
}

string PeriodToStr(ENUM_TIMEFRAMES period)
  {
   string strper;
   switch(period)
     {
      case PERIOD_M1  : strper=&quot;1&quot;;      break;
      case PERIOD_M5  : strper=&quot;5&quot;;      break;
      case PERIOD_M15 : strper=&quot;15&quot;;     break;
      case PERIOD_M30 : strper=&quot;30&quot;;     break;
      case PERIOD_H1  : strper=&quot;60&quot;;     break;
      case PERIOD_H4  : strper=&quot;240&quot;;    break;
      case PERIOD_D1  : strper=&quot;1440&quot;;   break;
      case PERIOD_W1  : strper=&quot;10080&quot;;  break;
      case PERIOD_MN1 : strper=&quot;302400&quot;; break;
      default : strper=&quot;&quot;;
     }
   return (strper);
  }
//+------------------------------------------------------------------+</code></pre></div>]]></content>
			<author>
				<name><![CDATA[GD]]></name>
				<uri>https://forexsb.com/forum/user/8542/</uri>
			</author>
			<updated>2016-12-27T05:49:44Z</updated>
			<id>https://forexsb.com/forum/post/40558/#p40558</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40552/#p40552" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Popov wrote:</cite><blockquote><p>Why do you need symbols with dots in FSB?<br />Set is with 6 capital letters and change the base file name in order to load files from MT. A data file doesn&#039;t contain the symbol name inside.</p><p>For example if your MT symbol is .AUDUSD, make an AUDUSD symbol in your Data Source and set base data file name &quot;.AUDUSD&quot;.</p><p>If you want to manage both kind of symbols - with dots and without, use different Data Sources for them.</p></blockquote></div><p>Now I simply save CSV data files from MT4 with deleted postixed from file names. &quot;EURUSD.e1.csv&quot; -&gt; &quot;EURUSD1.csv&quot;.<br />Add both those tickers EURUSD and EURUSD.e. In EURUSD.e automatically imported swops and spread from bridge MT4. Then I copypaste it to EURUSD and edit spred and comission. Then I use EURUSD for work.<br />But this method don&#039;t endable auto load hst-data form data directory, because MT4 create filenames with postfixed and that data downloading to symbols with postfixes.</p><p>And I tried you advice, if I correctly understand it. I edit symbol EURUSD - base file name - on ControlPanel - Symbols. But unfortunelly, Base filename don&#039;t enable dot too.</p><p>UPD. Now i edit base filenames of postfixed symbols to without dots. I think now data form csv filed will downloading to all of it.</p>]]></content>
			<author>
				<name><![CDATA[AnarchoTrader]]></name>
				<uri>https://forexsb.com/forum/user/9526/</uri>
			</author>
			<updated>2016-12-26T14:33:44Z</updated>
			<id>https://forexsb.com/forum/post/40552/#p40552</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40543/#p40543" />
			<content type="html"><![CDATA[<p>Why do you need symbols with dots in FSB?<br />Set is with 6 capital letters and change the base file name in order to load files from MT. A data file doesn&#039;t contain the symbol name inside.</p><p>For example if your MT symbol is .AUDUSD, make an AUDUSD symbol in your Data Source and set base data file name &quot;.AUDUSD&quot;.</p><p>If you want to manage both kind of symbols - with dots and without, use different Data Sources for them.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2016-12-26T06:40:18Z</updated>
			<id>https://forexsb.com/forum/post/40543/#p40543</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40542/#p40542" />
			<content type="html"><![CDATA[<p>in the meantime use the data supplied..... it is good data<br />I am sure that Popov has seen this in the past and has a fix, but I do not know it<br />sorry</p>]]></content>
			<author>
				<name><![CDATA[Blaiserboy]]></name>
				<uri>https://forexsb.com/forum/user/2491/</uri>
			</author>
			<updated>2016-12-26T02:40:31Z</updated>
			<id>https://forexsb.com/forum/post/40542/#p40542</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40541/#p40541" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Blaiserboy wrote:</cite><blockquote><p>control panel &gt; symbols</p><p>at the bottom enter your symbols with the suffix</p></blockquote></div><p>Application prohibits to use as a Symbol of all but six letters. No more then six, and no dots.</p><p>I can import that symbols only via FSB MT4 Bridge. But than I can&#039;t edit properties of it.</p>]]></content>
			<author>
				<name><![CDATA[AnarchoTrader]]></name>
				<uri>https://forexsb.com/forum/user/9526/</uri>
			</author>
			<updated>2016-12-26T01:24:33Z</updated>
			<id>https://forexsb.com/forum/post/40541/#p40541</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40540/#p40540" />
			<content type="html"><![CDATA[<p>control panel &gt; symbols</p><p>at the bottom enter your symbols with the suffix</p>]]></content>
			<author>
				<name><![CDATA[Blaiserboy]]></name>
				<uri>https://forexsb.com/forum/user/2491/</uri>
			</author>
			<updated>2016-12-26T00:24:59Z</updated>
			<id>https://forexsb.com/forum/post/40540/#p40540</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Some restrict in Control Panel - Symbols]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/40539/#p40539" />
			<content type="html"><![CDATA[<p>On Control Panel - Symbols, I can&#039;t add or modificate imported via FSB-MT4 Brige symbols with postfix &quot;.m&quot;, &quot;.e&quot; etc., used my brocker on some type of accounts. e - ECN, m - micro.<br />EURUSD.e, EURUSD.m, EURUSD.m1, ...</p><p>If it possible, fix it, please. Thx.</p>]]></content>
			<author>
				<name><![CDATA[AnarchoTrader]]></name>
				<uri>https://forexsb.com/forum/user/9526/</uri>
			</author>
			<updated>2016-12-25T22:59:40Z</updated>
			<id>https://forexsb.com/forum/post/40539/#p40539</id>
		</entry>
</feed>
