Forum

Belkhayate Moving Average

Hello, Anybody knows where I can find a "Belkhayate Moving Average " indicator for metatrader (if any exists) ? Any format is ok source code or compiled (MQL4/5 or EX4/5) This indicator is explain on this video : https://www.youtube.com/watch?v=-a1MD_xzlvI Thanks for help

MT4 Build 711 - Issues, crashs...

Each time I recompile my EA (and it is used in some charts), MT4 crash and close SYSTEMATICALLY. Same problem when launching debug, the debug chart open, then crash... ==> It was working perfectly with previous build 6xx Very desappointing release :( because I also noticed many sudden crashes. This

MT4 Build 625 - Various issues

Did someone notice the following problems: ? - While debugging sometimes two terminals (or more) are launched, especially when the first one seems to be busy - Profiler does not display any tab, nothing happen while using it. - Button "ALL" (select all ?) in Objects list is not working

SymbolInfoString => SYMBOL_PATH returns nothing

Alert ( SymbolInfoString ( "EURUSD" , SYMBOL_PATH )); I expected this return "MajorFX" folder but it returns a blank string. Same for all symbols

MetaEditor Profiling - How does it work?

This option of the MetaEditor / debugger (build 604 or >) is very interesting. I cannot find any documentation. How can I get results

[FIXED] Build 604 - major issue with a string containing a single space " " and wininet.dll unicode W import

Don't know if someone got this: Alert ( "aaaaa " + Symbol ()+ " bbbbb " + " " + " ddddd" ); " " space is displayed by a "F" instead of the space itself. Same issue when using string concatenation and a single space between quote.. but in the above case with "Alert" if the call to Symbol() is omit

FileReadString in binary file problem ? [FIXED]

string cfgFilename = "myfile.cfg" ; string page = ""; int h = FileOpen (cfgFilename, FILE_READ | FILE_BIN ); if (h < 1 ) { Alert ( "[ERROR] " + Symbol ()+ " Cannot read file: " +cfgFilename); return ( false ); } else { int len = FileReadInteger (h, LONG_VALUE

MarketInfo: MODE_EXPIRATION always returns 0 on a CFD symbol

double expiration = MarketInfo ( "#NQH4" , MODE_EXPIRATION ); expiration is always == 0 any idea to fix this ? or do you think this is a problem from broker transmitting info to MT4? thanks for help

EX4 files automatically deleted when launching MT4 Terminal !!!

Hi, I've an horrible problem that suddenly happened this morning and I can't fix it: When I launch the MT4 terminal all my .ex4 EA files are automatically deleted. Of course, if I shut-down the terminal and just compile from MetaEditor, everything is fine EX4 are well in the expert folder. If I

How to Re-Calculate OrderProfit ?

Hi, I know the question has been asked few times but I cannot get the same amount as OrderProfit() by doing this (when this is a profitable position > 0) profit = MathAbs(price - OrderOpenPrice ()) * OrderLots () * MarketInfo ( Symbol (), MODE_TICKVALUE) / Point ; profit += OrderSwap () +