PureBytes Links
Trading Reference Links
|
I think Tomasz addressed this issue. Are you
using a local database? It is not designed to work with external databases,e.g.
QP2, TC2k, metastock, etc in my understanding. There should probably be an
error trap to warn the user, but, personally, I would rather TJ work on
enhancements and let me take care of my user errors <g>
Cheers,
Richard
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=dtholz@xxxx
href="">dtholz
To: <A title=amibroker@xxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Tuesday, July 16, 2002 5:44
PM
Subject: [amibroker] Re: Composites
Recalculation tool????
Richard , Tomasz i have never been able to get the AD to
caculate in AB left it running for hours only to have the message program
not responding appear. Unfortunatly I have had to resort to another
program to caculated them :(David --- In <A
href="">amibroker@xxxx..., "Tomasz Janeczko" <<A
href="">tj@xxxx...> wrote:> Richard,> >
This tool is suited for users running local database.> If you are using
QP2 as your data source you should use> QP2 special tickers:
like> !NY-D (decliners)> !NY-A (advancers)> !NY-U
(unchanged)> > and use custom indicator builder to >
re-create TRIN and AD-line with those special tickers:> > /*
trin */> graph0 = ( Foreign("NY-A","C") / Foreign( "NY-D", "C) )/ (
Foreign("NY-AV","C") / Foreign( "NY-DV", "C) );> > >
/* ad-line */> Difference = ( Foreign("NY-A","C") - Foreign( "NY-D",
"C) )/ ( UncIssForeign( "NY-U", "C) + 1 );> DiffSqrt = IIF(
Difference > 0, sqrt( Difference ), - sqrt( - Difference ) );>
graph0 = Cum( DiffSqrt );> > > Best regards,>
Tomasz Janeczko> amibroker.com> ----- Original Message -----
> From: "Richard Alford" <richard.alford@xxxx>> To:
<amibroker@xxxx>> Sent: Tuesday, July 16, 2002 4:34 PM>
Subject: [amibroker] Composites Recalculation tool????> >
> > Problems with the "Composites Recalculation tool":> >
> > I presume that the composites must be calculated for the AD-line
and TRIN> > etc to be used as indicators. When I attempt
to recalc for "all markets",> > it max's the CPU for some
indeterminate time, ran for over 10 min before I> > had to kill
the process. If I attempt to calc for NYSE, NASDAQ etc nothing>
> appears to happen.> > > > I am using the latest
version (running so I cannot check at the moment) with> >
QP2.> > > > Can someone enlighten me as to why/what/how I
should be doing this. I have> > had little success
searching the help files for info.> > > > TIA,>
> Richard> > > > > > > >
> > > > Your use of Yahoo! Groups is subject to <A
href="">http://docs.yahoo.com/info/terms/
> > > > > >Your
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|