Home
last modified time | relevance | path

Searched refs:nInterest (Results 1 – 2 of 2) sorted by relevance

/dports/finance/xtrader/xtrader-0.99.9_10/util/
H A DMHUtil.cpp208 double MHUtil::Interest (const char* d1, const char* d2, double nInterest) { in Interest() argument
211 nInterest /= 100; in Interest()
212 nInterest += 1.0; in Interest()
213 nInterest = pow (nInterest, years); in Interest()
214 nInterest -= 1.0; in Interest()
215 return (nInterest * 100); in Interest()
228 double MHUtil::Interest (const char* d1, const char* d2, double nValue, double nInterest) { in Interest() argument
229 double interest = MHUtil::Interest (d1, d2, nInterest); in Interest()
H A DMHUtil.h79 static double Interest (const char* d1, const char* d2, double nInterest);
80 …static double Interest (const char* d1, const char* d2, double nValue, double nInterest);