gnomepy 2.2.3__tar.gz → 2.2.4__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.
- {gnomepy-2.2.3 → gnomepy-2.2.4}/PKG-INFO +1 -1
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/recorder.py +0 -2
- {gnomepy-2.2.3 → gnomepy-2.2.4}/pyproject.toml +1 -1
- {gnomepy-2.2.3 → gnomepy-2.2.4}/README.md +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/_fs.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/auth.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/cli.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/config.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/app.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/data.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/panels/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/panels/event_log.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/panels/pnl.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/panels/price.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/panels/signals.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/explorer/styles.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/_classpath.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/_jvm.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/backtest/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/backtest/config.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/backtest/orders.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/backtest/runner.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/backtest/strategy.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/cache.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/datastore.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/enums.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/market_data.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/oms.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/sbe.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/schemas.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/java/statics.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/metadata.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/registry/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/registry/api.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/registry/types.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/remote.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/reporting/__init__.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/reporting/metrics.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/reporting/plots.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/reporting/report.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/sweep.py +0 -0
- {gnomepy-2.2.3 → gnomepy-2.2.4}/gnomepy/utils.py +0 -0
|
@@ -337,7 +337,6 @@ class BacktestResults:
|
|
|
337
337
|
df[col] = df[col] / self.PRICE_SCALE
|
|
338
338
|
for col in ["submit_size", "filled_qty", "leaves_qty"]:
|
|
339
339
|
df[col] = df[col] / self.SIZE_SCALE
|
|
340
|
-
df["total_fee"] = df["total_fee"] / (self.PRICE_SCALE * self.SIZE_SCALE)
|
|
341
340
|
|
|
342
341
|
self._cached_orders_df = df
|
|
343
342
|
return df
|
|
@@ -375,7 +374,6 @@ class BacktestResults:
|
|
|
375
374
|
df[col] = df[col] / self.PRICE_SCALE
|
|
376
375
|
for col in ["fill_qty", "leaves_qty"]:
|
|
377
376
|
df[col] = df[col] / self.SIZE_SCALE
|
|
378
|
-
df["fee"] = df["fee"] / (self.PRICE_SCALE * self.SIZE_SCALE)
|
|
379
377
|
|
|
380
378
|
self._cached_fills_df = df
|
|
381
379
|
return df
|
|
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
|