This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//this script will monitor for all pairs and find any open orders for that pair. | |
// I've done my best to account for throttling and make the script robust. | |
// save locally, add your api key, and run with "node <script name>" in console. | |
// You'll get alerted (in console) when an order fills. | |
// if you'd like to send a donation my way: | |
// BTC: 1JD595vphvXmWEwpjiUmfw3QzsBtE9jUP7 | |
// LTC: LcaHE2dqrH73xLtoKXwDZEUtDiY42iAvk4 | |
// ETH: 0x110191093ffab1f0d3d6012cc0de15f42257b7f6 | |
// BNB: 0x110191093ffab1f0d3d6012cc0de15f42257b7f6 | |
// [email protected] for questions... I'll do my best to support the script if you find any bugs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from autogen.agentchat.contrib.teachable_agent import TeachableAgent | |
# from autogen.agentchat.user_proxy_agent import UserProxyAgent | |
# from autogen.agentchat.conversable_agent import ConversableAgent | |
import os | |
import re | |
import json | |
import autogen | |
import autogen.retrieve_utils as retrieve_utils | |
import chromadb | |
import feedparser |