| 
 PureBytes Links 
Trading Reference Links 
 | 
It seems to me that the time periods have to be bar by bar to generate the 
interest curve so here is my current attempt which always returns a single 
value, 1.
Where should I go from here?
Sid
// Compound Interest
interest_rate = 5;     // %
//P = 1;     // principal amount
r = interest_rate/100;
//t = 10;    // years
//tbar = t/260;
A[0] = 1; /*Initialize the first element here*/
t[0] = 0;
for(i = 1; i<BarCount; i++)
{
    A[i] = A[i-1]*exp(r*t[i]/260);
}
//A = P * exp(r*t);
Plot(A, "Compound Interest", colorBlack, styleLine);  
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.545 / Virus Database: 339 - Release Date: 11/27/2003
 |