awesome-python icon indicating copy to clipboard operation
awesome-python copied to clipboard

add ta-lib-python

Open uavlove opened this issue 1 year ago • 3 comments

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

uavlove avatar Nov 20 '24 10:11 uavlove

fuck yall

Nogivefuckk avatar Nov 20 '24 11:11 Nogivefuckk

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())

asalomeri avatar Jan 03 '25 05:01 asalomeri