[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bls: [EquisMetaStock Group] Re: HEIKIN-ASHI CANDLESTICK OSCILLATOR



PureBytes Links

Trading Reference Links

I had try Amibroker before, but I found dificulty to calculate the VWAP and never get the correct answer. On MS  can calculate (VWAP) accuratly and also calculate (VWAP) back period up to what ever we want to have the information on intraday chart (Tick up to 1 Hour). I think the VWAP more useful than Moving Average.
Regards


Dari: Lionel Issen <lissen@xxxxxxxxxxxxx>
Kepada: equismetastock@xxxxxxxxxxxxxxx
Terkirim: Senin, 17 November, 2008 01:54:37
Topik: RE: [EquisMetaStock Group] Re: HEIKIN-ASHI CANDLESTICK OSCILLATOR

I agree that Amibroker is an excellent program. However There are at least 2  adaptive moving average formulas in Metastock code.

 

Lionel Issen

 

From: equismetastock@ yahoogroups. com [mailto:equismetast ock@xxxxxxxxxxxx com] On Behalf Of Ed Hoopes
Sent: Sunday, November 16, 2008 11:02 AM
To: equismetastock@ yahoogroups. com
Subject: [EquisMetaStock Group] Re: HEIKIN-ASHI CANDLESTICK OSCILLATOR

 

As a former user of MetaStock software, I can comment on why the
indicator is not programmed for MS. The MetaStock formula language
does not have nearly enough functions to implement the code.

Below, I show the indicator programmed in AmiBroker by Tomasz Janeczko.

Here is an incomplete list of required functions that MS lacks:
IIF - an immediate IF function that works on data arrays
IF - a conditional execution statement that allows blocks of
statements to be conditionally executed
Hold - holds a logic true/false in a certain state for a number of bars
AMA - an adaptive moving average function
ParamToggle - switches the logic state of a variable
Flip - works like an electrical FlipFlop logic circuit
StyleArea & StyleOwnScale - allows proper plotting of Heikin bars.

If you wanted to implement this indicator in MS you would need to buy
the software developers kit which has software hooks into the MS
package. Plus buy some fully capable language compiler like C++.

Or, for $199 you could buy AB and use the code below :)

************ ********* **

HA Candelstick Oscillator in AmiBroker;

function ZeroLagTEMA( array, period )
{
TMA1 = TEMA( array, period );
TMA2 = TEMA( TMA1, period );
Diff = TMA1 - TMA2;
return TMA1 + Diff ;
}

//////////// /////////
// Heikin-Ashi code
HaClose = (O+H+L+C)/4;
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );

avp = Param("Up TEMA avg", 34, 1, 100 );
avpdn = Param("Dn TEMA avg", 34, 1, 100 );

// Velvoort is using not original, but modified Heikin-Ashi close
HaClose = ( HaClose + HaOpen + Max( H, HaOpen ) + Min( L, HaOpen ) )/4;

// up average
ZlHa = ZeroLagTEMA( HaClose, avp );
ZlCl = ZeroLagTEMA( ( H + L ) / 2, avp );
ZlDif = ZlCl - ZlHa;

keep1 = Hold( HaClose >= HaOpen, 2 );
keep2 = ZlDif >= 0;
keeping = keep1 OR keep2;
keepall = keeping OR ( Ref( keeping, -1 ) AND ( C > O ) OR C >= Ref(
C, -1 ) );
keep3 = abs( C - O ) < ( H - L ) * 0.35 AND H >= Ref( L, -1 );
utr = keepall OR ( Ref( keepall, -1 ) AND keep3 );

// dn average
ZlHa = ZeroLagTEMA( HaClose, avpdn );
ZlCl = ZeroLagTEMA( ( H + L ) / 2, avpdn );
ZlDif = ZlCl - ZlHa;

keep1 = Hold( HaClose < HaOpen, 2 );
keep2 = ZlDif < 0;
keeping = keep1 OR keep2;
keepall = keeping OR ( Ref( keeping, -1 ) AND ( C < O ) OR C < Ref( C,
-1 ) );
keep3 = abs( C - O ) < ( H - L ) * 0.35 AND L <= Ref( H, -1 );
dtr = keepall OR ( Ref( keepall, -1 ) AND keep3 );

upw = dtr == 0 AND Ref( dtr, -1 ) AND utr;
dnw = utr == 0 AND Ref( utr, -1 ) AND dtr;

Haco = Flip( upw, dnw );

if( ParamToggle("Chart Type", "Price with color back|HACO wave" ) )
{
Plot( Haco, "Haco", colorRed );
}
else
{
Plot( C, "Close", colorBlack, ParamStyle( "Style", styleCandle,
maskPrice ) );
Plot( 1, "", IIf( Haco , colorPaleGreen, colorRose ), styleArea |
styleOwnScale, 0, 1 );
}--- In equismetastock@ yahoogroups. com, "maurizio_innamorati"
<maurizio.innamorati @...> wrote:
>
> The above indicator is discussed in TASC December issue. unfortunately,
> the formula in MS code is not listed in Traders' Tips (given in article
> itself only available to subscribers) . Could somebody share the code
> for the above indicator witg us? Thanks.
>



Warnai pesan status dengan Emoticon.
Sekarang bisa dengan Yahoo! Messenger baru. __._,_.___

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___