GET api/OrderManagement/GetStockPrice?FeedCode={FeedCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
StockPrice| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedCode | string |
None. |
|
| TimeDone | string |
None. |
|
| LastDone | decimal number |
None. |
|
| Change | decimal number |
None. |
|
| DayHigh | decimal number |
None. |
|
| CummVol | integer |
None. |
|
| DayLow | decimal number |
None. |
|
| OpenPrice | decimal number |
None. |
|
| ClosingPrice | decimal number |
None. |
|
| BuyQuantity | integer |
None. |
|
| BuyPrice | decimal number |
None. |
|
| SellPrice | decimal number |
None. |
|
| SellQuantity | integer |
None. |
|
| Buy2Quantity | integer |
None. |
|
| Buy2Price | decimal number |
None. |
|
| Sell2Price | decimal number |
None. |
|
| Sell2Quantity | integer |
None. |
|
| Buy3Quantity | integer |
None. |
|
| Buy3Price | decimal number |
None. |
|
| Sell3Price | decimal number |
None. |
|
| Sell3Quantity | integer |
None. |
|
| Buy4Quantity | integer |
None. |
|
| Buy4Price | decimal number |
None. |
|
| Sell4Price | decimal number |
None. |
|
| Sell4Quantity | integer |
None. |
|
| Buy5Quantity | integer |
None. |
|
| Buy5Price | decimal number |
None. |
|
| Sell5Price | decimal number |
None. |
|
| Sell5Quantity | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"FeedCode": "sample string 1",
"TimeDone": "sample string 2",
"LastDone": 3.0,
"Change": 4.0,
"DayHigh": 5.0,
"CummVol": 6,
"DayLow": 7.0,
"OpenPrice": 8.0,
"ClosingPrice": 9.0,
"BuyQuantity": 10,
"BuyPrice": 11.0,
"SellPrice": 12.0,
"SellQuantity": 13,
"Buy2Quantity": 14,
"Buy2Price": 15.0,
"Sell2Price": 16.0,
"Sell2Quantity": 17,
"Buy3Quantity": 18,
"Buy3Price": 19.0,
"Sell3Price": 20.0,
"Sell3Quantity": 21,
"Buy4Quantity": 22,
"Buy4Price": 23.0,
"Sell4Price": 24.0,
"Sell4Quantity": 25,
"Buy5Quantity": 26,
"Buy5Price": 27.0,
"Sell5Price": 28.0,
"Sell5Quantity": 29
}
application/xml, text/xml
Sample:
<StockPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POEMSWEBAPI.Models.OrderManagement"> <Buy2Price>15</Buy2Price> <Buy2Quantity>14</Buy2Quantity> <Buy3Price>19</Buy3Price> <Buy3Quantity>18</Buy3Quantity> <Buy4Price>23</Buy4Price> <Buy4Quantity>22</Buy4Quantity> <Buy5Price>27</Buy5Price> <Buy5Quantity>26</Buy5Quantity> <BuyPrice>11</BuyPrice> <BuyQuantity>10</BuyQuantity> <Change>4</Change> <ClosingPrice>9</ClosingPrice> <CummVol>6</CummVol> <DayHigh>5</DayHigh> <DayLow>7</DayLow> <FeedCode>sample string 1</FeedCode> <LastDone>3</LastDone> <OpenPrice>8</OpenPrice> <Sell2Price>16</Sell2Price> <Sell2Quantity>17</Sell2Quantity> <Sell3Price>20</Sell3Price> <Sell3Quantity>21</Sell3Quantity> <Sell4Price>24</Sell4Price> <Sell4Quantity>25</Sell4Quantity> <Sell5Price>28</Sell5Price> <Sell5Quantity>29</Sell5Quantity> <SellPrice>12</SellPrice> <SellQuantity>13</SellQuantity> <TimeDone>sample string 2</TimeDone> </StockPrice>