GET api/Trading/{symbol}/Prices/{period}
Preturile unei emisiuni pentru o perioada de timp (InfoChart).
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
symbol |
Simbolul emisiunii |
string |
Required |
period |
Perioada de timp. Poate avea una din valorile : wk - o saptamana, mm - o luna , sm - un semestru , yy - un an. Rezultatele sunt intoarse in ordine cronologica |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of HistoricalPricesName | Description | Type | Additional information |
---|---|---|---|
Symbol |
Simbolul emisiunii |
string |
None. |
Date |
Data |
date |
None. |
OpenPrice |
Pretul de deschidere |
decimal number |
None. |
HighPrice |
Cel mai mare pret |
decimal number |
None. |
LowPrice |
Cel mai mic pret |
decimal number |
None. |
ClosePrice |
Pretul de inchidere (acesta este pretul de afisat) |
decimal number |
None. |
AdjustedClosePrice |
Pretul de inchidere ajustat |
decimal number |
None. |
Volume |
Numarul de actiuni tranzactionate |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Symbol": "sample string 1", "Date": "2023-10-01T10:41:04.4884219+03:00", "OpenPrice": 1.0, "HighPrice": 1.0, "LowPrice": 1.0, "ClosePrice": 1.0, "AdjustedClosePrice": 1.0, "Volume": 1 }, { "Symbol": "sample string 1", "Date": "2023-10-01T10:41:04.4884219+03:00", "OpenPrice": 1.0, "HighPrice": 1.0, "LowPrice": 1.0, "ClosePrice": 1.0, "AdjustedClosePrice": 1.0, "Volume": 1 } ]