Skip to content

How to store/retrieve multivariate time series #77

@giangcoi48k

Description

@giangcoi48k

I have a stock price model, with multiple field-value, like this:

public class IndexSeries
{ 
	public int IndexId {get;set;}
	public long TradingDate {get;set;}  //Unix Epoch milliseconds
	public decimal OpenIndex { get; set; }
	public decimal CloseIndex { get; set; }
	public decimal HighestIndex { get; set; }
	public decimal LowestIndex { get; set; }
	public long TotalMatchVolume { get; set; } 
	public long MatchValue { get; set; }
	public long MatchVolume { get; set; }    
        ...  
}

Data is received with high frequency (at least one second), and I want to use RedisTimeSeries to store/retrieve. How can I do this?

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions