Skip to content

Commit 9886873

Browse files
No release notes for this build
1 parent c43ee93 commit 9886873

File tree

590 files changed

+861
-627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

590 files changed

+861
-627
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a
88

99
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
1010

11-
- API version: 2.46.0
12-
- Package version: 6.26.0
11+
- API version: 2.47.3
12+
- Package version: 6.26.1
1313

1414

1515
## Installation

docs/OptionPriceBatchRealtime.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,20 @@
1212

1313
Name | Type | Description
1414
------------ | ------------- | -------------
15-
**option** | [**OptionRealtime**](OptionRealtime.md) |  
1615
**price** | [**OptionPriceRealtime**](OptionPriceRealtime.md) |  
16+
**stats** | [**OptionStatsRealtime**](OptionStatsRealtime.md) |  
17+
**option** | [**OptionRealtime**](OptionRealtime.md) |  
1718

1819
[//]: # (END_DEFINITION)
1920

2021

21-
[//]: # (CONTAINED_CLASS:Intrinio::OptionRealtime)
22+
[//]: # (CONTAINED_CLASS:Intrinio::OptionPriceRealtime)
2223

2324

24-
[//]: # (CONTAINED_CLASS:Intrinio::OptionPriceRealtime)
25+
[//]: # (CONTAINED_CLASS:Intrinio::OptionStatsRealtime)
26+
27+
28+
[//]: # (CONTAINED_CLASS:Intrinio::OptionRealtime)
2529

2630

2731

docs/OptionsApi.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ symbol = "MSFT"
242242
strike = 95
243243

244244
opts = {
245+
source: nil,
245246
stock_price_source: nil,
246247
model: nil
247248
}
@@ -263,6 +264,7 @@ Name | Type | Description | Notes
263264
------------- | ------------- | ------------- | -------------
264265
**symbol** | String| The option symbol, corresponding to the underlying security. |  
265266
**strike** | Float| The strike price of the option contract. This will return options contracts with strike price equal to this price. |  
267+
**source** | String| Realtime or delayed. | [optional]  
266268
**stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
267269
**model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
268270

@@ -646,7 +648,7 @@ Name | Type | Description | Notes
646648
**strike** | Float| The strike price of the option contract. This will return options contracts with strike price equal to this price. | [optional]  
647649
**strike_greater_than** | Float| The strike price of the option contract. This will return options contracts with strike prices greater than this price. | [optional]  
648650
**strike_less_than** | Float| The strike price of the option contract. This will return options contracts with strike prices less than this price. | [optional]  
649-
**date** | Date| The the date to retrieve prices for | [optional]  
651+
**date** | Date| The date to retrieve prices for | [optional]  
650652

651653
[//]: # (END_PARAMETERS)
652654

@@ -1412,6 +1414,7 @@ body = {
14121414

14131415
opts = {
14141416
source: nil,
1417+
show_stats: nil,
14151418
stock_price_source: nil,
14161419
model: nil
14171420
}
@@ -1433,6 +1436,7 @@ Name | Type | Description | Notes
14331436
------------- | ------------- | ------------- | -------------
14341437
**body** | [**OptionContractsList**](OptionContractsList.md)| The contract symbols for which to return options prices for. |  
14351438
**source** | String| Realtime or 15-minute delayed contracts. | [optional]  
1439+
**show_stats** | BOOLEAN| Whether to include Greek calculations or not. | [optional]  
14361440
**stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
14371441
**model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
14381442

@@ -1469,7 +1473,7 @@ Name | Type | Description | Notes
14691473

14701474
[//]: # (START_OVERVIEW)
14711475

1472-
> ApiResponseOptionsPricesEod get_options_prices_eod(identifier)
1476+
> ApiResponseOptionsPricesEod get_options_prices_eod(identifier, opts)
14731477
14741478
#### Option Prices EOD
14751479

@@ -1496,7 +1500,13 @@ end
14961500
options_api = Intrinio::OptionsApi.new
14971501
identifier = "AAPL230616P00190000"
14981502

1499-
result = options_api.get_options_prices_eod(identifier)
1503+
opts = {
1504+
next_page: nil,
1505+
start_date: nil,
1506+
end_date: nil
1507+
}
1508+
1509+
result = options_api.get_options_prices_eod(identifier, opts)
15001510
pp result
15011511
```
15021512

@@ -1512,6 +1522,9 @@ pp result
15121522
Name | Type | Description | Notes
15131523
------------- | ------------- | ------------- | -------------
15141524
**identifier** | String| The Intrinio ID or code of the options contract to request prices for. |  
1525+
**next_page** | String| Gets the next page of data from a previous API call | [optional]  
1526+
**start_date** | Date| The start date to retrieve prices for | [optional]  
1527+
**end_date** | Date| The end date to retrieve prices for | [optional]  
15151528

15161529
[//]: # (END_PARAMETERS)
15171530

intrinio-sdk.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
77
8-
OpenAPI spec version: 2.46.0
8+
OpenAPI spec version: 2.47.3
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
Swagger Codegen version: unset

lib/intrinio-sdk.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/bulk_downloads_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/company_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/data_point_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/data_tag_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/esg_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/et_fs_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/filing_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/forex_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/fundamentals_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/historical_data_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/index_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/insider_transaction_filings_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/market_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/municipality_api.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
55
6-
OpenAPI spec version: 2.46.0
6+
OpenAPI spec version: 2.47.3
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

0 commit comments

Comments
 (0)