Rounding a Java BigDecimal to the nearest interval - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:49:43Z http://stackoverflow.com/feeds/question/641848 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/641848/rounding-a-java-bigdecimal-to-the-nearest-interval 1 Rounding a Java BigDecimal to the nearest interval Jon 2009-03-13T08:44:44Z 2009-03-13T09:13:46Z <p>I have a BigDecimal calculation result which I need to round to the nearest specified interval (in this case it's the financial market tick size).</p> <p>e.g. Price [Tick Size] -> Rounded Price</p> <pre><code>100.1 [0.25] -&gt; 100 100.2 [0.25] -&gt; 100.25 100.1 [0.125] -&gt; 100.125 100.2 [0.125] -&gt; 100.25 </code></pre> <p>Thanks.</p> <p>Update: schnaader's solution, translated into Java/BigDecimal terms:</p> <pre><code>price = price.divide(tick).setScale(0, RoundingMode.HALF_UP).multiply(tick) </code></pre> http://stackoverflow.com/questions/641848/rounding-a-java-bigdecimal-to-the-nearest-interval/641856#641856 3 Answer by schnaader for Rounding a Java BigDecimal to the nearest interval schnaader 2009-03-13T08:49:16Z 2009-03-13T09:10:13Z <p>You could normalize tick size and then use the usual rounding methods:</p> <pre><code>100.1 [0.25] -&gt; * (1/0.25) -&gt; 400.4 [1] -&gt; round -&gt; 400 -&gt; / (1/0.25) -&gt; 100 100.2 [0.25] -&gt; * (1/0.25) -&gt; 400.8 [1] -&gt; round -&gt; 401 -&gt; / (1/0.25) -&gt; 100.25 </code></pre> <p>So it should be:</p> <pre><code>Price = Round(Price / Tick) * Tick; </code></pre> <p>Also note that you seem to have to set the correct rounding mode for BigDecimals. See <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigDecimal.html#ROUND%5FCEILING" rel="nofollow">BigDecimal Docs</a> for example. So you should be sure to set this correct and write some tests to check the correctness of your code.</p>