Beispiel #1
0
 /// <summary>
 /// Returns candle data at the specified resolution starting at the specified start time
 /// </summary>
 public IEnumerable <CandleSample> GetCandleDataAsCandleSamples(CandleHeader header, DateTime startTimeUTC)
 {
     return(this.GetCandleDataAsCandleSamples(header, header.GetSkipSecondsUntil(startTimeUTC)));
 }
Beispiel #2
0
 /// <summary>
 /// Gets stream data per candle header index starting from the specified UTC start time
 /// </summary>
 public IEnumerable <StreamSample> GetStreamData(CandleHeader header, DateTime startTimeUTC)
 {
     return(GetStreamData(header, header.GetSkipSecondsUntil(startTimeUTC)));
 }
Beispiel #3
0
 /// <summary>
 /// Returns candle data at the specified resolution starting at the specified start time
 /// </summary>
 public IEnumerable <CandleData> GetCandleData(CandleHeader header, DateTime startTimeUTC)
 {
     return(GetCandleData(header, header.GetSkipSecondsUntil(startTimeUTC)));
 }