Skip to content

Commit 9e133f9

Browse files
No release notes for this build
1 parent d9454e7 commit 9e133f9

File tree

295 files changed

+372
-305
lines changed

Some content is hidden

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

295 files changed

+372
-305
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.43.6
12-
- Package version: 6.24.1
11+
- API version: 2.45.0
12+
- Package version: 6.25.0
1313

1414

1515
## Installation

docs/OptionsApi.md

+24-5
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Name | Type | Description | Notes
213213

214214
[//]: # (START_OVERVIEW)
215215

216-
> ApiResponseOptionsChainRealtime get_option_strikes_realtime(symbol, strike)
216+
> ApiResponseOptionsChainRealtime get_option_strikes_realtime(symbol, strike, opts)
217217
218218
#### Option Strikes Realtime
219219

@@ -241,7 +241,12 @@ options_api = Intrinio::OptionsApi.new
241241
symbol = "MSFT"
242242
strike = 95
243243

244-
result = options_api.get_option_strikes_realtime(symbol, strike)
244+
opts = {
245+
stock_price_source: nil,
246+
model: nil
247+
}
248+
249+
result = options_api.get_option_strikes_realtime(symbol, strike, opts)
245250
pp result
246251
```
247252

@@ -258,6 +263,8 @@ Name | Type | Description | Notes
258263
------------- | ------------- | ------------- | -------------
259264
**symbol** | String| The option symbol, corresponding to the underlying security. |  
260265
**strike** | Float| The strike price of the option contract. This will return options contracts with strike price equal to this price. |  
266+
**stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
267+
**model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
261268

262269
[//]: # (END_PARAMETERS)
263270

@@ -712,7 +719,9 @@ opts = {
712719
volume_less_than: nil,
713720
open_interest_greater_than: nil,
714721
open_interest_less_than: nil,
715-
moneyness: nil
722+
moneyness: nil,
723+
stock_price_source: nil,
724+
model: nil
716725
}
717726

718727
result = options_api.get_options_chain_realtime(symbol, expiration, opts)
@@ -742,6 +751,8 @@ Name | Type | Description | Notes
742751
**open_interest_greater_than** | Float| The open interest of the option contract. This will return options contracts with open interest greater than this amount. | [optional]  
743752
**open_interest_less_than** | Float| The open interest of the option contract. This will return options contracts with open interest less than this amount. | [optional]  
744753
**moneyness** | String| The moneyness of the options contracts to return. 'all' will return all options contracts. 'in_the_money' will return options contracts that are in the money (call options with strike prices below the current price, put options with strike prices above the current price). 'out_of_they_money' will return options contracts that are out of the money (call options with strike prices above the current price, put options with strike prices below the current price). 'near_the_money' will return options contracts that are $0.50 or less away from being in the money. Requires subscription to realtime stock price data. | [optional]  
754+
**stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
755+
**model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
745756

746757
[//]: # (END_PARAMETERS)
747758

@@ -1400,7 +1411,9 @@ body = {
14001411
}
14011412

14021413
opts = {
1403-
source: nil
1414+
source: nil,
1415+
stock_price_source: nil,
1416+
model: nil
14041417
}
14051418

14061419
result = options_api.get_options_prices_batch_realtime(body, opts)
@@ -1420,6 +1433,8 @@ Name | Type | Description | Notes
14201433
------------- | ------------- | ------------- | -------------
14211434
**body** | [**OptionContractsList**](OptionContractsList.md)| The contract symbols for which to return options prices for. |  
14221435
**source** | String| Realtime or 15-minute delayed contracts. | [optional]  
1436+
**stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
1437+
**model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
14231438

14241439
[//]: # (END_PARAMETERS)
14251440

@@ -1559,7 +1574,9 @@ options_api = Intrinio::OptionsApi.new
15591574
identifier = "AAPL230120C00090000"
15601575

15611576
opts = {
1562-
source: nil
1577+
source: nil,
1578+
stock_price_source: nil,
1579+
model: nil
15631580
}
15641581

15651582
result = options_api.get_options_prices_realtime(identifier, opts)
@@ -1579,6 +1596,8 @@ Name | Type | Description | Notes
15791596
------------- | ------------- | ------------- | -------------
15801597
**identifier** | String| The Intrinio ID or code of the options contract to request prices for. |  
15811598
**source** | String| Realtime or 15-minute delayed contracts. | [optional]  
1599+
**stock_price_source** | String| Source for underlying price for calculating Greeks. | [optional]  
1600+
**model** | String| Model for calculating Greek values. Default is black_scholes. | [optional]  
15821601

15831602
[//]: # (END_PARAMETERS)
15841603

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.43.6
8+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
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.43.6
6+
OpenAPI spec version: 2.45.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

0 commit comments

Comments
 (0)