PureBytes Links
Trading Reference Links
|
Hello,
No problem. If anyone of advanced users is willing to add comments to AFL library you can do this
using this link:
http://www.amibroker.com/guide/afl/view.php?name=<THENAMEOFTHEFUNCTIONHERE>
I have just implemented notification mechanism so I am notified about every comment
sent so I can check it for correctness.
Please do not use comment feature to ask questions.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "mrdavis9" <mrdavis9@xxxxxxxxxx>
To: "amibroker" <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, July 10, 2004 9:09 AM
Subject: Re: [amibroker] Improvement of AFL on-line function reference and AFL library
> There are numerous Amibroker Gurus worldwide who are very proficient users
> of Amibroker. I am encouraging them to VOLUNTEER to become screeners of
> potential new content to be added to the UPDATED/EXTENDED VERSION ONLINE
> link. Then, when I click on it, I would actually see NUMEROUS examples in
> GREAT DETAIL of how to use the particular function that I am reading about.
> It would be of enormous help to me when I am trying to learn about a
> function that I have never used before.
>
> TJ should allow such a group of Amibroker Guru volunteers, to screen all
> suggestions for additional "FURTHER EXPLANATIONS" before they are posted
> to the ONLINE VERSION. This would be a minimal task for TJ, and would be
> an enourmous help to new trial users, new users, and I bet that even some of
> the Gurus would benefit from seeing NUMEROUS examples in GREAT DETAIL. This
> would almost certainly measurably increase the rate at which trial users
> become paid Amerbrokerians.
>
> The explanation below of CUM() by Graham is an example of what can be added
> by Volunteers to the Online Manual in order to improve it a lot more than TJ
> just did with this improvement.
>
> All Amerbrokerians should be allowed to send suggested explanations to the
> Gurus for possible addition to the online manual. Many of us will be able
> to help clarify some of these concepts to non-techie users.
> ==============================================================
> This is Graham's explanation of Sum();
>
> Sum adds up the last "n" number of bars. It sums whatever you put into the
> first part of the sum formula.
> Cum(1) adds 1 to the previous value of Cum, so the first bar is 1 and it
> just keeps adding one to the last bar value of cum(1). You can use Cum to
> add anything, like how many times you get rising days in the entire chart
> Rise = C>O; //this gives results of 0 or 1
> TotalRise = Cum(Rise);
>
> You could limit this as well to time periods, or any other condition
> Example would be one for total rise days since 1995
> RecentRise = C>O and Year()>=1995; //this gives results of 0 or 1
> TotalRise = Cum(RecentRise);
>
> If you wanted to know how many rising days in the last 12 bars you would use
> LastRises = Sum(Rise,12);
>
> Hope this helps
>
> Cheers,
> Graham
>
>
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|