PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, kin ford7 <ford7k@xxx> wrote:
>
> Hi Guno,
> Can you please, e mail me the code or formula for
> ttmtrend?
> many thanks
> best regards
> ford
> --- gunovanengel <gunovanengel@xxx> 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 amibroker@xxxxxxxxxxxxxxx, "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
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/0It09A/bOaOAA/yQLSAA/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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|