Stock Picks

#1
First I created a database of historical stock data that includes: opening price, high price, low price, close price, and trading volume. This would be one record in the database for each trading day.

Now I want to automate the process of triggering stock picks to buy by writing software to do this. Any stocks that I bought, I also want to trigger the stock sale.

One method I have seen for stock picks involves viewing a stock chart that includes the graph of price of the stock over a period of time as well as volume and moving average. Making a stock pick this way would involve analyzing each stock individually and making a determination.

What I would like to do is write software that performs analysis of the historical data in the database and make stock pick recommendations. What algorithm(s) would best be used to perform such analysis? If I would need more data in my historical database, what would that be?

While other posts on this forum give great way to analysis stock, those posts do not translate well into writing code to do this. What I am looking for is algorithms such as auto correlation, volume weighted average price (VWAP), and others. Simply knowing an algorithm is only a start, I would then need to know how to apply that algorithm to the data I have in the database.
 
Last edited:

Similar threads