PureBytes Links
Trading Reference Links
|
Hello,
Linking to AmiBroker is possible only if the
language you are using
supports creation of COM/ActiveX objects or
API-like DLLs.
I don't know if DADiSP SE
2000 has such features.
Best regards,
Tomasz Janeczko
amibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Dimitris
Tsokakis
To: <A title=amibroker@xxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: 01 October, 2001 12:49
Subject: [amibroker] 3.75beta
Dear Tomasz,
"By the way - it would be nice if peopleusing
different languages
send their translations to me for the inclusion
in the docs,
so the others, less experienced coders will
benefit."
I use DADiSP SE 2000.
We crate there *.spl files written in
SPL Language using built-in
functions.
Example:
/*PERIOD FUNCTION*/
period(f)
{n=length(f);local
d;d=ones(n,1);for(j=50;j<=n;j=j+1){ex=extract(f,1,j);za=spectrum(sintrend(ex)-trend(ex));DA=ZA>0.9999*MAX(ZA);d[j]=delete(xvals(za),DA<0.5);}(1/d);}
This is written in a notepad file, savedthen as
period.spl in SPL subfolder.
We can have a close price in window W1,
then select W9 and write in formula bar
period(w1)
We see in W9 the period of the stock as a
function of time.
spectrum, sintrend, trend, etc
are built-in functions in DADiSP SE 2000.
Is it possible to transfer above examplein
Amibroker ?
Best Regards
Dimitris TsokakisYour
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|