Package quickfix.field

Examples of quickfix.field.Currency


    public static Price toFixPrice(Money money) {
        return new Price(money.getAmount().doubleValue());
    }

    public static Currency toFixCurrency(Money money) {
        return new Currency(money.getCurrency().getCurrencyCode());
    }
View Full Code Here


    public static Price toFixPrice(Money money) {
        return new Price(money.getAmount().doubleValue());
    }

    public static Currency toFixCurrency(Money money) {
        return new Currency(money.getCurrency().getCurrencyCode());
    }
View Full Code Here

        Date validUntil = new Date( expiry );
        ValidUntilTime validTime = new ValidUntilTime( validUntil );
        fixIOI.set( validTime );

        //Currency
        Currency currency = new Currency( "USD" );
        fixIOI.set( currency );

        // *** Send message ***
        sendMessage(fixIOI);
        iois.add(ioi);
View Full Code Here

TOP

Related Classes of quickfix.field.Currency

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.