
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi, looking for elegant way how to get next level form price, e.g. _Bid is 10888.97 and I want to elliminate 0.97 from number and get 10888.00
When I use NormalizeDouble(10888.97,0), it gets me rounded result 10889.00 and that is correct.
Converting double to string to integral and back to string and double is too heavy and there must be some better way to cut decimal places without rounding.