docker pull mraniki/tt:latest
or docker pull ghcr.io/mraniki/tt:latest
git clone https://github.com/mraniki/tt:main
&& pip install -r requirements.txt
python3 bot.py
to start
-
- - - - - - - |
-
- Connect CEX and DEX exchanges - across multi messaging platforms - with plugin support. - |
-
-
- - - - - - - |
-
- Find My order, - a parsing package to find trading order - |
-
-
- from findmyorder import FindMyOrder
- fmo = FindMyOrder()
- msg_order = "buy EURUSD sl=1000 tp=1000 q=1 comment=FOMC"
- order = await fmo.get_order(msg_order)
- #{'action': 'BUY', 'instrument': 'EURUSD', 'stop_loss': '1000', 'take_profit': '1000', 'quantity': '2', 'order_type': None, 'leverage_type': None, 'comment': None, 'timestamp': datetime.datetime(2023, 5, 3, 12, 10, 28, 731282, tzinfo=datetime.timezone.utc)}
-
-
-
-
- - - - - - - |
-
-Swap made easy -Trade on any blockchains with uniswap based router or 0x protocol. - |
-
-
-
- from dxsp import DexSwap
- dex = DexSwap()
- #BUY 10 USDT to SWAP with BITCOIN
- demo_tx = await dex.get_swap('USDT','wBTC',10)
- print("demo_tx ", demo_tx)
-
-
-
-
- - - - - - - |
-
- A python package to listen to messaging platforms, - such as discord, telegram and matrix - |
-
-
-
- from iamlistening import Listener
- listener = Listener()
- task = asyncio.create_task(listener.run_forever())
- while True:
- try:
- msg = await listener.get_latest_message()
- if msg:
- print(f"Frasier👂: {msg}"
- except Exception as error:
- print(error)
- await task
-
-
-
-
- - - - - - - |
-
-Retrieve asset trend and economic data. -Trading view connectivity with signal scanner -News connectivity - FOMC reminder - |
-
-
-
- from talkytrend import TalkyTrend
- talky = TalkyTrend()
- result = await talky.check_signal()
- # BUY
- result = await talky.fetch_key_events()
- print(result)
- # Title: FDA advisers say new Alzheimer’s drug lecanemab slows cognitive decline
- # Description: Panel’s opinion could pave way for full regulatory approval next month for treatment of disease that affects 6.5m Americans
- monitor = await talky.scanner() #ongoing monitoring
- # New signal for BTCUSD (4h): STRONG_SELL
- # Key event: {'title': 'OPEC-JMMC Meetings', 'country': 'ALL', 'date': '2023-06-04T06:15:00-04:00', 'impact': 'High', 'forecast': '', 'previous': ''}\
- # Key news: FDA advisers say new Alzheimer’s drug lecanemab slows cognitive decline
-
-
-
-