Esempio n. 1
0
        static public ezPrice FromDouble(EZInstrument instrument, double price)
        {
            var ezPrice = new ezPrice(price);

            ezPrice.instrument = instrument;
            return(ezPrice);
        }
Esempio n. 2
0
        static public ezPrice FromDouble(EZOrder order, double price)
        {
            var ezPrice = new ezPrice(price);

            ezPrice.order = order;
            return(ezPrice);
        }
Esempio n. 3
0
 public void ModifyPrice(ezPrice updatedPrice)
 {
 }
Esempio n. 4
0
        public static ezPrice operator --(ezPrice price)
        {
            ezPrice ezp = APIMain.DecrementTick(price.instrument, price);

            return(ezp);
        }