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