Top Losers by Exchange

Top Losers by Exchange Java API Documentation

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

API Class:
StockExchangeApi
Instance Method:
getStockExchangeLosers()

Stock Price Code Example

Use my API Key
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
StockExchangeApi stockExchangeApi = new StockExchangeApi();
String identifier = "USCOMP";
BigDecimal minPrice = null;
Integer pageSize = 100;
String source = "delayed_sip";
ApiResponseStockExchangeMovers result = stockExchangeApi.getStockExchangeLosers(identifier, minPrice, pageSize, source);
System.out.println(result);
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringA Stock Exchange identifier (MIC or Intrinio ID) 
minPriceBigDecimalThe minimum price filter[optional]  
pageSizeIntegerThe number of results to return[optional] [default to 100]  
sourceStringReturn the realtime price from the specified source instead of the most recent.[optional] [enum: iex, bats_delayed, utp_delayed, cta_a_delayed, cta_b_delayed, otc_delayed, delayed_sip, nasdaq_basic]  


Return Type

object
ApiResponseStockExchangeMovers

Properties

NameTypeDescription
moversListThe 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.  
lastPriceBigDecimalThe last price of the last trade.  
changeBigDecimalThe raw change in price.  
percentChangeBigDecimalThe percent change in price.  
marketVolumeBigDecimalThe 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  
firstStockPriceDateLocalDateThe earliest date for which Intrinio has stock prices for the exchange  
lastStockPriceDateLocalDateThe latest date for which Intrinio has stock prices for the exchange