Trying to get "equity"
data from a API response for calculate but can’t get through.
This is my code:
JavaScript
x
13
13
1
from pybit import HTTP
2
import json
3
4
5
session = HTTP("https://api.bybit.com",api_key=xxxx, api_secret=xxxx)
6
g=session.get_wallet_balance(coin="USDT")
7
8
data=json.dumps(g,indent=4)
9
print(data)
10
11
for item in data ['result']['USDT']:
12
print(item["equity"])
13
Keep getting TypeError
:
JavaScript
1
3
1
for item in data ['result']['USDT']:
2
TypeError: string indices must be integers
3
And this is data I am trying to tear apart:
JavaScript
1
28
28
1
{
2
"ret_code": 0,
3
"ret_msg": "OK",
4
"ext_code": "",
5
"ext_info": "",
6
"result": {
7
"USDT": {
8
"equity": 562733.1693,
9
"available_balance": 558590.8075,
10
"used_margin": 5642.0618,
11
"order_margin": 0,
12
"position_margin": 05642.0618,
13
"occ_closing_fee": 3.8e-07,
14
"occ_funding_fee": 0,
15
"wallet_balance": 564232.8693,
16
"realised_pnl": -00862.2551,
17
"unrealised_pnl": -01.4997,
18
"cum_realised_pnl": 68531.4329,
19
"given_cash": 0,
20
"service_cash": 0
21
}
22
},
23
"time_now": "1643729725.986204",
24
"rate_limit_status": 119,
25
"rate_limit_reset_ms": 1643729725980,
26
"rate_limit": 120
27
}
28
Advertisement
Answer
Done with this type, go through json.dumps
and json.loads
and track the data in equity
to get number in json
JavaScript
1
6
1
session = HTTP("https://api.bybit.com",api_key=apiKey, api_secret=secret)
2
raw= json.dumps(session.get_wallet_balance(coin="USDT"),indent=4)
3
data=json.loads(raw)
4
equity=data['result']['USDT']['equity']
5
print(equity)
6