dck
dck
Friends

Add friends via their profile or user search and you will be able to see if they are online

dck
Added topic Bug in Examples/ZigZag Indicator
Just now the ZigZag in the example folders has a bug. It has a double High and a double Low. look at the attached screenshots Setting are: 24,10,6 on GBPUSD & 18,7,5 on EURCHF  just me? regards daniel 
dck
Added topic [bug] return issue with structs!
Hello, this bug took me some days to catch. The same code executed from Onstart() works, but from a method or function does NOT. Here is the Script code: struct STest{    double       a, b;   
dck
Added topic is it posible to assign NaN to a variable of type double?
A variable of type double is alway set. Can I assign it to NaN? - MathIsValidNumber() returning false ? void OnStart () {    double a;    Print ( MathIsValidNumber (a), " " ,a); //-> "true 0.0" } doc Quote from
dck
Added topic Vector Graphics Library port to MQL, help needed!
Since the availability of CCanvas it is time for a Vector library. To do so, I tried to port parts of paperjs.org (The Swiss Army Knife of Vector Graphics Scripting) to MQL. Help is needed cause I can't fix the remaining issues myself. I guess that
dck
Added topic (bug?) static struct::factory not working
While trying to realize factories within Structs I came across something that's possibly a Bug. It compiles fine, but a static Method seems to return the wrong thing... simplified example: struct Info {    double a;    double b;
4
dck
Added topic How to initializ structs in function calls??
Hi, is there a way to initialize a struct within a function call. Does it work only for classes? CClass c; SStruct s;    // works with classes! c.Test( new CClass());    // error: '{' - parameter passed as reference, variable
1
dck
Added topic How to duplicate objects like CObject???
Hi CObject *o1 = new CObject(); CObject *o2 = o1; o1 and o2 are now referring to the same object - that is the proper way, I'm not complaining. But how do I copy an Object?    thank you
2
dck
Added topic How to get my highest account balance?
Hi,  for an custom Money management I would like to know the highest account balance . Is there a solution except from looping through the History Deals? thank you 
dck
Added topic My CSignalRandom isn't Random. Please Help Me - I know about MathSrand()
I'm developing a Random Signal and it looks like if this isn't as easy as I thought. the intention to allow some sort of variance even in the tester. But the problem is that every tester run is the same, no variance at all.  Here is my code: int
dck
Added topic Making the Trade History Visible on a Chart?
Hi all, Is it possible to display the closed trades on the charts in metatrader5. There is the tabular Deals and Trade listing with all the Informations, but I cant find a way to visualize these. Thank you 
dck
Added topic Date and Time Calculation How To???
How to Calculate with date and times? On several places there are comments like the following (https://www.mql5.com/en/forum/688):  datetime t; MqlDateTime mdt; TimeToStruct(t,mdt);  mdt.day += 45; //or mdt.day = 50; //50 days from the
dck
Registered at MQL5.community