PureBytes Links
Trading Reference Links
|
Sjaak
Thanks for your help. I tried it. It works.
Heikin-Ashi seems to be very impressive in
How it tracks the market. I want to compare it side by side to
Other systems to see which yield the best results.
Do you know of any scans which yield better results?
Thanks Again,
Tom Katch
--- In amibroker@xxxxxxxxxxxxxxx, sjaak haasnoot
<sjaakhaasnoot@xxxx> wrote:
> Have a try,
>
> Sjaak
>
> HaClose = (O+H+L+C)/4;
>
> HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
>
> HaHigh = Max( H, Max( HaClose, HaOpen ) );
>
> HaLow = Min( L, Min( HaClose, HaOpen ) );
>
>
> Plot( MA( Close, 5 ), "MAC", colorBlue );
>
> Plot( MA( Close, 13 ), "MAC", colorRed );
>
> PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "Heikin Ashi Modified "
+ Name(), colorBlack, styleCandle);
>
> Buy=HaClose > HaOpen;// AND Ref (HaClose > HaOpen ,-1);
>
> Sell = HaClose < HaOpen;// AND Ref (HaClose < HaOpen ,-1);
>
> Filter=Buy OR Sell;
>
> Buy=ExRem(Buy,Sell);
>
> Sell=ExRem(Sell,Buy);
>
> PlotShapes( shapeUpArrow * Buy, colorGreen );
>
> PlotShapes( shapeDownArrow* Sell, colorRed );
>
> AddColumn(Buy,"Buy");
>
> AddColumn(Sell,"sell");
>
>
>
>
>
> ----- Original Message -----
> From: tom_katch
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Friday, April 30, 2004 6:59 PM
> Subject: [amibroker] HEIKEN-ASHI
>
>
> Can someone take the Heiken-Ashi formula, posted in the AFL
Library
> and write it into a system?
>
> The system would take the criteria which causes the bars to
switch
> from red to blue or blue to red, and use those points as buy or
sell
> points.
>
> And if possible (not 100% necessary) would generate arrows on
the
> price chart.
>
> Thanks
> Tom
>
>
>
>
> 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 Sponsor
> ADVERTISEMENT
>
>
>
>
>
> -------------------------------------------------------------------
-----------
> 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.
------------------------ 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
---------------------------------------------------------------------~->
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 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/
|