0 pts.
 Calculation of fund performance
RPG
Calculation of fund performance The rate of return of the fund, or for a particular class of the fund, over the respective periods specified in D2.3(f) of the Code should be calculated to two decimal places in the following manner: Rate of return for the measurement period from point !Ya!|to point b!|(%)= (NAVb - FA)1 / n -1]x100% ----------- NAVa 1/n is square root Where, for the purposes of this formula only, the following terms have the meaning indicated: Term Meaning NAVa The net asset value per unit of the fund at point !Ya!|, the beginning of the measurement period. NAVb The net asset value per unit of the fund or each unit of a class of the fund in Hong Kong dollars at point !Yb!|, the end of the measurement period. FA An adjustment for any fees or charges deducted from members!| accounts by way of deduction of units, if those fees or charges would be counted as expenses of the fund if deducted directly from the fund. The adjustment should be calculated on a per unit basis in accordance with the formulaFA = D /( U + V)Where:D = the value of any fees and charges deducted by way of deduction of units during the period from point !Ya!| to point !Yb!|U = the number of units outstanding at point !Yb!|V = the number of units deducted as fees or charges during the period from point !Ya!| to point !Yb!| n The number of years in the measurement period from the beginning at point !Ya!| to the end at point !Yb!|. Where the number of years in the measurement period from point !Ya!| to point !Yb!| is less than 1, n equals 1. Do any one know how to handle below formula using RPG or else method which can be implement on AS400 RPG program :

Software/Hardware used:
ASKED: April 19, 2005  3:51 AM
UPDATED: April 20, 2005  4:30 AM

Answer Wiki:
Hi If I've read the formatting of the formula correctly, the following RPG IV/ILE code should work for you: * Ensure "n" is a minimum 1 year... C If n < 1 C Eval n = 1 C EndIf * Calculate the Fee Adjustment... C Eval FA = D / (U + V) * Calculate the Fee Adjustment... C Eval Result = (((NAVb - FA) **n) *100) / NAVa All the best Jonathan
Last Wiki Answer Submitted:  April 20, 2005  4:30 am  by  astradyne   370 pts.
All Answer Wiki Contributors:  astradyne   370 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _