Some brokers offer GOLD with one tick=10 point, some - 5 point.
Hi Roger
I think of the minimum movement in price being a pip and the smallest digit of price quote being a point. In the case of Gold, I would say one pip is 10 or 5 points. I still think of a tick as the arrival of price data, etc.
Perhaps I'm being too pedantic. My code works fine with the one currency pair I've used it on. I just want to be sure I've written it to be robust.
Cheers
Tony
Hi Roger
Thanks for your comment.
What I will do it make an indicator to plot the TICKSIZE and compare it with Point for a range of currencies (and demo accounts). I'm guesing that they'll be the same.
Cheers
Jellybean
Ticksize varies more with CFD and Futures
Thanks phy
Have I got it right?
Point or POINT_SIZE is a change of 1 in the least significant digit of the price.
TICK_SIZE is the smallest movement in the price quoted by the broker, which could be several points.
In this way TICK_SIZE is always a multiple of Point.
Cheers
Jellybean
Don't post to 5 year old posts
In currencies ticksize and point are usually identical. In metals they are not. Prices might be quoted as ddd.cc (point=0.01) but they change by multiples of 0.25 (ddd.00, ddd.25, ddd.50, ...)
Use ticksize as a ratios only for computing DeltaPerTick (risk) and for normalizing prices for pending orders.
Use pips2dbl converting pips to/from delta prices and pips2point. On 5 digit brokers a point is 1/10 pip.
Use point only for marketInfo to delta prices.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi
I was fascinated by the discussion provoked by phy on "What is a tick?" Basically, if a tick is an event, how can it have a size? What is the difference between MODE_TICKSIZE and MODE_POINT?
I use this to calculate postiion/order size:
But should I use Point instead of MarketInfo( Sym, MODE_TICKSIZE )?
Any comments would be good.
Cheers
Jellybean