klhztrader/KLHZ.Trader.Core.Contracts/Declisions/Interfaces/ITradingEventsDetector.cs

10 lines
262 B
C#

using KLHZ.Trader.Core.Contracts.Declisions.Dtos;
namespace KLHZ.Trader.Core.Contracts.Declisions.Interfaces
{
public interface ITradingEventsDetector
{
public ValueTask<TradingEventsDto> Detect(IPriceHistoryCacheUnit unit);
}
}