Rounding a Java BigDecimal to the nearest interval - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T23:49:43Zhttp://stackoverflow.com/feeds/question/641848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/641848/rounding-a-java-bigdecimal-to-the-nearest-interval1Rounding a Java BigDecimal to the nearest intervalJon2009-03-13T08:44:44Z2009-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] -> 100
100.2 [0.25] -> 100.25
100.1 [0.125] -> 100.125
100.2 [0.125] -> 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#6418563Answer by schnaader for Rounding a Java BigDecimal to the nearest intervalschnaader2009-03-13T08:49:16Z2009-03-13T09:10:13Z<p>You could normalize tick size and then use the usual rounding methods:</p>
<pre><code>100.1 [0.25] -> * (1/0.25) -> 400.4 [1] -> round -> 400 -> / (1/0.25) -> 100
100.2 [0.25] -> * (1/0.25) -> 400.8 [1] -> round -> 401 -> / (1/0.25) -> 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>