Absolutely stunning Tomasz. Perfect. BTW, I'm using this to round the (three) SudyID's I draw on the chart, then I place a bracket order. The quarter point is for the ES emini futures. If your interested in using trendlines to place bracket orders, vist my blog. blog.tister.ca
--- In [email protected], "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > 0.25 * floor( number * 4 ); ; // this rounds down > > 0.25 * floor( 0.5 + number * 4 ); // this rounds to nearest > > Best regards, > Tomasz Janeczko > amibroker.com > ----- Original Message ----- > From: "treatmentinprogress" <[EMAIL PROTECTED]> > To: <[email protected]> > Sent: Tuesday, September 16, 2008 7:41 PM > Subject: [amibroker] Rounding a number to the quarter point > > > >I need to round a number to the nearest quarter point. > > > > Examples > > 100.02 to 100.00 (or 100.25) > > 100.79 to 100.75 (or 101.00) > > 100.24 to 100.25 (or 100.00 > > > > Rounding up or down doesn't matter much for my application, just needs > > to be to the nearest quarter point. I'm looking for the smallest > > amount of code to do this. > > > > Thanks > > > > Another Brian
