Examples of Rounding


Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class TRLCurrency extends Currency {
        public TRLCurrency() {
            Data trlData = new Data("Turkish lira", "TRL", 792, "TL", "", 100, new Rounding(), "%1$.0f %3%");
            data_ = trlData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class TRYCurrency extends Currency {
        public TRYCurrency() {
            Data tryData = new Data("New Turkish lira", "TRY", 949, "YTL", "", 100, new Rounding(), "%1$.2f %3%");
            data_ = tryData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class ATSCurrency extends Currency {
        public ATSCurrency() {
            Data atsData = new Data("Austrian shilling", "ATS", 40, "", "", 100, new Rounding(), "%2% %1$.2f", new EURCurrency());
            data_ = atsData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class BEFCurrency extends Currency {
        public BEFCurrency() {
            Data befData = new Data("Belgian franc", "BEF", 56, "", "", 1, new Rounding(), "%2% %1$.0f", new EURCurrency());
            data_ = befData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class DEMCurrency extends Currency {
        public DEMCurrency() {
            Data demData = new Data("Deutsche mark", "DEM", 276, "DM", "", 100, new Rounding(), "%1$.2f %3%", new EURCurrency());
            data_ = demData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class ESPCurrency extends Currency {
        public ESPCurrency() {
            Data espData = new Data("Spanish peseta", "ESP", 724, "Pta", "", 100, new Rounding(), "%1$.0f %3%", new EURCurrency());
            data_ = espData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class FIMCurrency extends Currency {
        public FIMCurrency() {
            Data fimData = new Data("Finnish markka", "FIM", 246, "mk", "", 100, new Rounding(), "%1$.2f %3%", new EURCurrency());
            data_ = fimData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class FRFCurrency extends Currency {
        public FRFCurrency() {
            Data frfData = new Data("French franc", "FRF", 250, "", "", 100, new Rounding(), "%1$.2f %2%", new EURCurrency());
            data_ = frfData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class GRDCurrency extends Currency {
        public GRDCurrency() {
            Data grdData = new Data("Greek drachma", "GRD", 300, "", "", 100, new Rounding(), "%1$.2f %2%", new EURCurrency());
            data_ = grdData;
        }
View Full Code Here

Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class IEPCurrency extends Currency {
        public IEPCurrency() {
            Data iepData = new Data("Irish punt", "IEP", 372, "", "", 100, new Rounding(), "%2% %1$.2f", new EURCurrency());
            data_ = iepData;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.