question

Upvotes
Accepted
1 0 1 3

TRTH intraday summary extraction-

Hi

Could you please indicate which condition to use to define the summary interval when using

TickHistoryIntradaySummariesExtractionRequest

I can't find it in the .NET example applications.

thanks and regards

tick-history-rest-apihistorical
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

1 Answer

Upvotes
Accepted
38.1k 69 35 53

SummmaryInterval is defined in the TickHistoryIntradaySummariesCondition class. The possible values are:

    public enum TickHistorySummaryInterval
    {
        OneSecond = 0,
        FiveSeconds = 1,
        OneMinute = 2,
        FiveMinutes = 3,
        TenMinutes = 4,
        FifteenMinutes = 5,
        OneHour = 6,
    }

The example is available in the C# Example Application at the download section. Please refer to the On Demand Extractions -> Create: TickHistoryIntradaySummaries example.

From my test, if it is not defined, it will return Intraday 1 Sec interval data.


trth.png (59.0 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

FYI, the C example application is described in the TRTH Quick Start.

Click below to post an Idea Post Idea