From 44ccf1fb104aef41aea83cf6cdc6c7c8543ad61b Mon Sep 17 00:00:00 2001 From: GravitySucks Date: Mon, 17 Jul 2023 14:31:13 +0200 Subject: [PATCH] fix tradetype --- docs/source/conf.py | 2 +- gvol/__init__.py | 2 +- gvol/queries.py | 6 +++--- pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 726433b..a709e8e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Denys Halenok" # The full version, including alpha/beta/rc tags -release = "0.5.9" +release = "0.6.0" # -- General configuration --------------------------------------------------- diff --git a/gvol/__init__.py b/gvol/__init__.py index 836c036..34a13a6 100644 --- a/gvol/__init__.py +++ b/gvol/__init__.py @@ -1,4 +1,4 @@ __all__ = ("__version__", "GVol") -__version__ = "0.5.9" +__version__ = "0.6.0" from gvol.client import GVol diff --git a/gvol/queries.py b/gvol/queries.py index 2eceb56..af98ec0 100644 --- a/gvol/queries.py +++ b/gvol/queries.py @@ -1382,9 +1382,9 @@ """ options_cumulative_net_volumes = """ -query NetVolumeGvolDirection($tradeType: TradeTypeEnum, $days: Float, $symbol: SymbolEnumType, $exchange: ExchangeEnumType, $showActiveExpirations: Boolean) - {genericNetVolumeGvolDirection(symbol: $symbol, tradeType: $tradeType, days: $days, exchange: $exchange, showActiveExpirations: $showActiveExpirations) - {date strike cumulative indexPrice}} +query NetVolumeGvolDirection($tradeType: TradeEnumType, $days: Float, $symbol: SymbolEnumType, $exchange: ExchangeEnumType, $showActiveExpirations: Boolean) +{genericNetVolumeGvolDirection(symbol: $symbol, tradeType: $tradeType, days: $days, exchange: $exchange, showActiveExpirations: $showActiveExpirations) +{date strike cumulative indexPrice}} """ options_cumulative_net_volumes_hist = """ diff --git a/pyproject.toml b/pyproject.toml index 36c6187..6f15f73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gvol" -version = "0.5.9" +version = "0.6.0" description = "GVol is a Python library to access the GVol API" authors = ["Denys Halenok "]