If you need only the array inside the `DATA`, then do it like this:
for(var i in response.DATA){
alert(response.DATA[i]);
}
Otherwise if you want all the values `tps, tvq, 10.0, and 20.0`, then do it like this:
for(var i in response.DATA[0]){
alert(response.DATA[0][i]);
}