Skip to content

seanbearden/stock-market-patterns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stock-market-patterns

Researching trading patterns with AI, Machine Learning, and Data Science

Initialize PostgreSQL Database

  • Install PostgreSQL on local machine:
 brew install postgresql
 brew services start postgresql@14
  • Create database with user and grant all privileges on database:
CREATE DATABASE your_dbname;
CREATE USER your_username WITH PASSWORD 'your_password';
GRANT ALL PRIVILEGES ON DATABASE your_dbname TO your_username;
\c your_dbname your_admin_user
-- You are now connected to database "your_dbname" as user "your_admin_user".
GRANT ALL ON SCHEMA public TO your_username;
  • run get_data.py to create tables and populate database.

Stock Database Diagram

Data gathering

Packages

About

Researching trading patterns with AI, Machine Learning, and Data Science

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published