Пример #1
0
 void EWrapper.tickPrice(int tickerId, int field, double price, int canAutoExecute)
 {
     TickPrice?.Invoke(tickerId, field, price, canAutoExecute);
 }
Пример #2
0
 void IEWrapper.TickPrice(int tickerId, int field, double price, TickAttrib attribs)
 {
     TickPrice?.Invoke(new TickPriceMessage(tickerId, field, price, attribs));
 }
 public virtual void tickPrice(int tickerId, int field, double price, int canAutoExecute)
 {
     TickPrice?.Invoke(this, new TickPriceArgs(tickerId, field, price, canAutoExecute));
 }
Пример #4
0
 /// <summary>
 /// TickPrice event invocator
 /// </summary>
 protected virtual void OnTickPrice(TickPriceEventArgs e)
 {
     TickPrice?.Invoke(this, e);
 }
Пример #5
0
        void EWrapper.tickPrice(int tickerId, int tickType, double price, int canAutoExecute)
        {
            ShowDebugMessage(tickerId, TickType.getField(tickType), price, canAutoExecute);

            TickPrice?.Invoke(tickerId, tickType, price, canAutoExecute);
        }