Let me list a few of them @GeorgiL ;
/api/v0/history/dividends
endpoint returns a HistoryDividendItem
which has the following fields;
{
"ticker": "VICI_US_EQ",
"reference": "6404a7d4-d609-4462-b105-ac56b1a9345a",
"quantity": 24.9391857100,
"amount": 6.49,
"grossAmountPerShare": 0.3900000000,
"amountInEuro": 7.596774,
"paidOn": "2023-07-07T16:08:26.000+03:00",
"type": "DIVIDENDS_PAID_BY_US_CORPORATIONS"
},
Here we do not have the exchange rate. Same applies for /api/v0/equity/history/orders
{
"type": "MARKET",
"id": 315,
"fillId": 315,
"parentOrder": 3104,
"ticker": "MO_US_EQ",
"orderedQuantity": null,
"filledQuantity": null,
"limitPrice": null,
"stopPrice": null,
"timeValidity": null,
"orderedValue": 34.000000,
"filledValue": 34.000000,
"executor": "IOS",
"dateModified": "2023-07-10T16:54:57.000Z",
"dateExecuted": null,
"dateCreated": "2023-07-10T16:54:57.000Z",
"fillResult": null,
"fillPrice": 44.470000,
"fillCost": null,
"taxes": [],
"fillType": "OTC",
"status": "FILLED"
},
The exchange rate is helpful:)
An example;
I purchased Apple, paid Ā£3 and 0.0218819 is my Filled Qty.
The order filled for $171.15. If I knew the exchange rate at the time, I could find my filled quantity. But the api is missing exchange rate so I cannot get filled quantity.
I mean if there is away to calculate this, maybe Im missing it
And as some other users noted; we are given ticker names like MO_US_EQ
but on your website and on the exported files it uses MO
. I am converting these on the go, but I believe would be useful other users.
And last of all, youāve removed XHR requests, are you planning to re-enable it?
Thank you so much