add ta-lib-python
What is this Python project?
This is a Python wrapper for TA-LIB based on Cython instead of SWIG, is widely used by trading software developers requiring to perform technical analysis of financial market data.
- Includes 150+ indicators such as ADX, MACD, RSI, KDJ, BOLL, Stochastic, Bollinger Bands, etc.
- Candlestick pattern recognition
- More info, https://github.com/TA-Lib/ta-lib-python
What's the difference between this Python project and similar ones?
Anyone who wants to try automated trading can directly call the API without having to reinvent the wheel
fuck yall
from bitcoinlib.wallets import Wallet
إنشاء أو فتح المحفظة
wallet = Wallet.create('MyWallet') # يمكنك استخدام Wallet('MyWallet') إذا كانت المحفظة موجودة بالفعل
عنوان الوجهة والمبلغ
destination_address = '1AA4a1WcMGNZXjceQGaSRY7oSosTVWTwYp' amount = 0.001 # المبلغ بالبيتكوين (BTC)
إنشاء وإرسال المعاملة
tx = wallet.send_to(destination_address, amount)
طباعة تفاصيل المعاملة
print("Transaction ID:", tx.txid) print("Transaction details:", tx.info())