Skip to content

Commit e395120

Browse files
committed
Updated README.md
1 parent 6e1a9af commit e395120

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
## Unofficial Python client for Coinglass API
88

99
Wrapper around the [Coinglass API](https://coinglass.com/pricing) to fetch data about the crypto markets.
10-
All data is output in pandas DataFrames (single or multi-index) and all time series data uses a DateTimeIndex.
10+
All data is output in pandas DataFrames (single or multi-index) and all time series data uses a `DateTimeIndex`.
1111

12-
**Note**: Currently only supports the `indicator` API endpoint.
12+
**Note**: Currently supports the `indicator` and `index` API endpoints.
1313

1414
![Example Plot](https://github.com/dineshpinto/coinglass-api/blob/main/examples/example_plot.jpg?raw=true)
1515

@@ -46,6 +46,11 @@ liq_btc = cg.liquidation_symbol(symbol="BTC", interval="h4")
4646

4747
# Get long/short ratios for BTC
4848
lsr_btc = cg.long_short_symbol(symbol="BTC", interval="h4")
49+
50+
# Get GBTC market history
51+
gbtc_history = cg.grayscale_market_history()
52+
53+
# and more...
4954
```
5055

5156
## Examples

0 commit comments

Comments
 (0)