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

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

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

import java.math.BigDecimal;

public class FundPosition {
    private String symbol;
    private BigDecimal currentNetAssetValue;
    private BigDecimal netAssetValueDay;
    private String symbolName;
    private String currency;
    private BigDecimal costNetAssetValue;
    private BigDecimal holdingUnits;

    public String getSymbol() {
        return symbol;
    }

    public BigDecimal getCurrentNetAssetValue() {
        return currentNetAssetValue;
    }

    public BigDecimal getNetAssetValueDay() {
        return netAssetValueDay;
    }

    public String getSymbolName() {
        return symbolName;
    }

    public String getCurrency() {
        return currency;
    }

    public BigDecimal getCostNetAssetValue() {
        return costNetAssetValue;
    }

    public BigDecimal getHoldingUnits() {
        return holdingUnits;
    }

    @Override
    public String toString() {
        return "FundPosition [costNetAssetValue=" + costNetAssetValue + ", currency=" + currency
                + ", currentNetAssetValue=" + currentNetAssetValue + ", holdingUnits=" + holdingUnits
                + ", netAssetValueDay=" + netAssetValueDay + ", symbol=" + symbol + ", symbolName=" + symbolName + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy