com.longport.trade.MarginRatio Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-sdk Show documentation
Show all versions of openapi-sdk Show documentation
LongPort OpenAPI SDK for Java
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