FastQuant.SellSideInstrumentStrategy.Unsubscribe C# (CSharp) Méthode

Unsubscribe() public méthode

public Unsubscribe ( Instrument instrument ) : void
instrument Instrument
Résultat void
        public override void Unsubscribe(Instrument instrument)
        {
            if (this.childrenByInstrument[instrument.Id] != null)
            {
                var subStrategy = this.childrenByInstrument[instrument.Id].First.Data as SellSideInstrumentStrategy;
                subStrategy.OnUnsubscribe(instrument);
            }
        }

Same methods

SellSideInstrumentStrategy::Unsubscribe ( InstrumentList instruments ) : void