You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit introduces two new options to market_history_plugin:
* `max-order-his-records-per-market`:
Will only store this amount of matched orders for each market in order
history for querying, or those meet the other option, which has more data.
(default: 1000)
* `max-order-his-seconds-per-market`:
Will only store matched orders in last X seconds for each market in order
history for querying, or those meet the other option, which has more data.
(default: 259200 (3 days))
To save RAM, we can keep only the last X entries, or entries of last Y days, which has more data.
There was a mechanism that keeps only last 100 entries, which was not good enough so caused some trouble, so has been removed in #255.
The text was updated successfully, but these errors were encountered: