Beispiel #1
0
 void EWrapper.historicalDataEnd(int reqId, string startDate, string endDate)
 {
     HistoricalDataEnd?.Invoke(reqId, startDate, endDate);
 }
 void IEWrapper.HistoricalDataEnd(int reqId, string startDate, string endDate)
 {
     HistoricalDataEnd?.Invoke(new HistoricalDataEndMessage(reqId, startDate, endDate));
 }
Beispiel #3
0
 /// <summary>
 /// HistoricalDataEnd event invocator
 /// </summary>
 protected virtual void OnHistoricalDataEnd(HistoricalDataEndEventArgs e)
 {
     HistoricalDataEnd?.Invoke(this, e);
 }
 public virtual void historicalDataEnd(int reqId, string start, string end)
 {
     HistoricalDataEnd?.Invoke(this, new HistoricalDataEndArgs(reqId, start, end));
 }
Beispiel #5
0
 public void historicalDataEnd(int reqId, string start, string end)
 {
     HistoricalDataEnd?.Invoke(new HistoricalDataEndMessage(reqId, start, end));
 }
Beispiel #6
0
        void EWrapper.historicalDataEnd(int reqId, string startDate, string endDate)
        {
            ShowDebugMessage(reqId, startDate, endDate);

            HistoricalDataEnd?.Invoke(reqId, startDate, endDate);
        }