PureBytes Links
Trading Reference Links
|
Dear Tomasz,
If you have the time, look at
http://www.dadisp.com/activex.htm
Does it help to see if we can transfer functions
from Dadisp to Amibroker.
Some functions there are quite interesting.
Best Regards
Dimitris Tsokakis
--- In amibroker@xxxx, "Tomasz Janeczko" <amibroker@xxxx> wrote:
> 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
> ----- Original Message -----
> From: Dimitris Tsokakis
> To: amibroker@xxxx
> Sent: 01 October, 2001 12:49
> Subject: [amibroker] 3.75beta
>
>
> Dear Tomasz,
>
> "By the way - it would be nice if people using 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, saved then 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 example in Amibroker ?
>
> Best Regards
> Dimitris Tsokakis
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
|