PureBytes Links
Trading Reference Links
|
The syntax of ANY function is fully explained.
Just apply it as is, to avoid confusions like why comma and not ;
or !.
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "warrenpeace2001"
<warrenpeace2001@xxxx> wrote:
> I'm thinking of changing my charting package but it means
> another "language" to learn.
>
> If I may ask...
> I came across this one to "de"cipher
>
> ** Tom Demark's DeMarker Indicator
> ** AFL Implementation by Tomasz Janeczko
> */
>
> highm = IIF( H > Ref( H, -1 ), H - Ref( H, - 1), 0 );
> lowm = IIF( L < Ref( L, -1 ), Ref( L, - 1 ) - L, 0 );
>
> DeMarker = 100 * Sum( highm, 13 )/( Sum( lowm, 13 ) + Sum( highm,
> 13 ) );
>
> graph0 = DeMarker;
>
> I understand almost all of it...please bear with me
> highm = IIF( H > Ref( H, -1 ), H - Ref( H, - 1), 0 );
> in english...is it
>
> hignm = (Todays High > Yesterdays high), (Todays High - Yesterdays
> high),0;
>
> specifically, what do the 2 comma's mean
> and that final zero.
>
> Sorry if I appear weak on this but I am.
>
> THanks
------------------------ 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/
|