Ejemplo n.º 1
0
 void IEWrapper.HistoricalData(int requestId, Bar bar)
 {
     HistoricalData?.Invoke(new HistoricalDataMessage(requestId, bar));
 }
Ejemplo n.º 2
0
 void EWrapper.historicalData(int reqId, string date, double open, double high, double low, double close, int volume, int count, double WAP, bool hasGaps)
 {
     HistoricalData?.Invoke(reqId, date, open, high, low, close, volume, count, WAP, hasGaps);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// HistoricalData event invocator
 /// </summary>
 protected virtual void OnHistoricalData(HistoricalDataEventArgs e)
 {
     HistoricalData?.Invoke(this, e);
 }
 public virtual void historicalData(int reqId, string date, double open, double high, double low, double close, int volume, int count, double WAP, bool hasGaps)
 {
     HistoricalData?.Invoke(this, new HistoricalDataArgs(reqId, date, open, high, low, close, volume, count, WAP, hasGaps));
 }
Ejemplo n.º 5
0
 void EWrapper.historicalData(int reqId, Bar bar)
 {
     HistoricalData?.Invoke(new HistoricalDataMessage(reqId, bar));
 }
Ejemplo n.º 6
0
 internal void OnHistoricalData(HistoryDataResponse message) =>
     HistoricalData?.Invoke(this, new EventArgs<HistoryDataResponse>(message));
Ejemplo n.º 7
0
 public void historicalData(int reqId, Bar bar)
 {
     HistoricalData?.Invoke(new HistoricalDataMessage(reqId, bar));
 }