Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rounding error on 32-bit makes Order.size float instead of integer #954

Open
IMYin opened this issue Mar 31, 2023 Discussed in #953 · 1 comment
Open

Rounding error on 32-bit makes Order.size float instead of integer #954

IMYin opened this issue Mar 31, 2023 Discussed in #953 · 1 comment
Labels
bug Something isn't working

Comments

@IMYin
Copy link

IMYin commented Mar 31, 2023

Discussed in #953

Originally posted by IMYin March 31, 2023
My trading target is futures, with a minimum trading size of 1 lot and a minimum unit of 300 per lot. When I trigger a certain signal, I only want to reduce my position instead of closing it completely. However, the parameter in the close function is a proportion value. So, if I hold a position of 7 lots and my size is 2100, the parameter set for self.position.close(portion=6/7), which is not wrong. But the result is that my position is 301, which is incorrect and causes a chain reaction of position errors later on.

image
The sample shown in the picture is incorrect.

The correct one should look like the following.
image

So I am wondering if it is possible to adjust the setting of the portion parameter?

@kernc
Copy link
Owner

kernc commented Apr 1, 2023

def close(self, portion: float = 1.):
"""Place new `Order` to close `portion` of the trade at next market price."""
assert 0 < portion <= 1, "portion must be a fraction between 0 and 1"
size = copysign(max(1, round(abs(self.__size) * portion)), -self.__size)
order = Order(self.__broker, size, parent_trade=self, tag=self.__tag)
self.__broker.orders.insert(0, order)

>>> (1 - 6/7) * 2100
300.0000000000001

>>> from math import copysign
>>> copysign(max(1, round(abs(2100) * (6/7))), -2100)
-1800.0

Looks like a rounding error on your platform. 32-bit OS by chance?

@kernc kernc added the bug Something isn't working label Feb 4, 2025
@kernc kernc changed the title When closing a trade, can the size be specified as larger than an integer? Rounding error on 32-bit makes Order.size float instead of integer Feb 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants