Top Gainers by Exchange

Top Gainers by Exchange Javascript API Documentation

Returns securities with the highest gain percent change traded on the chosen stock exchange.

API Class:
StockExchangeApi
Instance Method:
getStockExchangeGainers()

Stock Price Code Example

Use my API Key
var intrinioSDK = require('intrinio-sdk');
intrinioSDK.ApiClient.instance.authentications['ApiKeyAuth'].apiKey = "YOUR_API_KEY";
intrinioSDK.ApiClient.instance.enableRetries = true;
var stockExchange = new intrinioSDK.StockExchangeApi();
var identifier = "USCOMP";
var opts = {
'minPrice': 8.14,
'pageSize': 100,
'source': "delayed_sip"
};
stockExchange.getStockExchangeGainers(identifier, opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringA Stock Exchange identifier (MIC or Intrinio ID) 
minPriceNumberThe minimum price filter[optional]  
pageSizeNumberThe number of results to return[optional] [default to 100]  
sourceStringReturn the realtime price from the specified source instead of the most recent.[optional]  


Return Type

object
ApiResponseStockExchangeMovers

Properties

NameTypeDescription
movers[StockExchangeMover]The mover security.  
stockExchangeStockExchangeThe Stock Exchange resolved from the given identifier  
object
StockExchangeMover

Properties

NameTypeDescription
securityIdStringThe Intrinio Identifier for this security.  
tickerStringThe ticker symbol for this security.  
lastPriceNumberThe last price of the last trade.  
changeNumberThe raw change in price.  
percentChangeNumberThe percent change in price.  
marketVolumeNumberThe market volume for the most recent (today) trading day.  
sourceStringThe source of the data.  
object
StockExchange

Properties

NameTypeDescription
idStringThe Intrinio ID for the Stock Exchange  
nameStringThe name of the exchange  
micStringThe Market Identifier Code (MIC) of the exchange  
acronymStringThe acronym of the exchange's name  
cityStringThe city in which the exchange is located  
countryStringThe country in which the exchange is located  
countryCodeStringThe 2-digit code of the exchange's country  
websiteStringThe website of the exchange  
firstStockPriceDateDateThe earliest date for which Intrinio has stock prices for the exchange  
lastStockPriceDateDateThe latest date for which Intrinio has stock prices for the exchange