The PRINT function is used to display the variable value for each candle in a table. Like the GRAPH and GRAPHONPRICE instructions it is intended to help debugging.
For example :
1 2 3 |
R=255 B=255 PRINT(VarA) as "A" COLOURED(R,0,0) FILLCOLOR(0,0,B) |
Displays in a table the values taken by VarA. The header of the corresponding column will be “A”, the text will be written in red (COLOURED instruction) on a blue background (FILLCOLOR instruction)