[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Improving peformance of float analysis with AmiBroker 3.75 beta



PureBytes Links

Trading Reference Links

Hi,

http://www.amibroker.com/bin/ab375beta.zip

or login to the members zone: http://www.amibroker.com/login.html
and follow the links.

Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com


----- Original Message ----- 
From: "Anthony Faragasso" <ajf1111@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Sunday, September 30, 2001 8:36 PM
Subject: Re: [amibroker] Improving peformance of float analysis with AmiBroker 3.75 beta


> Tomasz;
> 
> how do you access the beta archive, I would like to check out the VB code.
> thank you
> Anthony
> 
> Tomasz Janeczko wrote:
> 
> > Peter,
> >
> > As I remember you prefer to use Visual Basic - therefore
> > I would recommend checking a sample VB code included
> > in the beta archive before digging into C++ :-)
> >
> > Best regards,
> > Tomasz Janeczko
> > ===============
> > AmiBroker - the comprehensive share manager.
> > http://www.amibroker.com
> >
> > ----- Original Message -----
> > From: "Peter Gialames" <investor@xxxx>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Sunday, September 30, 2001 8:47 PM
> > Subject: RE: [amibroker] Improving peformance of float analysis with AmiBroker 3.75 beta
> >
> > > Thank you Tomasz ... it is very fast now!
> > >
> > > Now to try and tackle the plugins ;-)
> > >
> > > Peter Gialames
> > >
> > > -----Original Message-----
> > > From: Tomasz Janeczko [mailto:amibroker@x...]
> > > Sent: Sunday, September 30, 2001 1:52 PM
> > > To: amibroker@xxxxxxxxxxxxxxx
> > > Subject: Re: [amibroker] Improving peformance of float analysis with
> > > AmiBroker 3.75 beta
> > >
> > >
> > > Hello,
> > >
> > > This is fixed now. Please download the beta archive again.
> > >
> > > Best regards,
> > > Tomasz Janeczko
> > > ===============
> > > AmiBroker - the comprehensive share manager.
> > > http://www.amibroker.com
> > >
> > >
> > > ----- Original Message -----
> > > From: "Tomasz Janeczko" <amibroker@xxxx>
> > > To: <amibroker@xxxxxxxxxxxxxxx>
> > > Sent: Sunday, September 30, 2001 7:45 PM
> > > Subject: Re: [amibroker] Improving peformance of float analysis with
> > > AmiBroker 3.75 beta
> > >
> > >
> > > > Hello again,
> > > >
> > > > You need to add
> > > > Float = 0;
> > > > before the beginning of the scripting block <%
> > > >
> > > > This happens because of one quirk in the beta version.
> > > > I will fix it and update the archive within an hour.
> > > >
> > > > Best regards,
> > > > Tomasz Janeczko
> > > > ===============
> > > > AmiBroker - the comprehensive share manager.
> > > > http://www.amibroker.com
> > > >
> > > > ----- Original Message -----
> > > > From: "Peter Gialames" <investor@xxxx>
> > > > To: <amibroker@xxxxxxxxxxxxxxx>
> > > > Sent: Sunday, September 30, 2001 7:34 PM
> > > > Subject: RE: [amibroker] Improving peformance of float analysis with
> > > AmiBroker 3.75 beta
> > > >
> > > >
> > > > > Hello Tomasz,
> > > > >
> > > > > I am getting an error with the code you posted (attached).
> > > > >
> > > > > I am currently testing a new DLL from QP so I don't know if this is the
> > > > > problem.
> > > > >
> > > > > Peter Gialames
> > > > >
> > > > > PS GREAT WORK!!! There is allot to digest this week. Thank you very
> > > much!
> > > > >
> > > > > -----Original Message-----
> > > > > From: Tomasz Janeczko [mailto:amibroker@x...]
> > > > > Sent: Sunday, September 30, 2001 12:28 PM
> > > > > To: amibroker@xxxxxxxxxxxxxxx
> > > > > Subject: [amibroker] Improving peformance of float analysis with
> > > AmiBroker
> > > > > 3.75 beta
> > > > >
> > > > >
> > > > > Hello,
> > > > >
> > > > > This one is mainly for Peter Gialames and the other users
> > > > > of QuotesPlus COM objects.
> > > > >
> > > > > With AmiBroker 3.75 beta you can replace new ActiveXObject
> > > > > with AFL.CreateStaticObject() function call that creates QP2
> > > > > ActiveX object only once per AmiBroker session.
> > > > > The initialization of QP2 is extremely slow so static creation
> > > > > supported now by AmiBroker gives tremendous performance
> > > > > gain (20-50 times faster).
> > > > >
> > > > > Check for yourself
> > > > >
> > > > > MaxGraph = 9;
> > > > >
> > > > > EnableScript("jscript");
> > > > >
> > > > > // this is to show only one entry per stock
> > > > > ticker = Name();
> > > > >
> > > > > Float = 0;
> > > > > <%
> > > > > CInfo = AFL.CreateStaticObject("QuotesPlus.CompanyInfo"); // NEW
> > > > > CreateStaticObject !
> > > > > CInfo.Symbol = AFL("ticker");
> > > > >
> > > > > // try-catch block handles the situation when
> > > > > // QuotesPlus object returns strange values
> > > > >
> > > > > try
> > > > > {
> > > > > AFL("Float") = Number( CInfo.Float() )*100000;
> > > > > }
> > > > > catch( e )
> > > > > {
> > > > > AFL("Float") = 0;
> > > > > }
> > > > >
> > > > >
> > > > > %>
> > > > >
> > > > > cumvol = LastValue( Cum( Volume ) ) - Cum( Volume );
> > > > > lastrange = cumvol < Float;
> > > > > dayone = ExRem( lastrange, 0 );
> > > > >
> > > > > Graph0 = Close;
> > > > >
> > > > >
> > > > > hh = LastValue( HighestSince( dayone, High ) );
> > > > > ll = LastValue( LowestSince( dayone, Low ) );
> > > > >
> > > > > Graph0 = Close;
> > > > > Graph0Style=64;
> > > > > Graph0Color=2;
> > > > >
> > > > > Graph1 = IIf( lastrange, hh, -1e10 );
> > > > > Graph2 = IIf( lastrange, ll, -1e10 );
> > > > > Graph1Style = Graph2Style = 1;
> > > > >
> > > > > ===========================
> > > > > Best regards,
> > > > > Tomasz Janeczko
> > > > > ===============
> > > > > AmiBroker - the comprehensive share manager.
> > > > > http://www.amibroker.com
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Your use of Yahoo! Groups is subject to
> > > http://docs.yahoo.com/info/terms/
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Your use of Yahoo! Groups is subject to
> > > http://docs.yahoo.com/info/terms/
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> > >
> > >
> > >
> >
> >
> >
> >
> > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
> 
> 
> 
> 
> 
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
> 
> 
>