alexey-ernest / go-hft-orderbook

Golang implementation of a Limit Order Book (LOB) for high frequency trading in crypto exchanges
MIT License
202 stars 55 forks source link

Bug in DeleteAskLimit functionality in Orderbook #3

Closed ankit257 closed 1 year ago

ankit257 commented 1 year ago

In orderbook.go file in line #123, it should be limit := this.askLimitsCache[price] instead of limit := this.bidLimitsCache[price]

ankit257 commented 1 year ago

opened a PR https://github.com/alexey-ernest/go-hft-orderbook/pull/4

alexey-ernest commented 1 year ago

Thank you.