Market scan endpoint #3

Open
opened 2023-10-01 21:05:54 +02:00 by Sirttas · 0 comments
Owner

Add an endpoint that provide the following data for all market types:

{
    "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))))

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
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: eveal/marbas#3