Hi,

this is not in manual:

im trying calculate body candle size - but i get still zero with this code (open and close price is the same value):
Quote:

while (asset(loop(SYMBOLS)))
printf("\nOpen: %f Close: %f ",priceOpen(),priceClose());


after change this is maybe correct ( i dont know if older is open or close value):
Quote:

while (asset(loop(SYMBOLS)))
printf("\nOpen: %f Close: %f ",priceOpen(1),priceClose());


grat