void EWrapper.tickString(int tickerId, int tickType, string value) { TickString?.Invoke(tickerId, tickType, value); }
public void tickString(int tickerId, int field, string value) { TickString?.Invoke(new TickStringMessage(tickerId, field, value)); }
public virtual void tickString(int tickerId, int field, string value) { TickString?.Invoke(this, new TickStringArgs(tickerId, field, value)); }
void EWrapper.tickString(int tickerId, int tickType, string value) { ShowDebugMessage(tickerId, TickType.getField(tickType), value); TickString?.Invoke(tickerId, tickType, value); }