iWOWS/WolfOfWallStreet/Models/EasyTrader/EasyTraderSymbol.cs

18 lines
499 B
C#
Raw Permalink Normal View History

2021-01-15 18:51:25 +03:30
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; }
}
}