DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Description
The MarketSummaryDataBeanWS stores information about the current state of the market. It is a part of one or more service calls within the StockTrader Business Service contract.
Members
Name |
Type |
Description |
|---|---|---|
TSIA |
Floating Point Number |
Gets the current Trade Stock Index Amount. This represents the sum price of all stocks within the market. |
openTSIA |
Floating Point Number |
Gets the openning Trade Stock Index Amount. |
volume |
Floating Point Number |
Gets the total number of shares that have changed hands. |
topGainers |
Array of QuoteDataBean |
Gets a list of the stocks that have gone up in value the most. |
topLosers |
Array of QuoteDataBean |
Gets a list of the stocks that have gone down in value the most. |
summaryDate |
Date/Time |
Gets the Date and Time that the summary was generated. |
Definition in XSD
<xs:complexType name="MarketSummaryDataBeanWS">
<xs:sequence>
<xs:element minOccurs="0" name="TSIA" type="xs:decimal" />
<xs:element minOccurs="0" name="openTSIA" type="xs:decimal" />
<xs:element minOccurs="0" name="volume" type="xs:double" />
<xs:element minOccurs="0" name="topGainers" nillable="true" type="tns:ArrayOfQuoteDataBean">
<xs:annotation>
<xs:appinfo>
<DefaultValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/" EmitDefaultValue="false" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="topLosers" nillable="true" type="tns:ArrayOfQuoteDataBean">
<xs:annotation>
<xs:appinfo>
<DefaultValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/" EmitDefaultValue="false" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="summaryDate" type="xs:dateTime" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="ArrayOfQuoteDataBean">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="QuoteDataBean" nillable="true" type="tns:QuoteDataBean" />
</xs:sequence>
</xs:complexType>
Description/Prefix |
Namespace |
|---|---|
Target Namespace |
http://trade.samples.websphere.ibm.com |
tns |
http://trade.samples.websphere.ibm.com |
xs |
http://www.w3.org/2001/XMLSchema |