Ejemplo n.º 1
0
        public InstrumentCounter Clone()
        {
            InstrumentCounter instrumentCounter = new InstrumentCounter(this.Instrument);

            this.CopyTo(instrumentCounter);
            return(instrumentCounter);
        }
Ejemplo n.º 2
0
		private InstrumentCounter GetInstrumentCounter(IFIXInstrument instrument)
		{
			InstrumentCounter instrumentCounter;
			if (!this.instrumentCounters.TryGetValue(instrument, out instrumentCounter))
			{
				instrumentCounter = new InstrumentCounter(instrument);
				this.instrumentCounters.Add(instrument, instrumentCounter);
			}
			return instrumentCounter;
		}
Ejemplo n.º 3
0
        private InstrumentCounter GetInstrumentCounter(IFIXInstrument instrument)
        {
            InstrumentCounter instrumentCounter;

            if (!this.instrumentCounters.TryGetValue(instrument, out instrumentCounter))
            {
                instrumentCounter = new InstrumentCounter(instrument);
                this.instrumentCounters.Add(instrument, instrumentCounter);
            }
            return(instrumentCounter);
        }
Ejemplo n.º 4
0
		public InstrumentCounter Clone()
		{
			InstrumentCounter instrumentCounter = new InstrumentCounter(this.Instrument);
			this.CopyTo(instrumentCounter);
			return instrumentCounter;
		}
Ejemplo n.º 5
0
 public InstrumentCounterViewRow(InstrumentCounter counter) : base((EventCounter)counter, 1)
 {
     this.Cells[0].Value = counter.Instrument.Symbol;
 }
Ejemplo n.º 6
0
		public InstrumentCounterViewRow(InstrumentCounter counter) : base((EventCounter)counter, 1)
		{
			this.Cells[0].Value = counter.Instrument.Symbol;
		}