Options Unusual Activity Intraday

Options Unusual Activity Intraday Javascript API Documentation

Returns unusual trades for a given identifier within the query parameters.

API Class:
OptionsApi
Instance Method:
getUnusualActivityIntraday()

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 options = new intrinioSDK.OptionsApi();
var symbol = "AAPL";
var opts = {
'nextPage': null,
'pageSize': 1000,
'activityType': null,
'sentiment': null,
'startDate': new Date("2022-02-01"),
'endDate': new Date("2022-02-03"),
'minimumTotalValue': 100000.0,
'maximumTotalValue': 200000.0
};
options.getUnusualActivityIntraday(symbol, opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
symbolStringThe option symbol, corresponding to the underlying security. 
nextPageStringGets the next page of data from a previous API call[optional]  
pageSizeNumberThe number of results to return[optional] [default to 1000]  
activityTypeStringThe unusual activity type to query for.[optional]  
sentimentStringThe sentiment type to query for.[optional]  
startDateDateReturn unusual activity on or after this date.[optional]  
endDateDateReturn unusual activity on or before this date.[optional]  
minimumTotalValueObjectThe inclusive minimum total value for the unusual activity.[optional]  
maximumTotalValueObjectThe inclusive maximum total value for the unusual activity.[optional]  


Return Type

object
ApiResponseOptionsUnusualActivity

Properties

NameTypeDescription
trades[OptionUnusualTrade]A list of unusual trades for a given company identifier  
object
OptionUnusualTrade

Properties

NameTypeDescription
symbolStringThe underlying option security symbol for the trade  
timestampDateThe UTC timestamp of order placement  
typeStringThe type of unusual trade  
totalValueNumberThe aggregated value of all option contract premiums included in the trade  
totalSizeNumberThe total number of contracts involved in a single transaction  
averagePriceNumberThe average premium paid per option contract  
contractStringThe option contract symbol  
askAtExecutionNumberAsk price at execution  
bidAtExecutionNumberBid price at execution  
sentimentStringBullish, Bearish, or Neutral Sentiment is estimated based on whether the trade was executed at the bid, ask, or mark price.  
underlyingPriceAtExecutionNumberPrice of the underlying security at execution of trade