Discussion of article "Statistical Distributions in MQL5 - taking the best of R" - page 15

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Thank you,
just in case (in case it matters):
I have MT5 running via wine in ubuntu 14
Either I've messed something up, or there's a problem with the empirical density calculation. It looks as if the axes were mixed up during scaling:
Error in calculating RMS
Error when calculating RMS
Is this an answer to someone or just talking to yourself? Tomorrow I will look at the source code, maybe there is an error there.
Is this an answer to someone or just talking to yourself? Tomorrow I will look at the source code, maybe there is a mistake there.
The article describes functions from Math.mqh, in particular. I have extracted the source code of one such function and highlighted the error.
The article describes functions from Math.mqh, in particular. I have extracted the source code of one such function and highlighted the error.
is the calculation of unbiased, or standard deviation. In other words, there are two quadratic ones :-) if divided simply by size - then the mean-square, if divided by size-1 then the unbiased or standard deviation. In different cases different ones are used, but at large size the difference is vanishingly small
Yes, it is
is the calculation of unbiased, or standard deviation. In other words, there are two quadratic ones :-) if divided simply by size - then the mean-square, if divided by size-1 then the unbiased or standard deviation. Different ones apply in different cases, but at large size the difference is vanishingly small
Why introduce something that doesn't work at small size and minimally differs at large size?!
You can divide by (size-1) in MathMean. Almost nobody will notice.
ZY R also counts through (size-1)? I checked in MathMean - it divides by size. Wolfram - by (size-1). Stupidity.
Why introduce something that does not work at small sizes and is minimally different at large sizes!
You can divide by (size-1) in MathMean. Almost nobody will notice.