PureBytes Links
Trading Reference Links
|
Fred,
The result is perfectly OK.
=================
Your EO (variable period) is either 3 or 9
So ResX is a sum of last 3 OR last 9 bars of
Cum1 array.
So it resulting sum is equal either upper or lower
line of the channel.
I suggest you to take a piece of paper or Excel sheet and just
'simulate' the inner working of the code.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Fred" <fctonetti@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, April 25, 2003 8:54 PM
Subject: [amibroker] How does it work, revisited ...
> Someone I thought Tomasz stated that there were several functions or
> indicators call them what you will that were already set up as
> allowing variable periodicities. The question I have is what are
> they calculating ?
>
> If you plot this on any graph:
>
> CUM1 = Cum(1);
>
> EO = IIf(int(CUM1 / 2) * 2 == Cum1, 3, 9);
>
> Res3 = Sum(Cum1, 3);
> Res9 = Sum(Cum1, 9);
> ResX = Sum(Cum1, EO);
>
> Plot(Res3, "3", colorWhite, styleLine | styleThick);
> Plot(Res9, "9", colorWhite, styleLine | styleThick);
> Plot(ResX, "X", colorRed, styleLine | styleThick);
>
> You get two white lines with a red line that bounces back and forth
> between them. if you change the function from Sum to MA you get the
> same type of result, but if you change the function from Sum to LLV
> you do not get that result. How does this calculate ? What about
> the other ones that were supposed to allow varaible periodicity.
>
>
>
>
>
> 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 ---------------------~-->
Get A Free Psychic Reading!
Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/cjB9SD/od7FAA/AG3JAA/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/
|