- Search Metals Mine
-
4xCoder replied Apr 6, 2008You want something like this extern string TradingDays = "TRADING Days"; extern bool UseDayTrade = True; extern int FromDayTrade = 2; //Tuesday extern int ToDayTrade = 5; //Friday See the DayOfWeek and TimeDy of Week functions for details.
Need help for programming
-
4xCoder replied Apr 5, 2008RAM = Performance. In otherwords the more RAM you have, the better your apps will run. Disk space isn't an issue, 5 gig should be enough for you, but get at least 512 mb RAM, 1 gb if you can find it.
Trading VPS Requirements?
-
4xCoder replied Feb 6, 2008I think you described the Fractals Indicator. Look in the Indicators section of the Navigator for Fractals. url
Idea for indicator need help programming
-
4xCoder replied Aug 15, 2007Give AutoIt V3 a try. It has a DLL that should be callable from MQL4.
how to create a system without using API ? :)
-
4xCoder replied Apr 4, 2007For those asking, you can find the details on the OandA API here url I did some work with it for a client not to long ago. You could build a DLL that can be called from MQL to do the trades and check the status.
MT4 with Oanda API
-
4xCoder replied Mar 2, 2007Take a look at the account information functions of MQL4 at url AccountFreeMargin is the function you need to get the current free margin. You might also look at AccountFreeMarginCheck.
Need help with Code
-
4xCoder replied Feb 14, 2007Here's the correct link url Only the russian site has the databank, but they do have an english version of their site.
Forex Historical Data
-
4xCoder replied Jan 26, 2007I'm definitly indicator happy, as you might guess from my nick. Here's a small sample of indicators I've done. Paint bars and profit lines (show profits and losses for trades) for MACD Momentum, Clock and Grid and a Woodie's CCI suite with CZI and ...
Who else does custom indicators?
-
4xCoder replied Jan 21, 2007Alpari also has Eurocad. Make sure you do a right click in the Symbols window and then Show All, otherwise it might be hidden
Eur/cad
-
Manual Testing in Metatrader
Started Jan 21, 2007|Platform Tech|0 replies
I found the Visual Testing Tools posted at {url} Here are the tools translated into English. ...
-
4xCoder replied Jan 21, 2007Unfortunatly, AFAIK, that's a "feature" not a bug. Metatrader limits you to what your broker sets up on their server. The only way I can think of to get around it is to reverse engineer the network protocols and build a dummy server. If you find a ...
Importing 3rd part data into MT4
-
4xCoder replied Jan 10, 2007I ran into that problem, except the font for me got huge. It took me a while to figure out what did it for me. I was programming in C# and was using the browser activex control. I changed the font size up one, using right click, and it blew it all ...
Help! MetaEditor Documentation font size shrunk!
-
4xCoder replied Jan 7, 2007url It's a board that targets Metatrader programming and EA development.
EMA Alert Needed
-
4xCoder replied Jan 4, 2007Try changing the == below to > in the first if and < in the second if. The way it is now, you'll enter only when the the close price is exactly ema + entrypips and that will never happen. if (total < maxLots) { if (Close[0] == ema + EntryPips*Point ...
Need help programming some indicators/EAs
-
4xCoder replied Dec 28, 2006This is the latest version of my Clock indicator, it's a lot easier to set up.
How to change time zone in Meta Trader?
-
4xCoder replied Dec 23, 2006You can do this with the built-in Moving Average indicator by changing the Close Price to Typical Price. In MQ4 you would do iMA( NULL, 0, period, 0, MODE_SMA, PRICE_TYPICAL, shift ); See url for details
Need help programming some indicators/EAs