public static PositionModel ToModel(BitmexPositionData pos, MainWindowController wndCtrl)
        {
            var model = new PositionModel {
                Symbol = pos.Symbol
            };

            model.InitModel(pos, wndCtrl);
            return(model);
        }