question

Upvotes
Accepted
1 4 4 5

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 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
83.1k 281 53 77

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 512.0 KiB each and 1.0 MiB total.

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

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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