public override void Unsubscribe(InstrumentList instruments)
 {
     foreach (Instrument current in instruments)
     {
         SellSideInstrumentStrategy sellSideInstrumentStrategy = this.strategyBySynthInstrument[current.Id];
         sellSideInstrumentStrategy.OnUnsubscribe(current);
     }
 }