search
HomeBackend DevelopmentPython TutorialCan python be used to trade stocks?
Can python be used to trade stocks?Jun 18, 2019 pm 05:53 PM
pythonStock trading

Python is a language widely used in various industries, including computers, biology, and finance. It can be said that python can do everything except not having children. This article will use Python to play with stock data and let you see the power of Python.

Can python be used to trade stocks?

Tools used

python3.6Juypter notebook (interactive IDE, recommended) numpy, pandas for data analysis matplotlib, seaborn are used for data visualization pandas_datareader is used to obtain stock data

Data acquisition

We can obtain stock data from pandas_datareader. First you need to install this library

Related recommendations: "python video tutorial"

pip install pandas
pip install pandas-datareader

Then you can access the data

from pandas_datareader.data import DataReader
datas = DataReader(name='BABA', data_source='yahoo', start='2015-01-01', end='2018-01-01')

Here, I first Save the data as a csv file, let's first look at Alibaba's stock data in previous years.

import pandas as pd 
file = 'BABA.csv'   #csv文件index = 'Date'      #将日期作为索引列alibaba = pd.read_csv(file, index_col=index)    #读取csv文件数据

Then let’s simply check Alibaba’s stock data

alibaba.head(n = 5)  #查看前5行数据

The following are the first 5 rows of stock data. We can see the opening price, closing price, highest value, and lowest value of each day. value, trading volume, etc.

Can python be used to trade stocks?

#Then look at the description of the data to get an intuitive feel for the data.

alibaba.describe()

This is some analysis of the statistics of the data. You can see that there are a total of 789 rows of data, and the highest and lowest values ​​are not much different.

Can python be used to trade stocks?

Historical trend analysis

Before analysis, we first import the required Python scientific computing library.

# 数据分析
import numpy as np
import pandas as pd
from pandas import Series, DataFrame# 可视化
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline

We first analyze the overall trend of the stock's closing price.

alibaba['Adj Close'].plot(legend = True)
plt.title('Alibaba Adj Close')
plt.ylim([50,200])
plt.xlabel('Date')
plt.ylabel('Price')

It can be seen that although there are small fluctuations in the middle, the overall trend of the closing price is upward, which shows that Alibaba's market value has been rising.

Can python be used to trade stocks?

Then let’s take a look at the daily rate of return of Alibaba stocks. After all, making money in the stock market mainly relies on the profits from buying low and selling high.

size = (10,8)
alibaba['daily-return'].plot(figsize = size,linestyle = '--',marker = 'o') #折线图,原点表示最大最小点plt.title('Alibaba daily return')
plt.xlabel('Date')
plt.ylabel('daily return rate')

The daily rate of return is not stable, which proves that the stock market is risky and needs to be treated with caution.

Can python be used to trade stocks?

Practical Tips: The pct_change() function compares each element to its previous element and calculates the percentage change. By default, pct_change() operates on columns; if you want to apply it on rows, use the axis = 1 parameter.

Let’s use density plots and histograms to check the overall situation of daily returns.

data = alibaba['daily-return'].dropna() #清除异常值bins = 50 #分为50个区间#在同一张图上画出分布直方图和密度图sns.distplot(data, bins  = bins, color = 'red',hist = True, kde = True)
plt.title('Alibaba daily return distribution')
plt.xlabel('daily-return')
plt.ylabel('probablity')
plt.xlim([-0.05,0.1])

We can see from the figure that the overall rate of return is basically stable at around 0, and the profit or loss is symmetrical.

Can python be used to trade stocks?

Risk Analysis

In the risk analysis, we compare several large companies in the Internet industry to see what their stocks have What's the difference? The five companies I chose here are Apple, Google, Amazon, Microsoft, and Facebook, and the time is from 2015 to 2017. (You can also get it from the previous link in Baidu Netdisk.)

Read the top5.csv file to get the data, sort by time, and view it.

file = "top5.csv"index = 'Date'top_tech_df = pd.read_csv(file,index_col = index)  #读取数据
top_tech_df=top_tech_df.sort_index()    #按索引,也就是时间排序
top_tech_df.head(n = 5)

The data here refers to the closing price of the stock, which is the first 5 pieces of data.

Can python be used to trade stocks?

First, let’s comprehensively compare these 5 companies to see who is more powerful.

top_tech_df.plot(kind = 'line')      #折线图plt.title('five company adj close picture')
plt.xlabel('Date')
plt.ylabel('price')
plt.legend()     #添加图例

It can be seen that the closing prices of Google and Amazon are always higher than those of the other three companies, and these two companies also seem to be somewhat related. If you go up, I will go up, and if you go down, I will go down.

Can python be used to trade stocks?

In the picture above, we can see that the other three companies seem to be developing steadily. In fact, due to the large scale of the picture, it is relatively flat. The real situation is actually one after another, and there are also big differences. Fluctuations, check it out below.

another_company = ['AAPL','FB','MSFT']
top_tech_df[another_company].plot()
plt.title('another company adj close picture')
plt.xlabel('Date')
plt.ylabel('price')
plt.legend()

Can python be used to trade stocks?

We learned from the above that there is some similarity in the closing price changes of Google and Amazon. Let’s take a look at the daily return rate.

sns.jointplot("AMZN",'FB',top_tech_dr,kind='scatter',color = 'red',size=8)
plt.title('joint with AMZN and FB')

The yields of Google and Amazon also seem to be positively correlated, which can be used as a reference factor to predict the development of these two stocks.

Can python be used to trade stocks?

The above is the detailed content of Can python be used to trade stocks?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft