PureBytes Links
Trading Reference Links
|
Lloyd>>>I, also would like to see a presentation using first principles. My understanding is that Howard will be completing an entry level book this spring as soon as he completes some obligations this month.
It might be a better book if Howard and Graham were to agree to JOINTLY write the book. The best and most understandable explanations that have been given to me have been those from Graham. Graham seems to have an outstanding ability to describe things in a very understandable way. Here is his description of SUM from the user manual. Ron D =========================================================================== 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);
===================================================================
----- Original Message ----- From: "Thomas Ludwig" <Thomas.Ludwig@xxxxxx> To: <amibroker@xxxxxxxxxxxxxxx> Sent: Friday, February 08, 2008 1:14 PM Subject: Re: [amibroker] Re: no amibroker book?
> brian_z111 wrote: > >> However, I also
agree with the others that we need a good AFL book >> and IMO Tomasz is the man to write it - yes, even if he has to stop >> development to do it - take a sabbatical and get out the feathered >> pen Tomasz
__._,_.___
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
__,_._,___
|