docs/SecurityApi.md in intrinio-sdk-3.1.0 vs docs/SecurityApi.md in intrinio-sdk-3.2.0

- old
+ new

@@ -73,46 +73,63 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_all_securities) ## **get_all_securities** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_all_securities_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_all_securities_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurities get_all_securities(opts) #### All Securities -Returns all Securities to which you have access. +Returns all Securities to which you have access. When parameters are specified, returns matching Securities. [//]: # (END_OVERVIEW) ### Example [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end security_api = Intrinio::SecurityApi.new opts = { + active: true, # BOOLEAN | When true, return securities that are active. When false, return securities that are not active. A security is considered active if it has traded or has had a corporate action in the past 30 days, and has not been merged into another security (such as due to ticker changes or corporate restructurings). + delisted: false, # BOOLEAN | When true, return securities that have been delisted from their exchange. Note that there may be a newer security for the same company that has been relisted on a differente exchange. When false, return securities that have not been delisted. + code: nil, # String | Return securities classified with the given code (<a href=\"/documentation/security_codes\" target=\"_blank\">reference</a>). + currency: nil, # String | Return securities traded in the given 3-digit ISO 4217 currency code (<a href=\"https://en.wikipedia.org/wiki/ISO_4217\" target=\"_blank\">reference</a>). + ticker: nil, # String | Return securities traded with the given ticker. Note that securities across the world (and through time) may trade with the same ticker but represent different companies. Use this in conjuction with other parameters for more specificity. + name: nil, # String | Return securities with the given text in their name (not case sensitive). + composite_mic: nil, # String | Return securities classified under the composite exchange with the given Market Identification Code (MIC). A composite exchange may or may not be a real exchange. For example, the USCOMP exchange (our only composite exchange to date) is a combination of exchanges with the following MICs: ARCX, XASE, XPOR, FINR, XCIS, XNAS, XNYS, BATS. This composite grouping is done for user convenience. At this time, all US securities are classified under the composite exchange with MIC USCOMP. To query for specific US exchanges, use the exchange_mic parameter below. + exchange_mic: nil, # String | The MIC code of the exchange where the security is actually traded. + stock_prices_after: nil, # Date | Return securities with end-of-day stock prices on or after this date. + stock_prices_before: nil, # Date | Return securities with end-of-day stock prices on or before this date. + cik: nil, # String | Return securities belonging to the company with the given Central Index Key (CIK). + figi: nil, # String | Return securities with the given Exchange Level FIGI (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). + composite_figi: nil, # String | Return securities with the given Country Composite FIGI (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). + share_class_figi: nil, # String | Return securities with the given Global Share Class FIGI (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). + figi_unique_id: nil, # String | Return securities with the given FIGI Unique ID (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). + include_non_figi: false, # BOOLEAN | When true, include securities that do not have a FIGI. By default, this is false. If this parameter is not specified, only securities with a FIGI are returned. page_size: 100, # Integer | The number of results to return next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_all_securities(opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_all_securities: #{e}" end ``` @@ -125,10 +142,26 @@ [//]: # (START_PARAMETERS) Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- + **active** | BOOLEAN| When true, return securities that are active. When false, return securities that are not active. A security is considered active if it has traded or has had a corporate action in the past 30 days, and has not been merged into another security (such as due to ticker changes or corporate restructurings). | [optional] &nbsp; + **delisted** | BOOLEAN| When true, return securities that have been delisted from their exchange. Note that there may be a newer security for the same company that has been relisted on a differente exchange. When false, return securities that have not been delisted. | [optional] &nbsp; + **code** | String| Return securities classified with the given code (&lt;a href&#x3D;\&quot;/documentation/security_codes\&quot; target&#x3D;\&quot;_blank\&quot;&gt;reference&lt;/a&gt;). | [optional] &nbsp; + **currency** | String| Return securities traded in the given 3-digit ISO 4217 currency code (&lt;a href&#x3D;\&quot;https://en.wikipedia.org/wiki/ISO_4217\&quot; target&#x3D;\&quot;_blank\&quot;&gt;reference&lt;/a&gt;). | [optional] &nbsp; + **ticker** | String| Return securities traded with the given ticker. Note that securities across the world (and through time) may trade with the same ticker but represent different companies. Use this in conjuction with other parameters for more specificity. | [optional] &nbsp; + **name** | String| Return securities with the given text in their name (not case sensitive). | [optional] &nbsp; + **composite_mic** | String| Return securities classified under the composite exchange with the given Market Identification Code (MIC). A composite exchange may or may not be a real exchange. For example, the USCOMP exchange (our only composite exchange to date) is a combination of exchanges with the following MICs: ARCX, XASE, XPOR, FINR, XCIS, XNAS, XNYS, BATS. This composite grouping is done for user convenience. At this time, all US securities are classified under the composite exchange with MIC USCOMP. To query for specific US exchanges, use the exchange_mic parameter below. | [optional] &nbsp; + **exchange_mic** | String| The MIC code of the exchange where the security is actually traded. | [optional] &nbsp; + **stock_prices_after** | Date| Return securities with end-of-day stock prices on or after this date. | [optional] &nbsp; + **stock_prices_before** | Date| Return securities with end-of-day stock prices on or before this date. | [optional] &nbsp; + **cik** | String| Return securities belonging to the company with the given Central Index Key (CIK). | [optional] &nbsp; + **figi** | String| Return securities with the given Exchange Level FIGI (&lt;a href&#x3D;\&quot;https://www.openfigi.com/about\&quot; target&#x3D;\&quot;_blank\&quot;&gt;reference&lt;/a&gt;). | [optional] &nbsp; + **composite_figi** | String| Return securities with the given Country Composite FIGI (&lt;a href&#x3D;\&quot;https://www.openfigi.com/about\&quot; target&#x3D;\&quot;_blank\&quot;&gt;reference&lt;/a&gt;). | [optional] &nbsp; + **share_class_figi** | String| Return securities with the given Global Share Class FIGI (&lt;a href&#x3D;\&quot;https://www.openfigi.com/about\&quot; target&#x3D;\&quot;_blank\&quot;&gt;reference&lt;/a&gt;). | [optional] &nbsp; + **figi_unique_id** | String| Return securities with the given FIGI Unique ID (&lt;a href&#x3D;\&quot;https://www.openfigi.com/about\&quot; target&#x3D;\&quot;_blank\&quot;&gt;reference&lt;/a&gt;). | [optional] &nbsp; + **include_non_figi** | BOOLEAN| When true, include securities that do not have a FIGI. By default, this is false. If this parameter is not specified, only securities with a FIGI are returned. | [optional] [default to false] &nbsp; **page_size** | Integer| The number of results to return | [optional] [default to 100] &nbsp; **next_page** | String| Gets the next page of data from a previous API call | [optional] &nbsp; <br/> [//]: # (END_PARAMETERS) @@ -158,11 +191,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_by_id) ## **get_security_by_id** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_by_id_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_by_id_v2) [//]: # (START_OVERVIEW) > Security get_security_by_id(identifier) @@ -178,10 +211,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -191,11 +225,11 @@ identifier = "AAPL" # String | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) begin result = security_api.get_security_by_id(identifier) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_by_id: #{e}" end ``` @@ -240,11 +274,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_data_point_number) ## **get_security_data_point_number** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_data_point_number_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_data_point_number_v2) [//]: # (START_OVERVIEW) > Float get_security_data_point_number(identifier, tag) @@ -260,10 +294,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -275,11 +310,11 @@ tag = "close_price" # String | An Intrinio data tag ID or code (<a href='https://data.intrinio.com/data-tags'>reference</a>) begin result = security_api.get_security_data_point_number(identifier, tag) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_data_point_number: #{e}" end ``` @@ -325,11 +360,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_data_point_text) ## **get_security_data_point_text** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_data_point_text_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_data_point_text_v2) [//]: # (START_OVERVIEW) > String get_security_data_point_text(identifier, tag) @@ -345,10 +380,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -360,11 +396,11 @@ tag = "figi" # String | An Intrinio data tag ID or code-name begin result = security_api.get_security_data_point_text(identifier, tag) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_data_point_text: #{e}" end ``` @@ -410,11 +446,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_historical_data) ## **get_security_historical_data** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_historical_data_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_historical_data_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityHistoricalData get_security_historical_data(identifier, tag, opts) @@ -430,10 +466,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -454,11 +491,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_historical_data(identifier, tag, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_historical_data: #{e}" end ``` @@ -511,11 +548,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_intraday_prices) ## **get_security_intraday_prices** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_intraday_prices_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_intraday_prices_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityIntradayPrices get_security_intraday_prices(identifier, opts) @@ -531,10 +568,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -551,11 +589,11 @@ end_time: "4200" # String | Return intraday prices stopping at the specified time on the `end_date` (timezone is UTC) } begin result = security_api.get_security_intraday_prices(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_intraday_prices: #{e}" end ``` @@ -605,11 +643,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_latest_dividend_record) ## **get_security_latest_dividend_record** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_latest_dividend_record_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_latest_dividend_record_v2) [//]: # (START_OVERVIEW) > DividendRecord get_security_latest_dividend_record(identifier) @@ -625,10 +663,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -638,11 +677,11 @@ identifier = "AAPL" # String | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) begin result = security_api.get_security_latest_dividend_record(identifier) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_latest_dividend_record: #{e}" end ``` @@ -687,11 +726,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_latest_earnings_record) ## **get_security_latest_earnings_record** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_latest_earnings_record_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_latest_earnings_record_v2) [//]: # (START_OVERVIEW) > EarningsRecord get_security_latest_earnings_record(identifier) @@ -707,10 +746,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -720,11 +760,11 @@ identifier = "AAPL" # String | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) begin result = security_api.get_security_latest_earnings_record(identifier) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_latest_earnings_record: #{e}" end ``` @@ -769,11 +809,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_adi) ## **get_security_price_technicals_adi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_adi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_adi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityAccumulationDistributionIndex get_security_price_technicals_adi(identifier, opts) @@ -789,10 +829,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -808,11 +849,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_adi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_adi: #{e}" end ``` @@ -861,11 +902,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_adtv) ## **get_security_price_technicals_adtv** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_adtv_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_adtv_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityAverageDailyTradingVolume get_security_price_technicals_adtv(identifier, opts) @@ -881,10 +922,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -901,11 +943,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_adtv(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_adtv: #{e}" end ``` @@ -955,11 +997,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_adx) ## **get_security_price_technicals_adx** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_adx_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_adx_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityAverageDirectionalIndex get_security_price_technicals_adx(identifier, opts) @@ -975,10 +1017,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -995,11 +1038,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_adx(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_adx: #{e}" end ``` @@ -1049,11 +1092,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_ao) ## **get_security_price_technicals_ao** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_ao_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_ao_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityAwesomeOscillator get_security_price_technicals_ao(identifier, opts) @@ -1069,10 +1112,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1090,11 +1134,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_ao(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_ao: #{e}" end ``` @@ -1145,11 +1189,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_atr) ## **get_security_price_technicals_atr** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_atr_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_atr_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityAverageTrueRange get_security_price_technicals_atr(identifier, opts) @@ -1165,10 +1209,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1185,11 +1230,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_atr(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_atr: #{e}" end ``` @@ -1239,11 +1284,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_bb) ## **get_security_price_technicals_bb** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_bb_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_bb_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityBollingerBands get_security_price_technicals_bb(identifier, opts) @@ -1259,10 +1304,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1281,11 +1327,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_bb(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_bb: #{e}" end ``` @@ -1337,11 +1383,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_cci) ## **get_security_price_technicals_cci** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_cci_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_cci_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityCommodityChannelIndex get_security_price_technicals_cci(identifier, opts) @@ -1357,10 +1403,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1378,11 +1425,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_cci(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_cci: #{e}" end ``` @@ -1433,11 +1480,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_cmf) ## **get_security_price_technicals_cmf** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_cmf_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_cmf_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityChaikinMoneyFlow get_security_price_technicals_cmf(identifier, opts) @@ -1453,10 +1500,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1473,11 +1521,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_cmf(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_cmf: #{e}" end ``` @@ -1527,11 +1575,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_dc) ## **get_security_price_technicals_dc** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_dc_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_dc_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityDonchianChannel get_security_price_technicals_dc(identifier, opts) @@ -1547,10 +1595,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1568,11 +1617,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_dc(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_dc: #{e}" end ``` @@ -1623,11 +1672,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_dpo) ## **get_security_price_technicals_dpo** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_dpo_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_dpo_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityDetrendedPriceOscillator get_security_price_technicals_dpo(identifier, opts) @@ -1643,10 +1692,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1664,11 +1714,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_dpo(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_dpo: #{e}" end ``` @@ -1719,11 +1769,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_eom) ## **get_security_price_technicals_eom** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_eom_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_eom_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityEaseOfMovement get_security_price_technicals_eom(identifier, opts) @@ -1739,10 +1789,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1759,11 +1810,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_eom(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_eom: #{e}" end ``` @@ -1813,11 +1864,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_fi) ## **get_security_price_technicals_fi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_fi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_fi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityForceIndex get_security_price_technicals_fi(identifier, opts) @@ -1833,10 +1884,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1852,11 +1904,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_fi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_fi: #{e}" end ``` @@ -1905,11 +1957,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_ichimoku) ## **get_security_price_technicals_ichimoku** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_ichimoku_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_ichimoku_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityIchimokuKinkoHyo get_security_price_technicals_ichimoku(identifier, opts) @@ -1925,10 +1977,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -1947,11 +2000,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_ichimoku(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_ichimoku: #{e}" end ``` @@ -2003,11 +2056,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_kc) ## **get_security_price_technicals_kc** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_kc_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_kc_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityKeltnerChannel get_security_price_technicals_kc(identifier, opts) @@ -2023,10 +2076,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2043,11 +2097,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_kc(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_kc: #{e}" end ``` @@ -2097,11 +2151,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_kst) ## **get_security_price_technicals_kst** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_kst_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_kst_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityKnowSureThing get_security_price_technicals_kst(identifier, opts) @@ -2117,10 +2171,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2145,11 +2200,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_kst(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_kst: #{e}" end ``` @@ -2207,11 +2262,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_macd) ## **get_security_price_technicals_macd** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_macd_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_macd_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityMovingAverageConvergenceDivergence get_security_price_technicals_macd(identifier, opts) @@ -2227,10 +2282,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2250,11 +2306,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_macd(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_macd: #{e}" end ``` @@ -2307,11 +2363,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_mfi) ## **get_security_price_technicals_mfi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_mfi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_mfi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityMoneyFlowIndex get_security_price_technicals_mfi(identifier, opts) @@ -2327,10 +2383,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2347,11 +2404,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_mfi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_mfi: #{e}" end ``` @@ -2401,11 +2458,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_mi) ## **get_security_price_technicals_mi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_mi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_mi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityMassIndex get_security_price_technicals_mi(identifier, opts) @@ -2421,10 +2478,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2442,11 +2500,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_mi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_mi: #{e}" end ``` @@ -2497,11 +2555,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_nvi) ## **get_security_price_technicals_nvi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_nvi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_nvi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityNegativeVolumeIndex get_security_price_technicals_nvi(identifier, opts) @@ -2517,10 +2575,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2536,11 +2595,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_nvi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_nvi: #{e}" end ``` @@ -2589,11 +2648,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_obv) ## **get_security_price_technicals_obv** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_obv_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_obv_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityOnBalanceVolume get_security_price_technicals_obv(identifier, opts) @@ -2609,10 +2668,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2628,11 +2688,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_obv(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_obv: #{e}" end ``` @@ -2681,11 +2741,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_obv_mean) ## **get_security_price_technicals_obv_mean** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_obv_mean_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_obv_mean_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityOnBalanceVolumeMean get_security_price_technicals_obv_mean(identifier, opts) @@ -2701,10 +2761,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2721,11 +2782,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_obv_mean(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_obv_mean: #{e}" end ``` @@ -2775,11 +2836,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_rsi) ## **get_security_price_technicals_rsi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_rsi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_rsi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityRelativeStrengthIndex get_security_price_technicals_rsi(identifier, opts) @@ -2795,10 +2856,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2816,11 +2878,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_rsi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_rsi: #{e}" end ``` @@ -2871,11 +2933,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_sma) ## **get_security_price_technicals_sma** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_sma_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_sma_v2) [//]: # (START_OVERVIEW) > ApiResponseSecuritySimpleMovingAverage get_security_price_technicals_sma(identifier, opts) @@ -2891,10 +2953,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -2912,11 +2975,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_sma(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_sma: #{e}" end ``` @@ -2967,11 +3030,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_sr) ## **get_security_price_technicals_sr** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_sr_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_sr_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityStochasticOscillator get_security_price_technicals_sr(identifier, opts) @@ -2987,10 +3050,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3008,11 +3072,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_sr(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_sr: #{e}" end ``` @@ -3063,11 +3127,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_trix) ## **get_security_price_technicals_trix** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_trix_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_trix_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityTripleExponentialAverage get_security_price_technicals_trix(identifier, opts) @@ -3083,10 +3147,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3103,11 +3168,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_trix(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_trix: #{e}" end ``` @@ -3157,11 +3222,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_tsi) ## **get_security_price_technicals_tsi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_tsi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_tsi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityTrueStrengthIndex get_security_price_technicals_tsi(identifier, opts) @@ -3177,10 +3242,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3199,11 +3265,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_tsi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_tsi: #{e}" end ``` @@ -3255,11 +3321,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_uo) ## **get_security_price_technicals_uo** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_uo_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_uo_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityUltimateOscillator get_security_price_technicals_uo(identifier, opts) @@ -3275,10 +3341,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3300,11 +3367,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_uo(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_uo: #{e}" end ``` @@ -3359,11 +3426,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_vi) ## **get_security_price_technicals_vi** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_vi_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_vi_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityVortexIndicator get_security_price_technicals_vi(identifier, opts) @@ -3379,10 +3446,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3399,11 +3467,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_vi(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_vi: #{e}" end ``` @@ -3453,11 +3521,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_vpt) ## **get_security_price_technicals_vpt** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_vpt_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_vpt_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityVolumePriceTrend get_security_price_technicals_vpt(identifier, opts) @@ -3473,10 +3541,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3492,11 +3561,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_vpt(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_vpt: #{e}" end ``` @@ -3545,11 +3614,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_vwap) ## **get_security_price_technicals_vwap** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_vwap_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_vwap_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityVolumeWeightedAveragePrice get_security_price_technicals_vwap(identifier, opts) @@ -3565,10 +3634,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3584,11 +3654,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_vwap(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_vwap: #{e}" end ``` @@ -3637,11 +3707,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_price_technicals_wr) ## **get_security_price_technicals_wr** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_price_technicals_wr_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_price_technicals_wr_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityWilliamsR get_security_price_technicals_wr(identifier, opts) @@ -3657,10 +3727,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3677,11 +3748,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_price_technicals_wr(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_price_technicals_wr: #{e}" end ``` @@ -3731,11 +3802,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_realtime_price) ## **get_security_realtime_price** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_realtime_price_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_realtime_price_v2) [//]: # (START_OVERVIEW) > RealtimeStockPrice get_security_realtime_price(identifier, opts) @@ -3751,10 +3822,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3762,16 +3834,16 @@ security_api = Intrinio::SecurityApi.new identifier = "AAPL" # String | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) opts = { - source: nil # String | Return the realtime price from the specified data source + source: nil # String | Return the realtime price from the specified data source. If no source is specified, the best source available is used. } begin result = security_api.get_security_realtime_price(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_realtime_price: #{e}" end ``` @@ -3785,11 +3857,11 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **identifier** | String| A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | &nbsp; - **source** | String| Return the realtime price from the specified data source | [optional] &nbsp; + **source** | String| Return the realtime price from the specified data source. If no source is specified, the best source available is used. | [optional] &nbsp; <br/> [//]: # (END_PARAMETERS) ### Return type @@ -3817,11 +3889,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_stock_price_adjustments) ## **get_security_stock_price_adjustments** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_stock_price_adjustments_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_stock_price_adjustments_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityStockPriceAdjustments get_security_stock_price_adjustments(identifier, opts) @@ -3837,10 +3909,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3856,11 +3929,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_stock_price_adjustments(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_stock_price_adjustments: #{e}" end ``` @@ -3909,11 +3982,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_stock_prices) ## **get_security_stock_prices** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_stock_prices_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_stock_prices_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityStockPrices get_security_stock_prices(identifier, opts) @@ -3929,10 +4002,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -3949,11 +4023,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_stock_prices(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_stock_prices: #{e}" end ``` @@ -4003,11 +4077,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_zacks_analyst_ratings) ## **get_security_zacks_analyst_ratings** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_zacks_analyst_ratings_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_zacks_analyst_ratings_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityZacksAnalystRatings get_security_zacks_analyst_ratings(identifier, opts) @@ -4023,10 +4097,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -4055,11 +4130,11 @@ page_size: 100 # Integer | The number of results to return } begin result = security_api.get_security_zacks_analyst_ratings(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_zacks_analyst_ratings: #{e}" end ``` @@ -4121,11 +4196,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_zacks_analyst_ratings_snapshot) ## **get_security_zacks_analyst_ratings_snapshot** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_zacks_analyst_ratings_snapshot_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_zacks_analyst_ratings_snapshot_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityZacksAnalystRatingsSnapshot get_security_zacks_analyst_ratings_snapshot(identifier, opts) @@ -4141,10 +4216,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -4157,11 +4233,11 @@ date: nil # String | Lookup a historical snapshot on the given date } begin result = security_api.get_security_zacks_analyst_ratings_snapshot(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_zacks_analyst_ratings_snapshot: #{e}" end ``` @@ -4207,11 +4283,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_zacks_eps_surprises) ## **get_security_zacks_eps_surprises** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_zacks_eps_surprises_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_zacks_eps_surprises_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityZacksEPSSurprises get_security_zacks_eps_surprises(identifier, opts) @@ -4227,10 +4303,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -4244,11 +4321,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_zacks_eps_surprises(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_zacks_eps_surprises: #{e}" end ``` @@ -4295,11 +4372,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#get_security_zacks_sales_surprises) ## **get_security_zacks_sales_surprises** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/get_security_zacks_sales_surprises_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_zacks_sales_surprises_v2) [//]: # (START_OVERVIEW) > ApiResponseSecurityZacksSalesSurprises get_security_zacks_sales_surprises(identifier, opts) @@ -4315,10 +4392,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -4332,11 +4410,11 @@ next_page: nil # String | Gets the next page of data from a previous API call } begin result = security_api.get_security_zacks_sales_surprises(identifier, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->get_security_zacks_sales_surprises: #{e}" end ``` @@ -4383,11 +4461,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#screen_securities) ## **screen_securities** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/screen_securities_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/screen_securities_v2) [//]: # (START_OVERVIEW) > Array&lt;SecurityScreenResult&gt; screen_securities(opts) @@ -4403,10 +4481,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -4421,11 +4500,11 @@ page_size: 100 # Integer | The number of results to return } begin result = security_api.screen_securities(opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->screen_securities: #{e}" end ``` @@ -4474,11 +4553,11 @@ [//]: # (DOCUMENT_LINK:SecurityApi.md#search_securities) ## **search_securities** -[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/api_v2/search_securities_v2) +[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/search_securities_v2) [//]: # (START_OVERVIEW) > ApiResponseSecuritiesSearch search_securities(query, opts) @@ -4494,10 +4573,11 @@ [//]: # (START_CODE_EXAMPLE) ```ruby # Load the gem require 'intrinio-sdk' +require 'pp' # Setup authorization Intrinio.configure do |config| config.api_key['api_key'] = 'YOUR_API_KEY' end @@ -4510,10 +4590,10 @@ page_size: 100 # Integer | The number of results to return } begin result = security_api.search_securities(query, opts) - p result + pp result rescue Intrinio::ApiError => e puts "Exception when calling SecurityApi->search_securities: #{e}" end ```