A sorting problem

 

I have to bring this up. What is the best way in MQL4 to sorting a data table with a specified column of the data table? I tried 2 dimensional array to store this data table in memory, but how can I sort it? With ArraySort() function?

 
niva:
I have to bring this up. What is the best way in MQL4 to sorting a data table with a specified column of the data table? I tried 2 dimensional array to store this data table in memory, but how can I sort it? With ArraySort() function?

ArraySort() used for 1 dimensional array. you can sort it manualy with loops.