public Task <Dictionary <string, List <CompiledScheduleTimeIntervalContract> > > CompiledTradingSchedule()
 {
     return(Task.FromResult(
                _scheduleSettingsCacheService.GetCompiledAssetPairScheduleSettings()
                .ToDictionary(x => x.Key, x => x.Value.Select(ti => ti.ToRabbitMqContract()).ToList())));
 }