All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.longport.trade.MarginRatio Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.longport.trade;

import java.math.BigDecimal;

public class MarginRatio {
    private BigDecimal imFactor;
    private BigDecimal mmFactor;
    private BigDecimal fmFactor;

    public BigDecimal getImFactor() {
        return imFactor;
    }

    public BigDecimal getMmFactor() {
        return mmFactor;
    }

    public BigDecimal getFmFactor() {
        return fmFactor;
    }

    @Override
    public String toString() {
        return "MarginRatio [fmFactor=" + fmFactor + ", imFactor=" + imFactor + ", mmFactor=" + mmFactor + "]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy