Hi Dukascopy Community
I have question concerning the fastest access to tick data. I am going to do some scalping and I am wondering if my thinking is right:
Of course after prior subscription to the instrument While in onTick I am filtering data:
if (instrument == Instrument.EURGBP )
than I try to do some things and question appears:
Is there a possibility to write to variable current value of bid and ask side?
Or maybe there is faster way for example:
history.getLastTick(Instrument.EURUSD).getAsk()
My point is just to get the faster access for computations to the current values on the market.
Could you please advise me what is the best way to achieve this?
Regards