python woth to get the ticks and work with them

 

hi


I have this:

euraud_ticks = mt5.copy_ticks_from("EURAUD", datetime(2020,3,6,13), 1, mt5.COPY_TICKS_ALL)

print('euraud_ticks(', len(euraud_ticks), ')')

for val in euraud_ticks[:1]: print(val)


this only plots the ticks I whant form one time ... I would like to use that tick as a number ... how do I do that?

I would also like to separete the data ... and for example sum to close ticks from diferent pairs

how do I do that?

please help