Package com.moneydance.apps.md.model

Examples of com.moneydance.apps.md.model.CurrencyType


        }
    }

    public double getSplitAdjustedPosition(double referencePosition, int referenceDateInt,
                                           int currentDateInt) {
        CurrencyType currency = currencyWrapper.currencyType;
        double currentRate = currency == null ? 1.0 : currency
                .getUserRateByDateInt(currentDateInt);
        double splitAdjust = currency == null ? 1.0 : currency
                .adjustRateForSplitsInt(referenceDateInt,
                        currentRate, currentDateInt) / currentRate;
        return referencePosition * splitAdjust;
    }
View Full Code Here


                                    TransactionValues thisTrans, ArrayList<TransactionValues> prevTranses) {
        this.currentTrans = thisTrans;
        this.prevTransValues = prevTranses.isEmpty() ? null : prevTranses.get(prevTranses.size() - 1);

        int currentDateInt = thisTrans.getParentTxn().getDateInt();
        CurrencyType cur = thisTrans.getReferenceAccount().getCurrencyType();
        double currentRate = cur == null ? 1.0
                : cur.getUserRateByDateInt(currentDateInt);
        int prevDateInt = prevTransValues == null ? Integer.MIN_VALUE
                : prevTransValues.getParentTxn().getDateInt();
        double splitAdjust = (cur == null ? 1.0 : cur.adjustRateForSplitsInt(
                prevDateInt, currentRate, currentDateInt) / currentRate);
        this.adjPrevPos = prevTransValues == null ? 0.0 : prevTransValues.getPosition()
                * splitAdjust;

    }
View Full Code Here

     * @return split adjust factor as ratio
     */
    public static Double getSplitAdjust(TransactionValues thisTrans,
                                        TransactionValues priorTrans) {
        int currentDateInt = thisTrans.getParentTxn().getDateInt();
        CurrencyType cur = thisTrans.getReferenceAccount().getCurrencyType();
        double currentRate = cur == null ? 1.0 : cur
                .getUserRateByDateInt(currentDateInt);
        int prevDateInt = priorTrans == null ? Integer.MIN_VALUE
                : priorTrans.getParentTxn().getDateInt();
        double splitAdjust = (cur == null ? 1.0 : cur.adjustRateForSplitsInt(
                prevDateInt, currentRate, currentDateInt) / currentRate);
        return priorTrans == null ? 0.0 : splitAdjust;

    }
View Full Code Here

        this.currentInfo = thisCurrentInfo;
        this.currentTrans = thisTrans;
        this.prevTransValues = prevTranses.isEmpty() ? null : prevTranses.get(prevTranses.size() - 1);

        int currentDateInt = thisTrans.getParentTxn().getDateInt();
        CurrencyType cur = thisTrans.getReferenceAccount().getCurrencyType();
        double currentRate = cur == null ? 1.0
                : cur.getUserRateByDateInt(currentDateInt);
        int prevDateInt = prevTransValues == null ? Integer.MIN_VALUE
                : prevTransValues.getParentTxn().getDateInt();
        double splitAdjust = (cur == null ? 1.0 : cur.adjustRateForSplitsInt(
                prevDateInt, currentRate, currentDateInt) / currentRate);
        this.adjPrevPos = prevTransValues == null ? 0.0 : prevTransValues.getPosition()
                * splitAdjust;
        this.matchTable = getLotMatchTable();

View Full Code Here

TOP

Related Classes of com.moneydance.apps.md.model.CurrencyType

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.