Ejemplo n.º 1
0
        //########################################################
        //      Market Depth
        //########################################################
        #region Market Depth

        public virtual void updateMktDepth(int tickerId, int position, int operation, int side, double price, int size)
        {
            this_MktDepth_Struct = new MktDepth_Struct(tickerId, position, operation, side, price, size);
        }
Ejemplo n.º 2
0
 public MktDepthCombined_Struct(MktDepth_Struct _mktDepth_Struct, MktDepth_StructL2 _mktDepth_StructL2)
 {
     mktDepth_Struct   = _mktDepth_Struct;
     mktDepth_StructL2 = _mktDepth_StructL2;
 }