Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Miller committed Dec 14, 2018
1 parent 82a5b33 commit 24a5672
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 47 deletions.
2 changes: 1 addition & 1 deletion docs/Company.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Name | Type | Description | Notes
**industry_category** | **str** | The company's operating industry category | [optional]
**industry_group** | **str** | The company's operating industry group | [optional]
**template** | **str** | The financial statement template used by Intrinio to standardize the as reported data | [optional]
**standardized_active** | **bool** | If true, the company has standardized and as reported fundamental data via the Intrinio API; if false, the company has as-reported data only | [optional]
**standardized_active** | **bool** | If true, the company has standardized and as reported fundamental data via the Intrinio API; if False, the company has as-reported data only | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
12 changes: 6 additions & 6 deletions docs/CompanyApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

company_api = intrinio_sdk.CompanyApi()

last_filing_date = '2011-07-15' # date | Last filing date (optional)
last_filing_date = '' # date | Last filing date (optional)
sic = '3350' # str | Standard Industrial Classification code (optional)
template = 'industrial' # str | Template (optional)
sector = 'Basic Materials' # str | Industry sector (optional)
Expand Down Expand Up @@ -92,14 +92,14 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'
company_api = intrinio_sdk.CompanyApi()

identifier = 'AAPL' # str | A Company identifier (Ticker, CIK, LEI, Intrinio ID)
filed_after = '2017-01-01' # date | Filed on or after this date (optional)
filed_before = '2018-01-01' # date | Filed on or before this date (optional)
reported_only = false # bool | Only as-reported fundamentals (optional)
filed_after = '' # date | Filed on or after this date (optional)
filed_before = '' # date | Filed on or before this date (optional)
reported_only = False # bool | Only as-reported fundamentals (optional)
fiscal_year = 2017 # int | Only for the given fiscal year (optional)
statement_code = '' # str | Only of the given statement code (optional)
type = '' # str | Only of the given type (optional)
start_date = '2017-01-01' # date | Only on or after the given date (optional)
end_date = '2018-01-01' # date | Only on or before the given date (optional)
start_date = '' # date | Only on or after the given date (optional)
end_date = '' # date | Only on or before the given date (optional)
next_page = '' # str | Gets the next page of data from a previous API call (optional)

try:
Expand Down
10 changes: 5 additions & 5 deletions docs/HistoricalDataApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

historical_data_api = intrinio_sdk.HistoricalDataApi()

identifier = 'identifier_example' # str | An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
type = 'type_example' # str | Filter by type, when applicable (optional)
start_date = '2013-10-20' # date | Get historical data on or after this date (optional)
end_date = '2013-10-20' # date | Get historical date on or before this date (optional)
identifier = 'AAPL' # str | An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID)
tag = 'marketcap' # str | An Intrinio data tag ID or code-name
type = '' # str | Filter by type, when applicable (optional)
start_date = '2015-01-01' # date | Get historical data on or after this date (optional)
end_date = '2019-01-01' # date | Get historical date on or before this date (optional)
sort_order = 'desc' # str | Sort by date `asc` or `desc` (optional) (default to desc)
next_page = '' # str | Gets the next page of data from a previous API call (optional)

Expand Down
66 changes: 33 additions & 33 deletions docs/IndexApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
identifier = '$GDP' # str | An Index Identifier (symbol, Intrinio ID)

try:
api_response = index_api.get_economic_index_by_id(identifier)
Expand Down Expand Up @@ -195,8 +195,8 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
identifier = '$GDP' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name

try:
api_response = index_api.get_economic_index_data_point_number(identifier, tag)
Expand Down Expand Up @@ -237,8 +237,8 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
identifier = '$GDP' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name

try:
api_response = index_api.get_economic_index_data_point_text(identifier, tag)
Expand Down Expand Up @@ -279,11 +279,11 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
type = 'type_example' # str | Filter by type, when applicable (optional)
start_date = '2013-10-20' # date | Get historical data on or after this date (optional)
end_date = '2013-10-20' # date | Get historical data on or before this date (optional)
identifier = '$GDP' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name
type = '' # str | Filter by type, when applicable (optional)
start_date = '2018-01-01' # date | Get historical data on or after this date (optional)
end_date = '2019-01-01' # date | Get historical data on or before this date (optional)
sort_order = 'desc' # str | Sort by date `asc` or `desc` (optional) (default to desc)
next_page = '' # str | Gets the next page of data from a previous API call (optional)

Expand Down Expand Up @@ -329,7 +329,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
identifier = '$SIC.1' # str | An Index Identifier (symbol, Intrinio ID)

try:
api_response = index_api.get_sic_index_by_id(identifier)
Expand Down Expand Up @@ -369,8 +369,8 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
identifier = '$SIC.1' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name

try:
api_response = index_api.get_sic_index_data_point_number(identifier, tag)
Expand Down Expand Up @@ -411,8 +411,8 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
identifier = '$SIC.1' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name

try:
api_response = index_api.get_sic_index_data_point_text(identifier, tag)
Expand Down Expand Up @@ -453,11 +453,11 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
type = 'type_example' # str | Filter by type, when applicable (optional)
start_date = '2013-10-20' # date | Get historical data on or after this date (optional)
end_date = '2013-10-20' # date | Get historical data on or before this date (optional)
identifier = '$SIC.1' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'marketcap' # str | An Intrinio data tag ID or code-name
type = '' # str | Filter by type, when applicable (optional)
start_date = '2018-01-01' # date | Get historical data on or after this date (optional)
end_date = '2019-01-01' # date | Get historical data on or before this date (optional)
sort_order = 'desc' # str | Sort by date `asc` or `desc` (optional) (default to desc)
next_page = '' # str | Gets the next page of data from a previous API call (optional)

Expand Down Expand Up @@ -503,7 +503,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
identifier = '$DJI' # str | An Index Identifier (symbol, Intrinio ID)

try:
api_response = index_api.get_stock_market_index_by_id(identifier)
Expand Down Expand Up @@ -543,8 +543,8 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
identifier = '$DJI' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name

try:
api_response = index_api.get_stock_market_index_data_point_number(identifier, tag)
Expand Down Expand Up @@ -585,8 +585,8 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
identifier = '$DJI' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name

try:
api_response = index_api.get_stock_market_index_data_point_text(identifier, tag)
Expand Down Expand Up @@ -627,11 +627,11 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

identifier = 'identifier_example' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'tag_example' # str | An Intrinio data tag ID or code-name
type = 'type_example' # str | Filter by type, when applicable (optional)
start_date = '2013-10-20' # date | Get historical data on or after this date (optional)
end_date = '2013-10-20' # date | Get historical data on or before this date (optional)
identifier = '$DJI' # str | An Index Identifier (symbol, Intrinio ID)
tag = 'level' # str | An Intrinio data tag ID or code-name
type = '' # str | Filter by type, when applicable (optional)
start_date = '2018-01-01' # date | Get historical data on or after this date (optional)
end_date = '2019-01-01' # date | Get historical data on or before this date (optional)
sort_order = 'desc' # str | Sort by date `asc` or `desc` (optional) (default to desc)
next_page = '' # str | Gets the next page of data from a previous API call (optional)

Expand Down Expand Up @@ -679,7 +679,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

query = 'query_example' # str | Search query
query = 'GDP' # str | Search query

try:
api_response = index_api.search_economic_indices(query)
Expand Down Expand Up @@ -719,7 +719,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

query = 'query_example' # str | Search query
query = 'agriculture' # str | Search query

try:
api_response = index_api.search_sic_indices(query)
Expand Down Expand Up @@ -759,7 +759,7 @@ intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

index_api = intrinio_sdk.IndexApi()

query = 'query_example' # str | Search query
query = 'dow' # str | Search query

try:
api_response = index_api.search_stock_markets_indices(query)
Expand Down
4 changes: 2 additions & 2 deletions docs/SecurityApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ security_api = intrinio_sdk.SecurityApi()
logic = intrinio_sdk.SecurityScreenGroup() # SecurityScreenGroup | The logic to screen with, consisting of operators, clauses, and nested groups.<br/> See <a href=\"/documentation/screener_v2\" target=\"_blank\">screener documentation</a> for details on how to construct conditions. (optional)
order_column = 'order_column_example' # str | Results returned sorted by this column (optional)
order_direction = 'asc' # str | Sort order to use with the order_column (optional) (default to asc)
primary_only = false # bool | Return only primary securities (optional) (default to false)
primary_only = False # bool | Return only primary securities (optional) (default to False)

try:
api_response = security_api.screen_securities(logic=logic, order_column=order_column, order_direction=order_direction, primary_only=primary_only)
Expand All @@ -359,7 +359,7 @@ Name | Type | Description | Notes
**logic** | [**SecurityScreenGroup**](SecurityScreenGroup.md)| The logic to screen with, consisting of operators, clauses, and nested groups.&lt;br/&gt; See &lt;a href&#x3D;\&quot;/documentation/screener_v2\&quot; target&#x3D;\&quot;_blank\&quot;&gt;screener documentation&lt;/a&gt; for details on how to construct conditions. | [optional]
**order_column** | **str**| Results returned sorted by this column | [optional]
**order_direction** | **str**| Sort order to use with the order_column | [optional] [default to asc]
**primary_only** | **bool**| Return only primary securities | [optional] [default to false]
**primary_only** | **bool**| Return only primary securities | [optional] [default to False]

### Return type

Expand Down

0 comments on commit 24a5672

Please sign in to comment.