tradx 0.7.8__tar.gz → 0.7.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tradx-0.7.8 → tradx-0.7.9}/PKG-INFO +1 -1
- {tradx-0.7.8 → tradx-0.7.9}/pyproject.toml +1 -1
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/interactiveEngine.py +5 -5
- {tradx-0.7.8 → tradx-0.7.9}/.gitignore +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/.vscode/settings.json +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/README.md +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/examples/example1.log +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/examples/example1.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/examples/example2.log +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/examples/example2.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/__init__.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/algoContainer.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/baseAlgo.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/candleData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/cmInstrument.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/futureInstrument.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/index.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/instrumentPropertyChangeData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/ltpData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/ltpPartialData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/marketDepthData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/marketStatusData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/openInterestData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/openInterestPartialData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/optionsInstrument.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/order.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/orderEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/position.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/positionEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/touchLineData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/touchLinePartialData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/tradeConversionEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/baseClass/tradeEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/constants/holidays.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/dualHashMap.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/logger/logger.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/logger/logger2.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/marketDataEngine.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/src/tradx/py.typed +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_candleData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_interactiveEngine.log +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_interactiveEngine.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_logger.log +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_logger.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_ltpData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_ltpPartailData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_marketDataEngine.log +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_marketDataEngine.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_marketDepthData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_marketStatusData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_openInterestData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_openInterestPartialData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_option.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_orderEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_positionEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_touchLineData.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_tradeConversionEvent.py +0 -0
- {tradx-0.7.8 → tradx-0.7.9}/test/test_tradeEvent.py +0 -0
@@ -160,7 +160,7 @@ class interactiveEngine(InteractiveSocketClient):
|
|
160
160
|
if orderQuantity > 0
|
161
161
|
else self.xt.TRANSACTION_TYPE_SELL
|
162
162
|
),
|
163
|
-
timeInForce=self.xt.
|
163
|
+
timeInForce=self.xt.TimeinForce_DAY,
|
164
164
|
disclosedQuantity=0,
|
165
165
|
orderQuantity=abs(orderQuantity),
|
166
166
|
limitPrice=0,
|
@@ -237,7 +237,7 @@ class interactiveEngine(InteractiveSocketClient):
|
|
237
237
|
if orderQuantity > 0
|
238
238
|
else self.xt.TRANSACTION_TYPE_SELL
|
239
239
|
),
|
240
|
-
timeInForce=self.xt.
|
240
|
+
timeInForce=self.xt.TimeinForce_DAY,
|
241
241
|
disclosedQuantity=0,
|
242
242
|
orderQuantity=abs(orderQuantity),
|
243
243
|
limitPrice=0,
|
@@ -309,7 +309,7 @@ class interactiveEngine(InteractiveSocketClient):
|
|
309
309
|
if orderQuantity > 0
|
310
310
|
else self.xt.TRANSACTION_TYPE_SELL
|
311
311
|
),
|
312
|
-
timeInForce=self.xt.
|
312
|
+
timeInForce=self.xt.TimeinForce_DAY,
|
313
313
|
disclosedQuantity=0,
|
314
314
|
orderQuantity=abs(orderQuantity),
|
315
315
|
limitPrice=limitPrice,
|
@@ -397,7 +397,7 @@ class interactiveEngine(InteractiveSocketClient):
|
|
397
397
|
if orderQuantity > 0
|
398
398
|
else self.xt.TRANSACTION_TYPE_SELL
|
399
399
|
),
|
400
|
-
timeInForce=self.xt.
|
400
|
+
timeInForce=self.xt.TimeinForce_DAY,
|
401
401
|
disclosedQuantity=0,
|
402
402
|
orderQuantity=abs(orderQuantity),
|
403
403
|
limitPrice=limitPrice.to_eng_string(),
|
@@ -563,7 +563,7 @@ class interactiveEngine(InteractiveSocketClient):
|
|
563
563
|
if orderQuantity > 0
|
564
564
|
else self.xt.TRANSACTION_TYPE_SELL
|
565
565
|
),
|
566
|
-
timeInForce=self.xt.
|
566
|
+
timeInForce=self.xt.TimeinForce_DAY,
|
567
567
|
disclosedQuantity=0,
|
568
568
|
orderQuantity=abs(orderQuantity),
|
569
569
|
limitPrice=0,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|