Files
Navigator/MarketDataLib/MarketDataModel/StopLimit.cs
2024-02-23 06:53:16 -05:00

14 lines
302 B
C#

using System;
using System.Collections.Generic;
namespace MarketData.MarketDataModel
{
public class StopLimit
{
public String Symbol{get;set;}
public double StopPrice{get;set;}
public double Shares{get;set;}
public String StopType{get;set;}
public int Active{get;set;}
}
}