Build a trader bot which looks at sentiment of live news events and trades appropriately.
- Create a virtual environment
conda create -n trader python=3.10
- Activate it
conda activate trader
- Install initial deps
pip install lumibot timedelta alpaca-trade-api==3.1.1
- Install transformers and friends
pip install torch torchvision torchaudio transformers
- Update the
API_KEY
andAPI_SECRET
with values from your Alpaca account - Run the bot
python tradingbot.py
N.B. Torch installation instructions will vary depending on your operating system and hardware. See here for more: PyTorch Installation Instructions
If you're getting an SSL error when you attempt to call out to the Alpaca Trading api, you'll need to install the required SSL certificates into your machine.
- Download the following intermediate SSL Certificates, these are required to communicate with Alpaca
- https://letsencrypt.org/certs/lets-encrypt-r3.pem
- https://letsencrypt.org/certs/isrg-root-x1-cross-signed.pem
- Once downloaded, change the file extension of each file to
.cer
- Double click the file and run through the wizard to install it, use all of the default selections.
# Other References 🔗
-Lumibot:trading bot library, makes lifecycle stuff easier .
👨🏾💻 Author: Nick Renotte
📅 Version: 1.x
📜 License: This project is licensed under the MIT License