PureBytes Links
Trading Reference Links
|
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@xxxxxxxxxxxxxxx>
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 http://docs.yahoo.com/info/terms/
>
>
>
|