PureBytes Links
Trading Reference Links
|
Q: How can I get a total return for the specific fund ??? If i place the black line on the chart say 6/1/2003 how can I see the
retrun gain or loss of the fund from that point ???
A: It is possible using simple commentary formula:
"Selected date" + Date();
"% return till today : " +
WriteVal( 100* ( LastValue( C ) - SelectedValue( C ) )/ SelectedValue( C ), 1.2 );
Q: also i I need the return of the fund from a certain date range 6/1/2002 to 7/15/2003 how can I get this return for this date
range for the fund as well as all the other funds in my group ???
A: This again can be done using simple formula:
"BeginDate " + WriteVal( BeginValue( DateTime() ), formatDateTime );
"EndDate " + WriteVal( EndValue( DateTime() ), formatDateTime );
"% return in range : " +
WriteVal( 100* ( EndValue( C ) - BeginValue( C ) )/ EndValue( C ), 1.2 );
Q: Can I rank the funds in my group to see which has the highest return in the above specified date range ??
A: Yes you can do this using Exploration mode.
Go to http://www.amibroker.com/support.html and click on video tutorial: How to write your own exploration
link to learn how.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "moga7777" <kezian@xxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Sunday, August 17, 2003 11:30 PM
Subject: [amibroker] New user
> I just recently loaded the program and I am very impressed with the
> graphing capabilities. I have used Fastrack 4 Win and I am looking
> forward to a more graphic oriented program.
>
> I am having trouble finding how to get the total return of the price
> graph for a selected date for a fund ??
>
> I would like to place the pole a certain date and have the total
> return of the fund be visible somewhere on the graph.
> Can this be done ???
>
> How is the best way to learn to use this program ? The videos don't
> seem to be sufficient.
>
> Are there tutors or mentors available ??
>
> Thanks
> Arthur
> Los Angeles
>
>
>
>
>
>
>
> 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/
>
>
>
------------------------ 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/l.m7sD/LIdGAA/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/
|