Please fba for the error
[CODE] public double Deviation { get; private set; }
public double Hi /*{ get; private set; }*/ = double.MinValue;//in this case if i comment the get and set its working fine else shoing error please see on line 25,26 so on
public double Lo { get; private set; } = double.MaxValue;
public DateTime Begin { get; private set; } = DateTime.MaxValue;
public DateTime End { get; private set; } = DateTime.MinValue;
public int BeginBarIdx { get; private set; } = -1;
public int EndBarIdx { get; private set; } = -1;
protected Object lockObj = new object();
}
public long GetPOCVolume() => ladder.Max(kv => kv.Value);
public long GetPOCVolume(TradeSide side) => ladderBidAsk[(int)side].Max(kv => kv.Value);
public long Volume() => ladder.Sum(kv => kv.Value);//here i have changed the operator also as your guide => insted >= then also class member declaratione expected and ;semicolon expected please see on line no 94-99 errors.
public bool IsEmpty() => ladder.Count == 0;
public void AddProfile(Profile p)
{
lock (lockObj)
public ControlState ControlState /*{ get; private set; }*/ = ControlState.None;
Please find the attachments and revert back asap. Waitng for the reply

Comment