February 2004 TRADERS' TIPS 
http://www.traders.com/Documentation/FEEDbk_docs/Archive/022004/Trader
sTips/TradersTips.html


LISTING 1
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 ) );
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "Modified " + Name(), 
colorBlack, styleCandle );

LISTING 2
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 ) );
HaDiffCO = HaClose - HaOpen;
per = Param("MA Periods", 3, 3, 50, 1 );
Plot( HaDiffCo, "HaDiffCO", colorRed );
Plot( MA( HaDiffCo, per ), "MA("+per+")", colorBlue );

 A downloadable version of this code is available from AmiBroker.com. 

--Tomasz Janeczko, AmiBroker.com 
www.amibroker.com




--- In [email protected], kin ford7 <[EMAIL PROTECTED]> wrote:
>
> Hi Guno,
> Can you please, e mail me the code or formula for
> ttmtrend?
> many thanks
> best regards
> ford
> --- gunovanengel <[EMAIL PROTECTED]> wrote:
> 
> > Hi,
> > Squeeze
> > http://www.amibroker.com/library/detail.php?id=453
> > Heikin ashi = ttmTrend
> >
> http://www.amibroker.com/members/traders/02-2004.html
> > 
> > Regards
> > Guno
> > --- In [email protected], "chetan_gariki"
> > <chetan_gariki@> 
> > wrote:
> > >
> > > Hello Everyone,
> > > 
> > > I am new to AB and am just getting used to the
> > program; i am 
> > interested 
> > > in Tradethemarket indicators (TTM Squeeze and TTM
> > Trend). I am 
> > trying 
> > > to code these indicators but wanted to check if
> > someone already has 
> > a 
> > > good version of these indicators. 
> > > 
> > > References:
> > >
> >
> http://www.tradethemarkets.com/products/department2.cfm
> > > 
> > > They have code available for tradestation here:
> > >
> >
> http://www.traderslaboratory.com/forums/46/heikin-ashi-trend-
> > indicator-
> > > 951-2.html
> > > 
> > > 
> > > 
> > > Thank you
> > > gariki
> > >
> > 
> > 
> > 
> 
> 
> 
>  
> 
______________________________________________________________________
______________
> The fish are biting. 
> Get more visitors on your site using Yahoo! Search Marketing.
> http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php
>


Reply via email to