Files
ARM64/eNavigator/MarketDataLib/MarketDataModel/StopLimit.cs
2025-04-03 17:28:36 -04:00

14 lines
315 B
C#
Executable File

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