Skip to content

Commit 916fee1

Browse files
committed
update
1 parent 725b9e4 commit 916fee1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "project-x-py"
3-
version = "1.0.6"
3+
version = "1.0.8"
44
description = "Professional Python client for TopStepX ProjectX Gateway API - futures trading, real-time data, and market analysis"
55
readme = "README.md"
66
license = { text = "MIT" }

src/project_x_py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from typing import Any, Optional
1717

18-
__version__ = "1.0.6"
18+
__version__ = "1.0.8"
1919
__author__ = "TexasCoding"
2020

2121
# Core client classes

src/project_x_py/indicators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
)
133133

134134
# Version info
135-
__version__ = "1.0.6"
135+
__version__ = "1.0.8"
136136
__author__ = "TexasCoding"
137137

138138

src/project_x_py/position_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ def partially_close_position(
922922
payload = {
923923
"accountId": account_id,
924924
"contractId": contract_id,
925-
"closeSize": close_size,
925+
"size": close_size,
926926
}
927927

928928
try:

0 commit comments

Comments
 (0)