Created
May 5, 2023 15:30
-
-
Save under0tech/56dcb0e28e7726cb1acdc43136f00733 to your computer and use it in GitHub Desktop.
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
# SETTINGS | |
TRADER_ID = 'Myrmidon trading bot' | |
TRADER_API_KEY = '[API key]' | |
TRADER_API_SECRET = '[API secret]' | |
TRADER_API_URL = 'https://paper-api.alpaca.markets' | |
TELEGRAM_URL = 'https://api.telegram.org' | |
TELEGRAM_BOT_ID = 'bot0000000000:AAA_gNNN00B0xxxDaaaUD00HHH-Y0wAAmhA' # Myrmidon trading bot | |
TELEGRAM_CHAT_ID = '-1002003005001' # Myrmidon trading bot channel | |
TWITTER_API_KEY = '[Twitter API key]' | |
TWITTER_API_SECRET = '[Twitter API secret]' | |
TWITTER_TWEETS_COUNT = 90 | |
SCREENER_INTERVAL = '5m' | |
SCREENER_PERIOD = '200m' | |
SCREENER_NASDAQ_COUNT = 910 | |
TAKE_PROFIT_DELTA = 0.007 | |
STOP_LOSS_DELTA = 0.007 | |
CASH_LIMIT = 26000 | |
OPENED_POSITIONS_LIMIT = 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment