File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 77## Unofficial Python client for Coinglass API
88
99Wrapper 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
4848lsr_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
You can’t perform that action at this time.
0 commit comments