6
I'm using the MTGox API to get data about historic trades.
When I run https://mtgox.com/api/1/BTCGBP/public/trades?since={trade_id}, I get the latest 500 trades since that {trade_id}.
Now I have for example these two trades returned:
Trade #1
{
"date":1342135345,
"price":"4.77728",
"amount":"5107.98029213",
"price_int":"477728",
"amount_int":"510798029213",
"tid":"1342135345801755",
"price_currency":"GBP",
"item":"BTC",
"trade_type":"bid",
"primary":"Y",
"properties":"market,mixed_currency"
},
Trade #2
{
"date":1342136454,
"price":"4.78",
"amount":"0.02000488",
"price_int":"478000",
"amount_int":"2000488",
"tid":"1342136454726203",
"price_currency":"GBP",
"item":"BTC",
"trade_type":"bid",
"primary":"N",
"properties":"limit,mixed_currency"
},
Note the different properties: "market,mixed_currency" & "limit,mixed_currency".
What is the difference between a market and a limit property? What do both mean? (I couldn't find it here https://en.bitcoin.it/wiki/MtGox/API/HTTP/v1)
what does it mean for a trade to be mixed_currency?
Bitcoincharts does seem to include all trades regardless of the limit/market/mixed currency, is this the right approach if you want to have a honest view of all markets?
2Actually, this doesn't quite answer the question in the given context. Yes, market vs limit is explained, but what does it mean in the context of a MtGox trade entry. Isn't there typically a market order and a limit order that are matched in order to create a trade? – Dustin Graham – 2013-04-15T08:39:57.057
@DustinGraham quite obviously it means that that trade was done with a limit order or with a market order. Limit orders stay in the order book if not cleared immediately, while market orders are always filled unless the market is empty. – o0'. – 2013-04-19T14:52:09.053
Quite obviously. :) – Dustin Graham – 2013-04-20T17:46:25.617