We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @sudhanshu-pantelwar ,
first of all, i would like to thank you for this wonderful library. I have a question regarding modification to support multiple markets.
Can you point where i should start to call go func() {}() ? I suppose I should embed here but got no clue how to do so. Can you help?
`var pairBook *engine.OrderBook if val, ok := e.book[req.GetPair()]; ok { pairBook = val } else { pairBook = engine.NewOrderBook() e.book[req.GetPair()] = pairBook }
ordersProcessed, partialOrder := pairBook.Process(order) ordersProcessedString, err := json.Marshal(ordersProcessed)`
regards
The text was updated successfully, but these errors were encountered:
Message that will be displayed on users' first issue
Sorry, something went wrong.
No branches or pull requests
Hi @sudhanshu-pantelwar ,
first of all, i would like to thank you for this wonderful library. I have a question regarding modification to support multiple markets.
Can you point where i should start to call go func() {}() ? I suppose I should embed here but got no clue how to do so. Can you help?
`var pairBook *engine.OrderBook
if val, ok := e.book[req.GetPair()]; ok {
pairBook = val
} else {
pairBook = engine.NewOrderBook()
e.book[req.GetPair()] = pairBook
}
regards
The text was updated successfully, but these errors were encountered: