wiz-trader 0.31.0__tar.gz → 0.32.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wiz_trader
3
- Version: 0.31.0
3
+ Version: 0.32.0
4
4
  Summary: A Python SDK for connecting to the Wizzer.
5
5
  Home-page: https://bitbucket.org/wizzer-tech/quotes_sdk.git
6
6
  Author: Pawan Wagh
@@ -3294,7 +3294,8 @@ The screener supports filtering instruments using various financial, technical,
3294
3294
  | `industry` | Industry classification | String | `$eq`, `$ne`, `$in`, `$nin`, `$like`, `$nlike`, `$ilike` |
3295
3295
  | `basicIndustry` | Basic industry classification | String | `$eq`, `$ne`, `$in`, `$nin`, `$like`, `$nlike`, `$ilike` |
3296
3296
  | `indices` | List of indices the instrument belongs to | Array(String) | `$in`, `$nin` |
3297
-
3297
+ | `issuedSize` | Total issued shares (listed shares count) | UInt64 | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3298
+ | `marketCap` | Market capitalization (issuedSize × latest closing price) | Float64 | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3298
3299
  ### Financial Data
3299
3300
 
3300
3301
  | Field | Description | Data Type | Unit | Supported Operations |
@@ -3320,6 +3321,7 @@ The screener supports filtering instruments using various financial, technical,
3320
3321
  | `netCash` | Net Cash Position | Float | currency | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3321
3322
  | `currentRatio` | Current Ratio | Float | ratio | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3322
3323
 
3324
+
3323
3325
  ### Historical Market Data
3324
3326
 
3325
3327
  | Field | Description | Data Type | Unit | Supported Operations |
@@ -3267,7 +3267,8 @@ The screener supports filtering instruments using various financial, technical,
3267
3267
  | `industry` | Industry classification | String | `$eq`, `$ne`, `$in`, `$nin`, `$like`, `$nlike`, `$ilike` |
3268
3268
  | `basicIndustry` | Basic industry classification | String | `$eq`, `$ne`, `$in`, `$nin`, `$like`, `$nlike`, `$ilike` |
3269
3269
  | `indices` | List of indices the instrument belongs to | Array(String) | `$in`, `$nin` |
3270
-
3270
+ | `issuedSize` | Total issued shares (listed shares count) | UInt64 | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3271
+ | `marketCap` | Market capitalization (issuedSize × latest closing price) | Float64 | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3271
3272
  ### Financial Data
3272
3273
 
3273
3274
  | Field | Description | Data Type | Unit | Supported Operations |
@@ -3293,6 +3294,7 @@ The screener supports filtering instruments using various financial, technical,
3293
3294
  | `netCash` | Net Cash Position | Float | currency | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3294
3295
  | `currentRatio` | Current Ratio | Float | ratio | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3295
3296
 
3297
+
3296
3298
  ### Historical Market Data
3297
3299
 
3298
3300
  | Field | Description | Data Type | Unit | Supported Operations |
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "wiz_trader"
7
- version = "0.31.0"
7
+ version = "0.32.0"
8
8
  description = "A Python SDK for connecting to the Wizzer."
9
9
  readme = "README.md"
10
10
  authors = [
@@ -3,6 +3,6 @@
3
3
  from .quotes import QuotesClient
4
4
  from .apis import WizzerClient
5
5
 
6
- __version__ = "0.31.0"
6
+ __version__ = "0.32.0"
7
7
 
8
8
  __all__ = ["QuotesClient", "WizzerClient"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wiz_trader
3
- Version: 0.31.0
3
+ Version: 0.32.0
4
4
  Summary: A Python SDK for connecting to the Wizzer.
5
5
  Home-page: https://bitbucket.org/wizzer-tech/quotes_sdk.git
6
6
  Author: Pawan Wagh
@@ -3294,7 +3294,8 @@ The screener supports filtering instruments using various financial, technical,
3294
3294
  | `industry` | Industry classification | String | `$eq`, `$ne`, `$in`, `$nin`, `$like`, `$nlike`, `$ilike` |
3295
3295
  | `basicIndustry` | Basic industry classification | String | `$eq`, `$ne`, `$in`, `$nin`, `$like`, `$nlike`, `$ilike` |
3296
3296
  | `indices` | List of indices the instrument belongs to | Array(String) | `$in`, `$nin` |
3297
-
3297
+ | `issuedSize` | Total issued shares (listed shares count) | UInt64 | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3298
+ | `marketCap` | Market capitalization (issuedSize × latest closing price) | Float64 | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3298
3299
  ### Financial Data
3299
3300
 
3300
3301
  | Field | Description | Data Type | Unit | Supported Operations |
@@ -3320,6 +3321,7 @@ The screener supports filtering instruments using various financial, technical,
3320
3321
  | `netCash` | Net Cash Position | Float | currency | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3321
3322
  | `currentRatio` | Current Ratio | Float | ratio | `$eq`, `$ne`, `$gt`, `$gte`, `$lt`, `$lte`, `$between` |
3322
3323
 
3324
+
3323
3325
  ### Historical Market Data
3324
3326
 
3325
3327
  | Field | Description | Data Type | Unit | Supported Operations |
File without changes
File without changes
File without changes