PureBytes Links
Trading Reference Links
|
Sorry for the lack of explanation.
You must have the indicator formula present first in your AFL before
adding the scan/exploration/trading formula I provided.
The indicator is described in TASC Feb 2004 and the formula is
available in the members area of Amibroker.
Log in to the members area and read all about this unique charting
technique and indicator.
Regards
Jim
--- In amibroker@xxxxxxxxxxxxxxx, sjaak haasnoot <sjaakhaasnoot@xxxx>
wrote:
> What's "HaDiffCo"?
> It's not initialized.
>
> Sjaak
>
>
>
>
> ----- Original Message -----
> From: jnk1997
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Sunday, February 01, 2004 9:34 PM
> Subject: [amibroker] Aaaah Just wrote my first AFL !
>
>
> Hello,
>
> OK, this is basic "0 cross" for the Heikin Ashi Indicator.
> Can be used as Scan, Exploration, or Trading.
> Needs work to improve profitabilty.
> Regards
> Jim
>
>
> Buy = Cross (HaDiffCo, 0);
> Cover = Cross (HaDiffCo, 0);
> Sell = Cross (0, HaDiffCo);
> Short = Cross (0, HaDiffCo);
>
> Buy=Cover;
> Sell=Short;
>
> Filter=Buy OR Sell OR Short OR Cover;
> Buy=ExRem(Buy,Sell); Sell=ExRem(Sell,Buy); Short=ExRem
(Short,Cover);
> Cover=ExRem(Cover,Short);
>
> AddColumn(Buy,"Buy");
> AddColumn(Sell,"sell");
> AddColumn(Short,"short");
> AddColumn(Cover,"cover");
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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
>
>
>
> --------------------------------------------------------------------
----------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
> --------------------------------------------------------------------
----------
> Deze e-mail is door E-mail VirusScanner van Planet Internet
gecontroleerd op virussen. Op http://www.planet.nl/evs staat een
verwijzing naar de actuele lijst waar op wordt gecontroleerd.
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
------------------------ 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/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|