Answer the question
In order to leave comments, you need to log in
What is the algorithm for constructing an order book chart?
Given:
input data about open buy and sell orders, for example
[
{price:20,kind:BID},
{price:21,kind:BID},
....
{price:900,kind:BID},
{price :898,kind:ASK},
...
{price:900,kind:ASK},
]
Question:
How to build a sane order book chart (like bitcoincharts.com/charts/mtgoxUSD/orderbook.png ), while excluding orders that are essentially out of the market - like those like {price:20,kind:BID}?
Those charts should be informative for the trader and not contain "extra" information.
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question