mixtermind:
How do you determine the largest number in a series?
For instance:
1,2,3,4,5
How can I determine that 5 is the largest number by using MQL?
Figured it out:
int Ind_max =ArrayMaximum(High,Quant_Bars,1);
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
How do you determine the largest number in a series?
For instance:
1,2,3,4,5
How can I determine that 5 is the largest number by using MQL?