Security Intervals Movers By Change

Security Intervals Movers By Change Csharp API Documentation

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

API Class:
Intrinio.SDK.Api.SecurityApi
Instance Method:
GetSecurityIntervalMoversChange()

Stock Price Code Example

Use my API Key
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityIntervalMoversChangeExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var securityApi = new SecurityApi();
string source = null;
DateTime? openTime = null;
SecurityIntervalsMoversResult result = securityApi.GetSecurityIntervalMoversChange(source, openTime);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
sourcestringRealtime or 15-minute delayed contracts.[optional]  
openTimeDateTime?The inclusive UTC date and time the interval opens at.[optional]  


Return Type

object
Intrinio.SDK.Model.SecurityIntervalsMoversResult

Properties

NameTypeDescription
OpenTimeDateTime?The UTC timestamp for the time this interval opened.  
CloseTimeDateTime?The UTC timestamp for the time this interval closed.  
SizestringThe size of the time span for the interval.  
IntervalsListArray of all the intervals in the result.  
object
Intrinio.SDK.Model.SecurityIntervalMover

Properties

NameTypeDescription
SymbolstringThe ticker symbol for the interval  
Changedecimal?The ratio of Close minus Open to Open.  
Opendecimal?The first traded price in this interval.  
Highdecimal?The highest traded price in this interval.  
Lowdecimal?The lowest traded price in this interval.  
Closedecimal?The last traded price in this interval.  
Volumedecimal?The volume of shares in this interval.  
Averagedecimal?The volume weighted average price of trades in this interval.  
TradeCountdecimal?The of trades in this interval.