Security Intervals Movers

Security Intervals Movers Javascript API Documentation

Returns a list of intervals for the biggest movers over the last hour interval.

API Class:
SecurityApi
Instance Method:
getSecurityIntervalMovers()

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 security = new intrinioSDK.SecurityApi();
var opts = {
'source': null,
'openTime': null
};
security.getSecurityIntervalMovers(opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
sourceStringRealtime or 15-minute delayed contracts.[optional]  
openTimeDateThe inclusive UTC date and time the interval opens at.[optional]  


Return Type

object
SecurityIntervalsMoversResult

Properties

NameTypeDescription
openTimeDateThe UTC timestamp for the time this interval opened.  
closeTimeDateThe UTC timestamp for the time this interval closed.  
sizeStringThe size of the time span for the interval.  
intervals[SecurityIntervalMover]Array of all the intervals in the result.  
object
SecurityIntervalMover

Properties

NameTypeDescription
symbolStringThe ticker symbol for the interval  
changeNumberThe ratio of Close minus Open to Open.  
openNumberThe first traded price in this interval.  
highNumberThe highest traded price in this interval.  
lowNumberThe lowest traded price in this interval.  
closeNumberThe last traded price in this interval.  
volumeNumberThe volume of shares in this interval.  
averageNumberThe volume weighted average price of trades in this interval.  
tradeCountNumberThe of trades in this interval.