You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2023. It is now read-only.
When calling luno.postLimitOrder("XBTZAR", OrderType.BID, new BigDecimal(0.001), new BigDecimal(100_000), null, null);
it returns error: invalid volume.
The reason for this might be that the String generated by the BigDecimal is too long. Changing the argument types to String instead of BigDecimal however fixes the issue.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When calling
luno.postLimitOrder("XBTZAR", OrderType.BID, new BigDecimal(0.001), new BigDecimal(100_000), null, null);
it returns error: invalid volume.
The reason for this might be that the String generated by the BigDecimal is too long. Changing the argument types to String instead of BigDecimal however fixes the issue.
The text was updated successfully, but these errors were encountered: