to calculate the quartils we can estimate the amount of items that were sold at the highest price for each days in hystory with the following formula: max(1, round(volume * ((average - lowest) / (highest - lowest))))
Add an endpoint that provide the following data for all market types:
```json
{
"typeID": 0,
"buy": 0,
"sell": 0,
"q1": 0,
"medium": 0,
"q3": 0,
"totalAmount": 0
}
```
to calculate the quartils we can estimate the amount of items that were sold at the highest price for each days in hystory with the following formula: `max(1, round(volume * ((average - lowest) / (highest - lowest))))`
Sirttas
added this to the Server-side market scan project 2023-10-01 21:07:36 +02:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Add an endpoint that provide the following data for all market types:
to calculate the quartils we can estimate the amount of items that were sold at the highest price for each days in hystory with the following formula:
max(1, round(volume * ((average - lowest) / (highest - lowest))))