Skip to content

Instantly share code, notes, and snippets.

internal interface IExecutionServiceClient
{
IObservable<TradeDto> ExecuteRequest(TradeRequestDto tradeRequest);
}
interface IPriceRepository
{
IObservable<IPrice> GetPriceStream(ICurrencyPair currencyPair);
}