| 1234567891011121314151617181920212223 |
- namespace Easychart.Finance.DataProvider
- {
- using System;
- public class StreamingData
- {
- public double Price;
- public DateTime QuoteTime;
- public string Symbol;
- public DateTime Time;
- public double Volume;
- public StreamingData(string Symbol, DateTime QuoteTime, double Price, double Volume)
- {
- this.Symbol = Symbol;
- this.QuoteTime = QuoteTime;
- this.Price = Price;
- this.Volume = Volume;
- this.Time = DateTime.Now;
- }
- }
- }
|