Ok, this now I get it.
But what is the last column in this case.
Suppose that I use this:

Code:
vars PriceMed = series((priceHigh()+priceLow())/2);
  ZigZag(PriceMed, 0.0037, 16, 1);
  adviseLong(SIGNALS+BALANCED, 0, ADX(16));	
   	enterLong();



and I get the following:

Code:
27.98701,-0.62714
26.37550,-0.31357
23.96109,0.00000
22.05319,0.31357
22.05319,0.31357
20.36910,0.23518
19.20755,0.52269
18.48154,0.31357
17.66632,0.54003
16.73169,-0.06967
16.73169,-0.06967
15.97246,-0.03478
17.35032,-0.37452
16.89325,0.13934
16.35416,0.41802
15.26053,0.62714
15.27519,0.60970
15.90981,-1.30651
15.90981,-1.30651
16.12806,-1.93365
17.01053,-2.79597
16.64948,-1.04517
17.42188,-1.60264
18.66212,-0.04351
19.78223,-0.47908
21.14320,0.76648
21.14320,0.76648
21.14320,0.76648



so first column is ADX, but the second column is what? From where it takes those values?
Thanks.
Cheers.