PureBytes Links
Trading Reference Links
|
There are changes being made to the QP COM interface (see attached). Do you
have any suggestions I can pass along?
Peter Gialames
--- Begin Message ---
To: <quotes-plus@xxxxxxxxxxxxxxx>
Subject: [quotes-plus] QP Com Interface
From: "gary" <gary@xxxx>
Date: Wed, 15 Aug 2001 18:28:59 -0400
Importance: Normal
List-unsubscribe: <mailto:quotes-plus-unsubscribe@xxxxxxxxxxxxxxx>
Reply-to: <quotes-plus@xxxxxxxxxxxxxxx>
All -
I've made some fixes to the COM interface, and want to know what other items
are necessary.
The fixes are:
The company description now matches the description in the charts.
The company info object now returns the correct information for the irl
index value.
Enhancements:
There is a new price object - price2 - that contains some additions :
[id(12), helpstring("method OpenInterest")] HRESULT OpenInterest([in] long
lDay, [out, retval] VARIANT* pValue);
[id(13), helpstring("method GetMaxInRange")] HRESULT GetMaxInRange([in]
QP_PRICETOKEN whichField , long StartDay , long EndDay , [out] DOUBLE
*dValue , [out,retval] BOOL *pOK);
[id(14), helpstring("method GetMinInRange")] HRESULT GetMinInRange([in]
QP_PRICETOKEN whichField , long StartDay , long EndDay , [out] DOUBLE
*dValue , [out,retval] BOOL *pOK);
[id(15), helpstring("method GetMfJulianDate")] HRESULT GetMfJulianDate([in]
int month, int day, int year , [out,retval] int *JulDay);
[id(16), helpstring("method SetMfJulianDate")] HRESULT SetMfJulianDate([in]
int JulDate, [out] int *Year, int *Month , int *Day);
[id(17), helpstring("method SetPeriod")] HRESULT SetPeriod([in] BSTR
Period);
[id(18), helpstring("method GetPeriod")] HRESULT GetPeriod([out,retval] BSTR
*Period);
[id(19), helpstring("method Change")] HRESULT Change([in] long lDay, [out,
retval] VARIANT* pValue );
The additions would be helpful for those who want to write their own
programs in VB using the com interface.
Let me know what other items you want in the interface, I can add your
changes now.
Thanks,
Gary
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
--- End Message ---
--- Begin Message ---
To: <quotes-plus@xxxxxxxxxxxxxxx>
Subject: [quotes-plus] Re: QP Com Interface
From: <gary@xxxx>
Date: Wed, 15 Aug 2001 21:28:54 -0400
Importance: Normal
In-reply-to: <616E5E6C4E51D511810A00105A1BF09A2693@xxxx>
List-unsubscribe: <mailto:quotes-plus-unsubscribe@xxxxxxxxxxxxxxx>
Reply-to: <quotes-plus@xxxxxxxxxxxxxxx>
Let me make this a little easier to read
The com enhancements are:
OpenInterest Returns the open interest for commodities
GetMaxInRange Get the maximum open,high,low,close,volume or open
interest in a range
GetMinInRange Get the minimum open,high,low,close,volume or open
interest in a range
GetMfJulianDate Returns a monday-friday julian date value from
month,day,year
SetMfJulianDate Returns the month,day,year from a monday-friday
julian date
SetPeriod Sets the period - (daily/weekly) of the data
GetPeriod Gets the current period
Change Returns the net change for a day from the previous day
There is also a days to load parameter on the load data call
These will be available from VB or Excel etc.
Gary
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
--- End Message ---
|