[amibroker] Re: How do I use ticksize in futures?

2009-11-25 Thread Gonzaga
Thanks for the answer. But I think the problem is that in the buy condition I establish the buyprice also. And so, the tick size does not affect to the buy price.. So I need an Amibroker function that rounds the price into 0.25 points.. --- In amibroker@yahoogroups.com, James wrote: > > I never

[amibroker] Re: How do I use ticksize in futures?

2009-11-27 Thread dubi1974
Hi, you can buy S&P Mini Futures just for 1153.25 or 1153.50, 1153.37 is not possible. I use a trick with indicators. e.g. EMA. I divide through the TickSize (0.25) then I round the outcome and multiply it back with the TickSize. example: iEMA = EMA (C,20); iEMA = Round (iEMA/TickSize) * TickS

RE: [amibroker] Re: How do I use ticksize in futures?

2009-11-25 Thread Jerry Gress
Of Gonzaga Sent: Wednesday, November 25, 2009 5:13 PM To: amibroker@yahoogroups.com Subject: [amibroker] Re: How do I use ticksize in futures? Thanks for the answer. But I think the problem is that in the buy condition I establish the buyprice also. And so, the tick size does not affect to the buy pr