14 lines
249 B
C#
14 lines
249 B
C#
using System;
|
|
|
|
namespace MarketData.Generator.Interface
|
|
{
|
|
public interface IPosition : IPurePosition
|
|
{
|
|
double TrailingStopLimit {get; set;}
|
|
|
|
double InitialStopLimit {get; set;}
|
|
|
|
double PositionRiskPercentDecimal {get; set;}
|
|
}
|
|
}
|