-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
questionFurther information is requestedFurther information is requested
Description
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
Labels
questionFurther information is requestedFurther information is requested