All Projects → LastAncientOne → Deep Learning Machine Learning Stock

LastAncientOne / Deep Learning Machine Learning Stock

Licence: mit
Stock for Deep Learning and Machine Learning

Projects that are alternatives of or similar to Deep Learning Machine Learning Stock

Amazing Feature Engineering
Feature engineering is the process of using domain knowledge to extract features from raw data via data mining techniques. These features can be used to improve the performance of machine learning algorithms. Feature engineering can be considered as applied machine learning itself.
Stars: ✭ 218 (-9.17%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, feature-extraction, feature-engineering, data-visualization
Datasist
A Python library for easy data analysis, visualization, exploration and modeling
Stars: ✭ 123 (-48.75%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, feature-engineering, data-visualization
My Journey In The Data Science World
📢 Ready to learn or review your knowledge!
Stars: ✭ 1,175 (+389.58%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, feature-extraction, data-visualization
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (+1093.33%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Data Science On Gcp
Source code accompanying book: Data Science on the Google Cloud Platform, Valliappa Lakshmanan, O'Reilly 2017
Stars: ✭ 864 (+260%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Machine Learning Workflow With Python
This is a comprehensive ML techniques with python: Define the Problem- Specify Inputs & Outputs- Data Collection- Exploratory data analysis -Data Preprocessing- Model Design- Training- Evaluation
Stars: ✭ 157 (-34.58%)
Mutual labels:  jupyter-notebook, feature-extraction, feature-engineering, data-visualization
Courses
Quiz & Assignment of Coursera
Stars: ✭ 454 (+89.17%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Data Science Lunch And Learn
Resources for weekly Data Science Lunch & Learns
Stars: ✭ 49 (-79.58%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Drugs Recommendation Using Reviews
Analyzing the Drugs Descriptions, conditions, reviews and then recommending it using Deep Learning Models, for each Health Condition of a Patient.
Stars: ✭ 35 (-85.42%)
Mutual labels:  jupyter-notebook, data-analysis, feature-engineering, data-visualization
Kaggle Competitions
There are plenty of courses and tutorials that can help you learn machine learning from scratch but here in GitHub, I want to solve some Kaggle competitions as a comprehensive workflow with python packages. After reading, you can use this workflow to solve other real problems and use it as a template.
Stars: ✭ 86 (-64.17%)
Mutual labels:  jupyter-notebook, data-science, feature-extraction, feature-engineering
Seaborn Tutorial
This repository is my attempt to help Data Science aspirants gain necessary Data Visualization skills required to progress in their career. It includes all the types of plot offered by Seaborn, applied on random datasets.
Stars: ✭ 114 (-52.5%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Dat8
General Assembly's 2015 Data Science course in Washington, DC
Stars: ✭ 1,516 (+531.67%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Cookbook 2nd
IPython Cookbook, Second Edition, by Cyrille Rossant, Packt Publishing 2018
Stars: ✭ 704 (+193.33%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Cookbook 2nd Code
Code of the IPython Cookbook, Second Edition, by Cyrille Rossant, Packt Publishing 2018 [read-only repository]
Stars: ✭ 541 (+125.42%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-28.75%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Introneuralnetworks
Introducing neural networks to predict stock prices
Stars: ✭ 486 (+102.5%)
Mutual labels:  data-science, trading, prediction, stock-price-prediction
Articles
A repository for the source code, notebooks, data, files, and other assets used in the data science and machine learning articles on LearnDataSci
Stars: ✭ 350 (+45.83%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (+31.25%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Pythondata
repo for code published on pythondata.com
Stars: ✭ 113 (-52.92%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Data Science Portfolio
A Portfolio of my Data Science Projects
Stars: ✭ 149 (-37.92%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization

Deep Learning and Machine Learning for Stock predictions

Description: This is for learning, studying, researching, and analyzing stock in deep learning (DL) and machine learning (ML). Predicting Stock with Machine Learning method or Deep Learning method with different types of algorithm. Experimenting in stock data to see how it works and why it works or why it does not work that way. Using different types of stock strategies in machine learning or deep learning. Using Technical Analysis or Fundamental Analysis in machine learning or deep learning to predict the future stock price. In addition, to predict stock in long terms or short terms.

Machine learning is a subset of artificial intelligence involved with the creating of algorithms that can change itself without human intervention to produce an output by feeding itself through structured data. On the other hand, deep learning is a subset of machine learning where algorithms created, but the function are like machine learning and many of the different type of algorithms give a different interpretation of the data. The network of algorithms called artificial neural networks and is similar to neural connections that exist in the human brain.

Three main types of data: Categorical, Discrete, and Continuous variables

  1. Categorical variable(Qualitative): Label data or distinct groups.
    Example: location, gender, material type, payment, highest level of education
  2. Discrete variable (Class Data): Numerica variables but the data is countable number of values between any two values.
    Example: customer complaints or number of flaws or defects, Children per Household, age (number of years)
  3. Continuous variable (Quantitative): Numeric variables that have an infinite number of values between any two values. Example: length of a part or the date and time a payment is received, running distance, age (infinitly accurate and use an infinite number of decimal places)

Data Use

  1. For 'Quantitative data' is used with all three centre measures (mean, median and mode) and all spread measures.
  2. For 'Class data' is used with median and mode.
  3. For 'Qualitative data' is for only with mode.

Two types of problems:

  1. Classification (predict label)
  2. Regression (predict values)

Python Reviews

Step 1 through step 8 is a reviews in python.
After step 8, everything you need to know that is relate to data analysis, data engineering, data science, machine learning, and deep learning.

List of Machine Learning Algorithms for Stock Trading

Most Common Regression Algorithms

  1. Simple Linear Regression Model
  2. Logistic Regression
  3. Lasso Regression
  4. Support Vector Machines
  5. Polynomial Regression
  6. Stepwise Regression
  7. Ridge Regression
  8. Multivariate Regression Algorithm
  9. Multiple Regression Algorithm
  10. K Means Clustering Algorithm
  11. Naïve Bayes Classifier Algorithm
  12. Random Forests
  13. Decision Trees
  14. Nearest Neighbours
  15. Lasso Regression
  16. ElasticNet Regression
  17. Reinforcement Learning
  18. Artificial Intelligence
  19. MultiModal Network
  20. Biologic Intelligence

Different Types of Machine Learning Algorithms and Models

Algorithms is a process and set of instructions to solve a class of problems. In addition, algorithms perform a computation such as calculations, data processing, automated reasoning, and other tasks. A machine learning algorithms is a method that provides the systems to have the ability to automatically learn and improve from experience without being formulated.

Prerequistes

Python 3.5+
Jupyter Notebook Python 3

🔲 Add more of algorithms and different types of algorithms

Authors

* Tin Hang

Disclaimer

🔻 Do not use this code for investing or trading in the stock market. However, if you are interest in the stock market, you should read 📚 books that relate to stock market, investment, or finance. On the other hand, if you into quant or machine learning, read books about 📘 machine trading, algorithmic trading, and quantitative trading. You should read 📗 about Machine Learning and Deep Learning to understand the concept, theory, and the mathematics. On the other hand, you should read academic paper and do research online about machine learning and deep learning on 💻

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].