Security Intervals Movers By Change

Security Intervals Movers By Change Python API Documentation

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

API Class:
SecurityApi
Instance Method:
get_security_interval_movers_change()

Stock Price Code Example

Use my API Key
from __future__ import print_function
import time
import intrinio_sdk as intrinio
from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)
source = ''
open_time = ''
response = intrinio.SecurityApi().get_security_interval_movers_change(source=source, open_time=open_time)
print(response)
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

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


Return Type

object
SecurityIntervalsMoversResult

Properties

NameTypeDescription
open_timedatetimeThe UTC timestamp for the time this interval opened.  
close_timedatetimeThe UTC timestamp for the time this interval closed.  
sizestrThe size of the time span for the interval.  
intervalslist[SecurityIntervalMover]Array of all the intervals in the result.  
object
SecurityIntervalMover

Properties

NameTypeDescription
symbolstrThe ticker symbol for the interval  
changefloatThe ratio of Close minus Open to Open.  
openfloatThe first traded price in this interval.  
highfloatThe highest traded price in this interval.  
lowfloatThe lowest traded price in this interval.  
closefloatThe last traded price in this interval.  
volumefloatThe volume of shares in this interval.  
averagefloatThe volume weighted average price of trades in this interval.  
trade_countfloatThe of trades in this interval.