Skip to content

Commit a13ccb9

Browse files
No release notes for this build.
1 parent 232610f commit a13ccb9

File tree

580 files changed

+2655
-574
lines changed

Some content is hidden

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

580 files changed

+2655
-574
lines changed

README.md

+10-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.30.0
12-
- Package version: 6.22.2
11+
- API version: 2.34.0
12+
- Package version: 6.22.3
1313

1414

1515
## Installation
@@ -148,6 +148,10 @@ Class | Method | HTTP request | Description
148148
*Intrinio::OptionsApi* | [**get_options_chain_eod**](docs/OptionsApi.md#get_options_chain_eod) | **GET** /options/chain/{symbol}/{expiration}/eod | Options Chain EOD
149149
*Intrinio::OptionsApi* | [**get_options_chain_realtime**](docs/OptionsApi.md#get_options_chain_realtime) | **GET** /options/chain/{symbol}/{expiration}/realtime | Options Chain Realtime
150150
*Intrinio::OptionsApi* | [**get_options_expirations**](docs/OptionsApi.md#get_options_expirations) | **GET** /options/expirations/{symbol} | Options Expirations
151+
*Intrinio::OptionsApi* | [**get_options_interval_by_contract**](docs/OptionsApi.md#get_options_interval_by_contract) | **GET** /options/interval/{identifier} | Options intervals by contract
152+
*Intrinio::OptionsApi* | [**get_options_interval_movers**](docs/OptionsApi.md#get_options_interval_movers) | **GET** /options/interval/movers | Options Intervals Movers
153+
*Intrinio::OptionsApi* | [**get_options_interval_movers_change**](docs/OptionsApi.md#get_options_interval_movers_change) | **GET** /options/interval/movers/change | Options Intervals Movers By Change
154+
*Intrinio::OptionsApi* | [**get_options_interval_movers_volume**](docs/OptionsApi.md#get_options_interval_movers_volume) | **GET** /options/interval/movers/volume | Options Intervals Movers By Volume
151155
*Intrinio::OptionsApi* | [**get_options_prices**](docs/OptionsApi.md#get_options_prices) | **GET** /options/prices/{identifier} | Option Prices
152156
*Intrinio::OptionsApi* | [**get_options_prices_batch_realtime**](docs/OptionsApi.md#get_options_prices_batch_realtime) | **POST** /options/prices/realtime/batch | Option Prices Batch Realtime
153157
*Intrinio::OptionsApi* | [**get_options_prices_eod**](docs/OptionsApi.md#get_options_prices_eod) | **GET** /options/prices/{identifier}/eod | Option Prices EOD
@@ -459,6 +463,10 @@ Class | Method | HTTP request | Description
459463
- [Intrinio::OptionContractsList](docs/OptionContractsList.md)
460464
- [Intrinio::OptionEod](docs/OptionEod.md)
461465
- [Intrinio::OptionFactorsRealtime](docs/OptionFactorsRealtime.md)
466+
- [Intrinio::OptionInterval](docs/OptionInterval.md)
467+
- [Intrinio::OptionIntervalMover](docs/OptionIntervalMover.md)
468+
- [Intrinio::OptionIntervalsMoversResult](docs/OptionIntervalsMoversResult.md)
469+
- [Intrinio::OptionIntervalsResult](docs/OptionIntervalsResult.md)
462470
- [Intrinio::OptionPrice](docs/OptionPrice.md)
463471
- [Intrinio::OptionPriceBatchRealtime](docs/OptionPriceBatchRealtime.md)
464472
- [Intrinio::OptionPriceEod](docs/OptionPriceEod.md)

docs/OptionInterval.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::OptionInterval)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::OptionInterval
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**open_time** | DateTime | The UTC timestamp for the time this interval opened.  
16+
**close_time** | DateTime | The UTC timestamp for the time this interval closed.  
17+
**open** | Float | The first traded contract price in this interval.  
18+
**high** | Float | The highest traded contract price in this interval.  
19+
**low** | Float | The lowest traded contract price in this interval.  
20+
**close** | Float | The last traded contract price in this interval.  
21+
**volume** | Float | The volume of contract trades in this interval.  
22+
**average** | Float | The volume weighted average price of contract trades in this interval.  
23+
**change** | Float | The ratio of Close minus Open to Open.  
24+
25+
[//]: # (END_DEFINITION)
26+
27+
28+

docs/OptionIntervalMover.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::OptionIntervalMover)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::OptionIntervalMover
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**contract** | String | The option contract for the intervals  
16+
**change** | Float | The ratio of Close minus Open to Open.  
17+
**open** | Float | The first traded contract price in this interval.  
18+
**high** | Float | The highest traded contract price in this interval.  
19+
**low** | Float | The lowest traded contract price in this interval.  
20+
**close** | Float | The last traded contract price in this interval.  
21+
**volume** | Float | The volume of contract trades in this interval.  
22+
**average** | Float | The volume weighted average price of contract trades in this interval.  
23+
24+
[//]: # (END_DEFINITION)
25+
26+
27+

docs/OptionIntervalsMoversResult.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::OptionIntervalsMoversResult)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::OptionIntervalsMoversResult
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**open_time** | DateTime | The UTC timestamp for the time this interval opened.  
16+
**close_time** | DateTime | The UTC timestamp for the time this interval closed.  
17+
**size** | String | The size of the time span for the interval.  
18+
**intervals** | [**Array<OptionIntervalMover>**](OptionIntervalMover.md) | Array of all the intervals in the result.  
19+
20+
[//]: # (END_DEFINITION)
21+
22+
23+
[//]: # (CONTAINED_CLASS:Intrinio::OptionIntervalMover)
24+
25+
26+

docs/OptionIntervalsResult.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::OptionIntervalsResult)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::OptionIntervalsResult
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**intervals** | [**Array<OptionInterval>**](OptionInterval.md) | Array of all the intervals in the result.  
16+
**contract** | String | The option contract for the intervals  
17+
**size** | String | The size of the time span for the interval.  
18+
19+
[//]: # (END_DEFINITION)
20+
21+
22+
[//]: # (CONTAINED_CLASS:Intrinio::OptionInterval)
23+
24+
25+

docs/OptionUnusualTrade.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Name | Type | Description
1515
**symbol** | String | The underlying option security symbol for the trade  
1616
**timestamp** | Date | The UTC timestamp of order placement  
1717
**type** | String | The type of unusual trade  
18-
**total_value** | Float | The aggregated value of all option contract premiums included in the trade\\  
18+
**total_value** | Float | The aggregated value of all option contract premiums included in the trade  
1919
**total_size** | Float | The total number of contracts involved in a single transaction  
2020
**average_price** | Float | The average premium paid per option contract  
2121
**contract** | String | The option contract symbol  

0 commit comments

Comments
 (0)