PureBytes Links
Trading Reference Links
|
Here is a version - modified by TJ - I think it is the best of the
group - I have others that don't work as well - post if you want them.
ReefBreak
// Heikin - Ashi Modified by TJ;
// From AmiBroker website
// June 2005
Smooth = Param("Smooth Const", 0.5, 0.03, 0.8, 0.02);
HaClose = (O+H+L+C)/4;
HaOpen = AMA( Ref( HaClose, -1 ), Smooth );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "Heikin-Ashi Mod " + Name(),
colorWhite, styleCandle );
//Plot(Close, "", colorYellow, styleLine + styleThick );
printf("haOpen = " + HaOpen + "\n");
printf("haHigh = " + HaHigh + "\n");
printf("haLow = " + HaLow + "\n");
printf("haClos = " + HaClose + "\n");
--- In amibroker@xxxxxxxxxxxxxxx, "Tim" <raven4ns@xxxx> wrote:
>
> Hello,
> Does anyone have the formula for Heikin-ashe charts they wouldn't mind
> sharing with me? I wanted to compare it with my current candle charts
> to try and eliminate some market noise. Thank you for any and all help.
> Kindest regards,
>
> Tim
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 other support material please check also:
http://www.amibroker.com/support.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/
|