Unfortunately yes. MtGox has not updated the BigQuery database in quite some time, however the data is complete up to May 2013.
It's like MagicalTux has been on strike. Everybody's mean to him I guess
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
https://bigquery.cloud.google.com/
SELECT DATE(TIMESTAMP(date)) as date, TIME(TIMESTAMP(date)) as time, price/100000 as price, amount
FROM [mt-gox:mtgox.trades]
WHERE Currency__ = "USD"
AND date < "2013-05-19 17:30:00"
ORDER BY date DESC, time DESC LIMIT 16000;
date,time,price,amount
2013-05-19,17:29:46,120.88,18501496
2013-05-19,17:29:45,120.83,84148500
2013-05-19,17:29:42,120.83,50000000
2013-05-19,17:28:57,120.12501,1138895
...
SELECT PARSE_UTC_USEC(date) as timestamp FROM [mt-gox:mtgox.trades] WHERE price = 2122000 LIMIT 1
Row timestamp
1 1359647088000000
SELECT DATE(TIMESTAMP(date)) as date, TIME(TIMESTAMP(date)) as time FROM [mt-gox:mtgox.trades] WHERE price = 2122000 LIMIT 1
Row date time
1 2013-01-31 15:44:48
SELECT LEFT(Date,10),RIGHT(Date,8) FROM [mt-gox:mtgox.trades] LIMIT 10;
SELECT LEFT(Date,10),RIGHT(Date,8) FROM [mt-gox:mtgox.trades] LIMIT 10;
Date | The date of the trade in ISO format. | str |
Money_Trade__ | Primary | Currency__ | Bid_User_Rest_App__ | Ask_User_Rest_App__ | Type | Properties | Item | Amount | Price | Date | |
1363132336180895 | true | USD | e7b6384e-3981-42e7-b3b7-7719c4dc74a5 | null | bid | market | BTC | 22276676 | 4435000 | 2013-03-12 23:52:16 | |
1363132369821802 | true | USD | null | null | bid | limit | BTC | 8174066 | 4435000 | 2013-03-12 23:52:49 | |
1363132372700876 | true | USD | null | e75e9f56-4b37-4440-9b10-b56fc6a47ee1 | ask | limit | BTC | 64250873 | 4434351 | 2013-03-12 23:52:52 | |
1363132372786101 | true | USD | null | e75e9f56-4b37-4440-9b10-b56fc6a47ee1 | ask | limit | BTC | 8174066 | 4433910 | 2013-03-12 23:52:52 | |
1363132386679941 | true | USD | null | e75e9f56-4b37-4440-9b10-b56fc6a47ee1 | ask | limit | BTC | 160000000 | 4414717 | 2013-03-12 23:53:06 |
Date | The date of the trade in ISO format. | str |
select * from [mt-gox:mtgox.trades] where Currency__='GBP';
Field | Description | Type |
Money_Trade__ | This is the tid value, a unique id for the order. The first trades used (almost) sequential integers up to 218868, the majority of trades however came after this (~6 million) and use a Unix microstamp instead. | int |
Primary | Whether the trade happened in the currency specified (see Currency__). Some trades may appear on multiple tickers, so to ignore duplicates you may want to `select where primary is true'. | bool |
Currency__ | The symbol of the currency against which BTC was bought or sold. | str |
Bid_User_Rest_App__ | App ID of the bidding party (the person buying BTC)* | str |
Ask_User_Rest_App__ | App ID of the asking party (the person selling BTC)* | str |
Type | bid or ask (bid means to buy BTC by selling the specified currency, ask means to buy the specified currency by selling BTC) | str |
Properties | A comma separated list of properties of the order, e.g. limit,market,mixed_currency | str |
Item | The thing being bought or sold, always BTC. | str |
Amount | The volume of the item (BTC) being bought/sold in satoshis (1 BTC = 100,000,000 satoshis). | int |
Price | The price of each item in the currency specified. For most currencies, this is given in units of 0.00001 of the currency, so $12.3456 would be 1,234,560. Some currencies, currently JPY and SEK use units of 0.001 instead. | int |
Date | The date of the trade in ISO format. | str |