Installation Guide¶
Follow these steps to set up the ATVaP project on your local machine.
Prerequisites¶
- Python 3.8+
- TensorFlow 2.4+
- pandas
- numpy
- ccxt
- matplotlib (for visualization)
Installation Steps¶
-
Clone this repository:
git clone https://github.com/selimozten/atvap.git -
Navigate to the project directory:
cd atvap -
Create a virtual environment:
python -m venv venv -
Activate the virtual environment:
- On Windows:
venv\Scripts\activate -
On macOS and Linux:
source venv/bin/activate -
Install the required packages:
pip install -r requirements.txt -
Copy the
config.example.ymlfile toconfig.ymland fill in your API credentials:cp config.example.yml config.yml
Proceed to the Usage Section to start running the analysis.