using System; namespace MarketData.Generator.Interface { public interface IPosition : IPurePosition { double TrailingStopLimit {get; set;} double InitialStopLimit {get; set;} double PositionRiskPercentDecimal {get; set;} } }