All BitcoinTrade Markets in One Listing
This function call will return the list of all markets along with all their data point. It is recommended to use this to avoid the Google Sheets imposed API call quota.
=CRYPTOFINANCE("BITCOINTRADE")
The following market data will be returned:
last_updated
, when the data has been fetched from the exchange, timezone isUTC
time.market
, the market name following the syntaxBASE/QUOTE
.price
, the current price, either thelast
trade price when available or the currentask
price.ask
, the bestask
price currently in the order book.bid
, the bestbid
price currently in the other book.high
, the 24hhigh
price.low
, the 24hlow
price.last
, the price of the last trade.change 24h
, the price change in percentage over the last 24h.volume
, the volume traded over the last 24h in quote currency (USD
inBTC/USD
).base_volume
, the volume traded over the last 24h in base currency (BTC
inBTC/USD
).
Notes:
- When the exchange doesn’t provide a given market data, a hyphen (-) will be shown.
BitcoinTrade Market Data
Market Current Price
This will return Bitcoin price in Brazilian Real as currently traded on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL")
Same thing as calling =CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "price")
.
Best Ask Price
This will return Bitcoin best ask price in Brazilian Real as currently available on BitcoinTrade order book:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "ask")
Best Bid Price
This will return Bitcoin best bid price in Brazilian Real as currently available on BitcoinTrade order book:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "bid")
Last Trade Price
This call will return Bitcoin last trade price in Brazilian Real as it just happened on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "last")
1h Price Change
This call will return Bitcoin price change percentage in Brazilian Real over the last hour on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "change_1h")
24h Price Change
This call will return Bitcoin price change percentage in Brazilian Real over the last 24h on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "change")
7d Price Change
This call will return Bitcoin price change percentage in Brazilian Real over the last 7 days on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "change_7d")
24h Highest Price
This call will return Bitcoin highest price in Brazilian Real over the last 24h ago on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "high")
24h Lowest Price
This call will return Bitcoin lowest price in Brazilian Real over the last 24h ago on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "low")
Market Volume
This call will return Bitcoin traded volume in Brazilian Real over the last 24h on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "volume")
Market Base Volume
This call will return Bitcoin traded volume in BTC
over the last 24h on BitcoinTrade:
=CRYPTOFINANCE("BITCOINTRADE:BTC/BRL", "base_volume")
BitcoinTrade Historical Data
Historical data is not available for BitcoinTrade at this time.