Security Intervals Movers By Change

Security Intervals Movers By Change Java API Documentation

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

API Class:
SecurityApi
Instance Method:
getSecurityIntervalMoversChange()

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);
SecurityApi securityApi = new SecurityApi();
String source = null;
OffsetDateTime openTime = OffsetDateTime.now();
SecurityIntervalsMoversResult result = securityApi.getSecurityIntervalMoversChange(source, openTime);
System.out.println(result);
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
sourceStringRealtime or 15-minute delayed contracts.[optional] [enum: realtime, delayed, nasdaq_basic, nasdaq_basic_filtered]  
openTimeOffsetDateTimeThe inclusive UTC date and time the interval opens at.[optional]  


Return Type

object
SecurityIntervalsMoversResult

Properties

NameTypeDescription
openTimeOffsetDateTimeThe UTC timestamp for the time this interval opened.  
closeTimeOffsetDateTimeThe UTC timestamp for the time this interval closed.  
sizeSizeEnumThe size of the time span for the interval.  
intervalsListArray of all the intervals in the result.  
object
SecurityIntervalMover

Properties

NameTypeDescription
symbolStringThe ticker symbol for the interval  
changeBigDecimalThe ratio of Close minus Open to Open.  
openBigDecimalThe first traded price in this interval.  
highBigDecimalThe highest traded price in this interval.  
lowBigDecimalThe lowest traded price in this interval.  
closeBigDecimalThe last traded price in this interval.  
volumeBigDecimalThe volume of shares in this interval.  
averageBigDecimalThe volume weighted average price of trades in this interval.  
tradeCountBigDecimalThe of trades in this interval.