Skip to content

Commit

Permalink
fix tradetype
Browse files Browse the repository at this point in the history
  • Loading branch information
GravitySucks committed Jul 17, 2023
1 parent 4dcf248 commit 44ccf1f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -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 ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion gvol/__init__.py
@@ -1,4 +1,4 @@
__all__ = ("__version__", "GVol")
__version__ = "0.5.9"
__version__ = "0.6.0"

from gvol.client import GVol
6 changes: 3 additions & 3 deletions gvol/queries.py
Expand Up @@ -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 = """
Expand Down
2 changes: 1 addition & 1 deletion 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 <denys.halenok@gmail.com>"]

Expand Down

0 comments on commit 44ccf1f

Please sign in to comment.