Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 983 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 983 Bytes

🪄 Crypototo Roboto

About

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.

🚀 Get Start

  1. create a new conda environment for this project & activate it
conda create -n project python=3.7 anaconda -y
conda activate project
  1. install variables
cd project_2
pip install -r requirements.txt
  1. 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"
  1. Run the Streamlit Application
streamlit run streamlit_app.py