How to print the values of an array on the chart?

 

Hi everyone


I have this array called Percentage[] that calculates the rapport between the volumes of 2 neighboring candles.

How can I "print" it on the chart, below the bars? 


             Percentage[i]=DoubleToString(100*double(Volume[i+1])/double(Volume[i]),2)


I know how to DRAW_ARROW for an array and put an arrow or some other object below/above a specific bar.

But I don't how to publish ON the chart some text or numbers that are part of an array.

What am I missing? 


Thanks guys and all the best!

 
Draw a text object.
 
Keith Watford:
Draw a text object.
Thanks a lot Keith!
Reason: