Page 1 of 1

how do i know the tick size of the symbol ?

Posted: 17 Dec 2006
by Guest
From easylanguage, how do i know the tick size of the symbol ?

thanks

Posted: 18 Dec 2006
by Stanley Miller
MinMove returns a numeric expression representing the minimum movement allowed for a particular symbol.

MinMove * PriceScale returns the smallest increment between trades.

MinMove * PriceScale * BigPointValue returns the dollar value of the smallest change in price.

Posted: 18 Dec 2006
by Guest
MinMove returns a numeric expression representing the minimum movement allowed for a particular symbol.

MinMove * PriceScale returns the smallest increment between trades.

MinMove * PriceScale * BigPointValue returns the dollar value of the smallest change in price.
Thanks Stanley.

Does these reserved words take the values that are set in quote manager ?

If yes, then will it still work for certain Options where the tick size changes according to the option price ?

E.g for some options,
IF Price<3 then tick size is 0.01
else if Price>=3 then tick size is 0.05

Posted: 19 Dec 2006
by Stanley Miller
Does these reserved words take the values that are set in quote manager ?
Yes, these values are taken from QuoteManager.
If yes, then will it still work for certain Options where the tick size changes according to the option price ?

E.g for some options,
IF Price<3 then tick size is 0.01
else if Price>=3 then tick size is 0.05
QuoteManager will not change the tick size automatically but it will work if you change it manually.

Posted: 21 Dec 2006
by Guest
Does these reserved words take the values that are set in quote manager ?
Yes, these values are taken from QuoteManager.
If yes, then will it still work for certain Options where the tick size changes according to the option price ?

E.g for some options,
IF Price<3 then tick size is 0.01
else if Price>=3 then tick size is 0.05
QuoteManager will not change the tick size automatically but it will work if you change it manually.
It would be impractical for a trader, to keep change the tick size when the price of the option changes.

If the program can handle this, it would be good.
But looks like it is not able to.
Oh well.....