using KLHZ.Trader.Core.Contracts.Declisions.Dtos.Enums; using KLHZ.Trader.Core.Contracts.Declisions.Interfaces; using KLHZ.Trader.Core.Math.Declisions.Utils; namespace KLHZ.Trader.Core.Math.Declisions.Services.EventsDetection { public class IntervalsTradingEventsDetector : ITradingEventsDetector { public ValueTask Detect(IPriceHistoryCacheUnit unit) { return ValueTask.FromResult(TwoPeriods.Detect(unit)); } } }