Package quickfix.field

Examples of quickfix.field.SecurityID


            fixIOI.set(ioiRefID);
        }
       
        // *** Optional fields ***
        // SecurityID
        SecurityID securityID = new SecurityID( ioi.getSecurityID() );
        fixIOI.set( securityID );

        // IDSource
        IDSource idSource = null;
        if (ioi.getIDSource().equals("TICKER"))
View Full Code Here


        System.out.println("Setting...");
        System.out.println("SecurityID: " + order.getSecurityID());
        System.out.println("IDSource: " + order.getIdSource());
        if( order.getSecurityID() != null
            && order.getIdSource()!= null) {
            executionReport.set(new SecurityID(order.getSecurityID()));
            executionReport.set(new IDSource(order.getIdSource()));
        }
       
        // *** Send message ***
        sendMessage(executionReport);
View Full Code Here

            this.setLimit(price.getValue());
        } catch (FieldNotFound ex) {}       

        // SecurityID
        try {
            SecurityID secID = new SecurityID();
            message.get(secID);
            this.setSecurityID(secID.getValue());
        } catch (FieldNotFound ex) {}
       
        // IDSource
        try {
            IDSource idSrc = new IDSource();
View Full Code Here

            setOpen(msgQty.getValue());
        } catch (FieldNotFound ex) {}
               
        // SecurityID
        try {
            SecurityID secID = new SecurityID();
            message.get(secID);
            this.setSecurityID(secID.getValue());
        } catch (FieldNotFound ex) {}
       
        // IDSource
        try {
            IDSource idSrc = new IDSource();
View Full Code Here

            this.setLimit(price.getValue());
        } catch (FieldNotFound ex) {}
       
        // SecurityID
        try {
            SecurityID secID = new SecurityID();
            message.get(secID);
            this.setSecurityID(secID.getValue());
        } catch (FieldNotFound ex) {}
       
        // IDSource
        try {
            IDSource idSrc = new IDSource();
View Full Code Here

TOP

Related Classes of quickfix.field.SecurityID

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.