Forum

ArraySetAsSeries doesnt work| Admin?

EXAmple: double arraytest[5] = { 3, 2 ,5, 6,8 }; ArraySetAsSeries(arraytest,true); // reverse Print (arraytest[0]); // Expected result should be 8. // but the result is 3. ------ Is this a bug ? If not I need help

Problem with STRATEGY TESTER

I have designed an EA. When I run it on the strategy tester visualization mode (slow) the ea act like I want, but when I speed it up my EA seems to jump over all the signals thats is in the program. Why? Whats is the problem here, anyone? Admin? How can I solve this problem? Something wrong with my

How can I get access to this

Hi, how can I get access to the "License" see the pic. Thien

How to stop a program?

Hi, what is the command to kill a program in MQL5

I NEED HELP. MACROSS, ALERT.

Code: bool ma4 = 0; // value 1 == Cross signal if(ma1[1] < ma2[1]&& ma1[0] > ma2[0]) ma4 = 1; Alert("Cross signal down"); Hi, I want my code to print/alert only one time in the journal when ma4 is still in value 1. Right now my code is printing alot " cross signal down" when ma4 = 1. Any one can

Bug in CSymboInfo.mqh ? Need help

#include <Trade/SymbolInfo.mqh> CSymbolInfo sym; int OnInit() { double askprice =sym.Ask(); Print ( "askprice =", Ask()); } //I got the result : askprice = 0. I cant manage to get the last ask price from OOP. So it is bug in SymbolInfo.mqh? What is wrong here