iWOWS/WolfOfWallStreet/Models/EasyTrader/EasyTraderSymbol.cs

18 lines
499 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WolfOfWallStreet.Models.EasyTrader
{
public class EasyTraderSymbol
{
public double minQuantityOrder { get; set; }
public double maxQuantityOrder { get; set; }
public int lowAllowedPrice { get; set; }
public int highAllowedPrice { get; set; }
public int bidPrice { get; set; }
public int askPrice { get; set; }
public bool isCaution { get; set; }
}
}