An interactive web application build using Streamlit which user can place trade order within the application. It comes with LSTM machine learning model for price prediction, Ichimoku Cloud, RSI and Whale Alert.
- create a new conda environment for this project & activate it
conda create -n project python=3.7 anaconda -y
conda activate project
- install variables
cd project_2
pip install -r requirements.txt
- Setup Alpaca Environment Variable
If you are interest to use it in production, please change base url to "https://api.alpaca.markets".
export APCA_API_KEY_ID="your-alpaca-api-key-here"
export APCA_API_SECRET_KEY="your-alpaca-api-secret-key-here"
export APCA_API_BASE_URL="https://paper-api.alpaca.markets"
- Run the Streamlit Application
streamlit run streamlit_app.py