finnhub_ruby 1.1.16 → 1.1.18
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/docs/BondTickData.md +34 -0
- data/docs/Company.md +1 -1
- data/docs/DefaultApi.md +617 -9
- data/docs/ETFProfileData.md +8 -2
- data/docs/InstitutionalOwnership.md +22 -0
- data/docs/InstitutionalOwnershipGroup.md +20 -0
- data/docs/InstitutionalOwnershipInfo.md +36 -0
- data/docs/InstitutionalPortfolio.md +22 -0
- data/docs/InstitutionalPortfolioGroup.md +22 -0
- data/docs/InstitutionalPortfolioInfo.md +38 -0
- data/docs/InstitutionalProfile.md +20 -0
- data/docs/InstitutionalProfileInfo.md +28 -0
- data/docs/IsinChange.md +22 -0
- data/docs/IsinChangeInfo.md +22 -0
- data/docs/KeyCustomersSuppliers.md +4 -0
- data/docs/MutualFundProfileData.md +5 -1
- data/docs/PriceMetrics.md +20 -0
- data/docs/SectorMetric.md +20 -0
- data/docs/SectorMetricData.md +20 -0
- data/docs/SymbolChange.md +22 -0
- data/docs/SymbolChangeInfo.md +22 -0
- data/finnhub_ruby-1.1.16.gem +0 -0
- data/finnhub_ruby-1.1.17.gem +0 -0
- data/lib/finnhub_ruby/api/default_api.rb +602 -8
- data/lib/finnhub_ruby/models/bond_tick_data.rb +311 -0
- data/lib/finnhub_ruby/models/company.rb +1 -1
- data/lib/finnhub_ruby/models/etf_profile_data.rb +35 -5
- data/lib/finnhub_ruby/models/institutional_ownership.rb +241 -0
- data/lib/finnhub_ruby/models/institutional_ownership_group.rb +231 -0
- data/lib/finnhub_ruby/models/institutional_ownership_info.rb +309 -0
- data/lib/finnhub_ruby/models/institutional_portfolio.rb +241 -0
- data/lib/finnhub_ruby/models/institutional_portfolio_group.rb +241 -0
- data/lib/finnhub_ruby/models/institutional_portfolio_info.rb +319 -0
- data/lib/finnhub_ruby/models/institutional_profile.rb +231 -0
- data/lib/finnhub_ruby/models/institutional_profile_info.rb +269 -0
- data/lib/finnhub_ruby/models/isin_change.rb +241 -0
- data/lib/finnhub_ruby/models/isin_change_info.rb +239 -0
- data/lib/finnhub_ruby/models/key_customers_suppliers.rb +21 -1
- data/lib/finnhub_ruby/models/mutual_fund_profile_data.rb +24 -4
- data/lib/finnhub_ruby/models/price_metrics.rb +228 -0
- data/lib/finnhub_ruby/models/sector_metric.rb +231 -0
- data/lib/finnhub_ruby/models/sector_metric_data.rb +229 -0
- data/lib/finnhub_ruby/models/symbol_change.rb +241 -0
- data/lib/finnhub_ruby/models/symbol_change_info.rb +239 -0
- data/lib/finnhub_ruby/version.rb +1 -1
- data/lib/finnhub_ruby.rb +16 -0
- data/spec/models/bond_tick_data_spec.rb +82 -0
- data/spec/models/institutional_ownership_group_spec.rb +40 -0
- data/spec/models/institutional_ownership_info_spec.rb +88 -0
- data/spec/models/institutional_ownership_spec.rb +46 -0
- data/spec/models/institutional_portfolio_group_spec.rb +46 -0
- data/spec/models/institutional_portfolio_info_spec.rb +94 -0
- data/spec/models/institutional_portfolio_spec.rb +46 -0
- data/spec/models/institutional_profile_info_spec.rb +64 -0
- data/spec/models/institutional_profile_spec.rb +40 -0
- data/spec/models/isin_change_info_spec.rb +46 -0
- data/spec/models/isin_change_spec.rb +46 -0
- data/spec/models/price_metrics_spec.rb +40 -0
- data/spec/models/sector_metric_data_spec.rb +40 -0
- data/spec/models/sector_metric_spec.rb +40 -0
- data/spec/models/symbol_change_info_spec.rb +46 -0
- data/spec/models/symbol_change_spec.rb +46 -0
- metadata +68 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26122ba70fd4c403542a630dcae03d6f5e99d8721599fca79fa463fe15f85e8c
|
4
|
+
data.tar.gz: 5f9c644431ffb37e9990c273b0a6d648120c3e5baaaf97a509fc299d485fa30c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 292f53eb344820f120ed793b65efc38a4289d61b848a739ffde0055d95f38fdf47e52733b2b02b79ecb98ccf870c6bdf554657e627b72665adf9d5b2481bde1a
|
7
|
+
data.tar.gz: 1c6fcbe6c3eca11821207f16da674497fe9c731e66ddf092f394a3a3e8aeddbef59b80407679eb965dc9aecce7c65d759dd842d36bcbbb1cd8b90e8235926cf3
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# finnhub-ruby
|
2
2
|
- API documentation: https://finnhub.io/docs/api
|
3
3
|
- API version: 1.0.0
|
4
|
-
- Package version: 1.1.
|
4
|
+
- Package version: 1.1.18
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
https://rubygems.org/gems/finnhub_ruby
|
@@ -13,7 +13,7 @@ gem install finnhub_ruby
|
|
13
13
|
or in your Gemfile
|
14
14
|
|
15
15
|
```ruby
|
16
|
-
gem 'finnhub_ruby', '~> 1.1.
|
16
|
+
gem 'finnhub_ruby', '~> 1.1.17'
|
17
17
|
```
|
18
18
|
|
19
19
|
## Getting Started
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# FinnhubRuby::BondTickData
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **skip** | **Integer** | Number of ticks skipped. | [optional] |
|
8
|
+
| **count** | **Integer** | Number of ticks returned. If <code>count</code> < <code>limit</code>, all data for that date has been returned. | [optional] |
|
9
|
+
| **total** | **Integer** | Total number of ticks for that date. | [optional] |
|
10
|
+
| **v** | **Array<Float>** | List of volume data. | [optional] |
|
11
|
+
| **p** | **Array<Float>** | List of price data. | [optional] |
|
12
|
+
| **t** | **Array<Integer>** | List of timestamp in UNIX ms. | [optional] |
|
13
|
+
| **si** | **Array<String>** | List of values showing the side (Buy/sell) of each trade. List of supported values: <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\",>here</a> | [optional] |
|
14
|
+
| **cp** | **Array<String>** | List of values showing the counterparty of each trade. List of supported values: <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\",>here</a> | [optional] |
|
15
|
+
| **c** | **Array<Array<String>>** | List of trade conditions. A comprehensive list of trade conditions code can be found <a target=\"_blank\" href=\"https://docs.google.com/spreadsheets/d/1O3aueXSPOqo7Iuyz4PqDG6yZunHsX8BTefZ2kFk5pz4/edit?usp=sharing\">here</a> | [optional] |
|
16
|
+
|
17
|
+
## Example
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
require 'finnhub_ruby'
|
21
|
+
|
22
|
+
instance = FinnhubRuby::BondTickData.new(
|
23
|
+
skip: null,
|
24
|
+
count: null,
|
25
|
+
total: null,
|
26
|
+
v: null,
|
27
|
+
p: null,
|
28
|
+
t: null,
|
29
|
+
si: null,
|
30
|
+
cp: null,
|
31
|
+
c: null
|
32
|
+
)
|
33
|
+
```
|
34
|
+
|
data/docs/Company.md
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
| **name** | **String** | Executive name | [optional] |
|
8
8
|
| **age** | **Integer** | Age | [optional] |
|
9
9
|
| **title** | **String** | Title | [optional] |
|
10
|
-
| **since** | **String** | Year appointed | [optional] |
|
10
|
+
| **since** | **String** | Year first appointed as executive/director of the company | [optional] |
|
11
11
|
| **sex** | **String** | Sex | [optional] |
|
12
12
|
| **compensation** | **Integer** | Total compensation | [optional] |
|
13
13
|
| **currency** | **String** | Compensation currency | [optional] |
|