6
Follow
0
Followers
Python کو Binance اسپاٹ مارکیٹ پرائس ڈیٹا ملتا ہے، خالی لوٹتا ہے۔
Created 2024-05-04 14:59:36
3
842
کرنسیوں اور نقدی کے بازاروں میں قیمتوں کے اعداد و شمار حاصل کریں
def get_binance_spot_market_data():
url = "https://api.binance.com/api/v1/ticker/24hr"
response = requests.get(url)
if response.status_code == 200:
return response.json()
else:
return None
اس کوڈ کو چلانے کے بعد لاگ ان خالی کیوں ہے؟
Related Recommendations
Inventor Quant Workflow FAQ (Continuously Updated)Financial Magic Zone Global KOL RecruitmentFAQ Summary (Updating...)PINE Language Introductory Tutorial of FMZ QuantPrimary Tutorial of Strategy Writing with FMZ Quant Trading Platform (Must Read)Getting Started with FMZ Quant Trading Platform (Must Read)
Comment
All comments (3)
- 1

