Пример #1
0
        static public ezPrice FromDouble(EZInstrument instrument, double price)
        {
            var ezPrice = new ezPrice(price);

            ezPrice.instrument = instrument;
            return(ezPrice);
        }
Пример #2
0
        static public ezPrice FromDouble(EZOrder order, double price)
        {
            var ezPrice = new ezPrice(price);

            ezPrice.order = order;
            return(ezPrice);
        }
Пример #3
0
 public void ModifyPrice(ezPrice updatedPrice)
 {
 }
Пример #4
0
        public static ezPrice operator --(ezPrice price)
        {
            ezPrice ezp = APIMain.DecrementTick(price.instrument, price);

            return(ezp);
        }