Largest Number

 

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?

 
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);