Exemplo n.º 1
0
 void EWrapper.tickPrice(int tickerId, int field, double price, int canAutoExecute)
 {
     TickPrice?.Invoke(tickerId, field, price, canAutoExecute);
 }
Exemplo n.º 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));
 }
Exemplo n.º 4
0
 /// <summary>
 /// TickPrice event invocator
 /// </summary>
 protected virtual void OnTickPrice(TickPriceEventArgs e)
 {
     TickPrice?.Invoke(this, e);
 }
Exemplo n.º 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);
        }