<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="2.0" xml:base="http://www.metatrader.info">
<channel>
 <title>metatrader.info - Metatrader community - Forex Trading with Metatrader</title>
 <link>http://www.metatrader.info</link>
 <description>Forex trading with Metatrader. Training, indicators and experts advisors.</description>
 <language>en</language>
<item>
 <title>MetaTrader MAC Project</title>
 <link>http://www.metatrader.info/node/3559</link>
 <description>&lt;p&gt;Hi everyone this is James! Nice to meet everyone LOL!  Well I am embarking on a wild endeavour in the MT3/4/5 realm I am a average trader / coder but i was met with frustration this year when i switched to MAC.  I was Sick of all the MS B/S and crashes, problems, and updates so after 20 years of resistance i switched to MAC.  You guys all know already Metatrader is windows based, and there is no comparable MAC platform that runs with the same versatility.  So I am writing one.  I am a Novice Programmer so this will probably take a while and this is going to be my hobby more than anything.  I basically just want to see if i can do it.  I want it to have all the same functionality as a base, but i also want it to be backwards compatable with EAs and MT4 / MT5. Essentially i want it to be CLIENT SIDE ONLY.  My true vision is that it will interface with all broker SERVERS just like the MT-Family and look identical to any other MT4/5 from the Server perspective. Just increase the ability and or functionality on the client side in a MAC sort of way.  I Run MT4/5 under Parallels on my mac now and it works fine, but we shouldnt have to jump through that hoop.  And the reality is that im just as pissed at metaquotes for the non backwards compatability of MQL5 for MQL4.  All of us worked hard to learn 4 and make Scripts and EAs that are now useless.  Let me know what you guys think of the idea.  BTW my new Site is PipHitman.com  I dont sell anything there, Just info;  and i go by jedimedic77 on MQL4.com i have a few scripts uploaded there.  Be safe everyone and GOOD TRADING&lt;/p&gt;
</description>
 <pubDate>Tue, 27 Apr 2010 16:34:16 +0200</pubDate>
</item>
<item>
 <title>Programming notknowing</title>
 <link>http://www.metatrader.info/node/3557</link>
 <description>&lt;p&gt;I have paid a programmer to write a program. When I replace the logic in the upper part of the program it makes the lower part of the program not work. It keeps saying &quot;&#039;UseEachTick&#039; - expression on global scope not allowed	C:\Program Files\FXDD - MetaTrader 4\experts\Bunge EA v0Non.mq4 (154, 7) and it makes each line of the program that worked not work. Everything will work if I put back the original indicators and logic but when I replace the indictors and the logic to make a new EA it says line by line that I can not use the programming as it is unacceptable on a global scope. What did I do wrong?&lt;/p&gt;
</description>
 <pubDate>Fri, 16 Apr 2010 22:44:11 +0200</pubDate>
</item>
<item>
 <title>Gmail Reader dll</title>
 <link>http://www.metatrader.info/node/3556</link>
 <description>&lt;p&gt;Hi, I&#039;m new here and I found my way here through a post by newdigital on forex-tsd.&lt;/p&gt;
&lt;p&gt;I got to the section he posted the url for, but the download of the dll, and the script on how to use it does not work.&lt;/p&gt;
&lt;p&gt;Since there is no search facility on this site, I can not try any other way to find the two items (or alternatively a post that explains a bit on how to use dll&#039;s through mt4 in general) other than to ask for assistance.&lt;/p&gt;
&lt;p&gt;So if anyone can help me I would appreciate it.&lt;/p&gt;
&lt;p&gt;Thank you,&lt;br /&gt;
BlueMental&lt;/p&gt;
</description>
 <pubDate>Fri, 16 Apr 2010 22:32:35 +0200</pubDate>
</item>
<item>
 <title>How to clear the Array memory??</title>
 <link>http://www.metatrader.info/node/3554</link>
 <description>&lt;p &gt;There are some bugs in my code. &lt;br &gt;So that I made some test code as follow. &lt;br &gt;for (int i=Bars;i&amp;gt;=0;i--)&lt;br &gt;{&lt;br &gt;&amp;nbsp;&amp;nbsp; ExtMapBuffer1[i]=i+100;&lt;br &gt;&amp;nbsp;&amp;nbsp; Print(&amp;quot;i=&amp;quot;,i,&amp;quot; E0=&amp;quot;,ExtMapBuffer1[0],&amp;quot; E1=&amp;quot;,ExtMapBuffer1[1],&amp;quot;E2=&amp;quot;,ExtMapBuffer1[2],&amp;quot; E3=&amp;quot;,ExtMapBuffer1[3]);&lt;br &gt;}&amp;nbsp;&lt;br &gt;&lt;br &gt;=&amp;gt; it returns&lt;br &gt;iTest_01 EURUSD,Weekly: i=0 E0=100 E1=101 E2=102 E3=103&lt;br &gt;iTest_01 EURUSD,Weekly: i=1 E0=2147483647 E1=101 E2=102 E3=103&lt;br &gt;iTest_01 EURUSD,Weekly: i=2 E0=2147483647 E1=2147483647 E2=102 E3=103&lt;br &gt;&lt;br &gt;There is a very strange value&amp;quot;214....&amp;quot;. &lt;br &gt;&lt;strong &gt;Why the empty array will start with &amp;quot;214....&amp;quot; rather then 0??&lt;/strong&gt; &lt;/p&gt;
</description>
 <pubDate>Thu, 04 Mar 2010 17:20:27 +0100</pubDate>
</item>
<item>
 <title>Optional Function Parameters?</title>
 <link>http://www.metatrader.info/node/3553</link>
 <description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;The MT4 documentation says you can create a function with optional parameters thus:&lt;/p&gt;
&lt;p&gt;&lt;code &gt;&lt;br /&gt;
void example (int a, int b=0);&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Then, according to the documentation, it should be possible to call the function thus:&lt;/p&gt;
&lt;p&gt;&lt;code &gt;&lt;br /&gt;
example (15);&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;and 0 should be substituted for the second argument. Instead, I keep getting the error: &lt;/p&gt;
&lt;p&gt;&lt;code &gt;&lt;br /&gt;
&#039;)&#039; wrong parameter count.&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;What am I overlooking here? Is there any documentation or book that is more detailed than the MT4 online documentation, maybe?&lt;/p&gt;
&lt;p&gt;Oh, and here a very important detail. The problem occurs only if the function is external, residing in a library file, and the above declaration is in an mqh file. The library file will compile fine, but the error occurs in the calling expert.&lt;/p&gt;
</description>
 <pubDate>Wed, 03 Mar 2010 09:03:17 +0100</pubDate>
</item>
<item>
 <title>changing code for new wav file</title>
 <link>http://www.metatrader.info/node/3552</link>
 <description>&lt;p&gt;hi can anyone tell me how to change initialisation code to accept new wav file in metaeditor &lt;/p&gt;
&lt;p&gt;triying to get spoken alert in a me crossover indicator.&lt;/p&gt;
</description>
 <pubDate>Sat, 16 Jan 2010 17:30:12 +0100</pubDate>
</item>
<item>
 <title>How to take screenshots of other charts?</title>
 <link>http://www.metatrader.info/node/3551</link>
 <description>&lt;p&gt;Hi, I know how to take a screenshot of the current window using the WindowsScreenShot (cant remember the exact name).&lt;/p&gt;
&lt;p&gt;But how can I take a screenshot of another window thats open but not active? I would like to take a screenshot of all open 5m charts so I can ftp them.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
</description>
 <pubDate>Thu, 07 Jan 2010 16:14:08 +0100</pubDate>
</item>
<item>
 <title>I can not see the pictures in metatrader.info</title>
 <link>http://www.metatrader.info/node/3542</link>
 <description>&lt;p&gt;Hello,&lt;br /&gt;
I just start to use metatrader.info. In the reports, the pictures are not shown. Do I need a certain setting? or a special program?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Dropje&lt;/p&gt;
</description>
 <category domain="http://www.metatrader.info/taxonomy/term/18">Other</category>
 <pubDate>Thu, 24 Sep 2009 10:38:54 +0200</pubDate>
</item>
<item>
 <title>MT4 script to submit buy/sell orders from CSV file</title>
 <link>http://www.metatrader.info/node/3540</link>
 <description>&lt;p&gt;Hi All&lt;/p&gt;
&lt;p&gt;does any one have a script to upload buy/sell orders from an excel file?&lt;br /&gt;
I saw this method in a post a few days ago but now I cant find it :(&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;Sam&lt;/p&gt;
</description>
 <pubDate>Sat, 19 Sep 2009 07:29:36 +0200</pubDate>
</item>
<item>
 <title>Custom Indicator</title>
 <link>http://www.metatrader.info/node/3539</link>
 <description>&lt;p&gt;Does anyone know how to make an indicator that posts text like comments in a chart. I have code that calculates position size, risk amounts, and margin requirements for FAP Turbo currency pairs in a comments section in the chart window.  The problem is that the chart makes it hard to read the text.&lt;/p&gt;
</description>
 <pubDate>Wed, 16 Sep 2009 20:18:11 +0200</pubDate>
</item>
<item>
 <title>DLL extension file</title>
 <link>http://www.metatrader.info/node/3538</link>
 <description>&lt;p&gt;When compiling an mq4 file to ex4 file, how does it affect the extension file. Or better still how can the extension file be compiled to become ex4 file too? I will appreciate an idea for a solution&lt;/p&gt;
</description>
 <pubDate>Fri, 21 Aug 2009 15:54:57 +0200</pubDate>
</item>
<item>
 <title>Compiler Procedures</title>
 <link>http://www.metatrader.info/node/3537</link>
 <description>&lt;p&gt;I just want to know. I have been trying to use the metaeditor compiler or by pressing f5 to conver mq4 to ex4 file but it says &quot;compiling .....My EAs name&quot; and it is as if it will continue forever. How do I know when it has finish compiling the file and where can I locate it? Please, if anyone has the idea, he or she should tell me&lt;/p&gt;
</description>
 <category domain="http://www.metatrader.info/taxonomy/term/15">Expert Advisors</category>
 <pubDate>Fri, 21 Aug 2009 15:52:01 +0200</pubDate>
</item>
<item>
 <title>Need an indicator MACD to ADX</title>
 <link>http://www.metatrader.info/node/3536</link>
 <description>&lt;p&gt;I need an indicator.&lt;br /&gt;
If you are a programmer I will pay for such an indicator. Please let me know you can contact me at tigger.gotstripes@gmail.com&lt;/p&gt;
&lt;p&gt;Thank you,&lt;br /&gt;
tigger&lt;/p&gt;
</description>
 <category domain="http://www.metatrader.info/taxonomy/term/14">Indicators</category>
 <pubDate>Sun, 16 Aug 2009 23:08:44 +0200</pubDate>
</item>
<item>
 <title>Looking for a programmer who can write EA similar to martingale strategy</title>
 <link>http://www.metatrader.info/node/3535</link>
 <description>&lt;p&gt;Hi I am looking for a programmer who can wite an EA for me. I can explain the strategy by email or on chat.my chat is kiran.forexveda in yahoo.com and forexveda in gmail.com Formual is similar to martingale strtegy, but with some difference. &lt;/p&gt;
&lt;p&gt;Kiran Kumar&lt;/p&gt;
</description>
 <pubDate>Thu, 09 Jul 2009 07:32:48 +0200</pubDate>
</item>
<item>
 <title>MT4 Suffixes and EAs</title>
 <link>http://www.metatrader.info/node/3534</link>
 <description>&lt;p&gt;Hey - just wondering if anyone knew how to modify an existing expert advisor so that it works with forex brokers&#039; mt4 clients with suffixes.  For example, an EA I wrote doesn&#039;t work properly on forex.com/Gain&#039;s MetaTrader4 platform since all the quotes have FXF after it, EURUSDFXF.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
</description>
 <pubDate>Mon, 22 Jun 2009 13:54:30 +0200</pubDate>
</item>
</channel>
</rss>

