Files
2025-03-25 21:42:32 -04:00

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;}
}
}