public bool Equals(HistoryPriceFeature other)
 {
     return(Equals(Pair, other.Pair) && StartTime.Equals(other.StartTime) && Timeframe == other.Timeframe);
 }
 protected override Updater <ICollection <HistoryPrice>, HistoryPriceFeature> MakeUpdater(HistoryPriceFeature owner)
 {
     return(new HistoryPricesUpdater(owner));
 }
 public HistoryPricesUpdater(HistoryPriceFeature feature, int refreshInterval = DefaultRefreshInterval) : base(refreshInterval)
 {
     OwnerFeature = feature;
     _marketInfo  = OwnerFeature.Pair.Market.Model.Info;
 }