关于成交量放大缩小对比的问题,我们总结了以下几点,给你解答:
成交量放大缩小是如何比较
是和一只股票平时的普遍成交量水平相比较,看是否放大了还是缩小了,当然与换手率自然存在相应的关系,成交量放大,换手率就高。换手率的高低可以不管,只看成交量就行了,高位放巨量涨幅又不大,就不是好事,绝大多数情况都应该出货。
成交量放大缩小对比
§ Code
# 导入模块
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.arange(1, 11)
y1 = x * 2
y2 = x * 3
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.plot(x, y1, color='red', linestyle='--', marker='o', label='成交量放大2倍')
plt.plot(x, y2, color='green', linestyle='-.', marker='*', label='成交量放大3倍')
# 设置坐标轴
plt.xlabel('时间')
plt.ylabel('成交量')
# 设置标题
plt.title('成交量放大缩小对比')
# 设置图例
plt.legend()
# 显示图形
plt.show()
§ Output
>
§ Markdown
### 三、折线图
#### 3.1 折线图
§ Code
# 导入模块
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.arange(1, 11)
y = x * 2
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.plot(x, y, color='red', linestyle='--', marker='o')
# 设置坐标轴
plt.xlabel('时间')
plt.ylabel('成交量')
# 设置标题
plt.title('折线图')
# 显示图形
plt.show()
§ Output
>
§ Markdown
#### 3.2 折线图(多条)
§ Code
# 导入模块
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.arange(1, 11)
y1 = x * 2
y2 = x * 3
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.plot(x, y1, color='red', linestyle='--', marker='o', label='成交量1')
plt.plot(x, y2, color='green', linestyle='-.', marker='*', label='成交量2')
# 设置坐标轴
plt.xlabel('时间')
plt.ylabel('成交量')
# 设置标题
plt.title('折线图(多条)')
# 设置图例
plt.legend()
# 显示图形
plt.show()
§ Output
>
§ Markdown
### 四、柱状图
#### 4.1 柱状图
§ Code
# 导入模块
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.arange(1, 11)
y = x * 2
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.bar(x, y, color='red', width=0.5)
# 设置坐标轴
plt.xlabel('时间')
plt.ylabel('成交量')
# 设置标题
plt.title('柱状图')
# 显示图形
plt.show()
§ Output
>
§ Markdown
#### 4.2 柱状图(多条)
§ Code
# 导入模块
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.arange(1, 11)
y1 = x * 2
y2 = x * 3
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.bar(x, y1, color='red', width=0.5, label='成交量1')
plt.bar(x, y2, color='green', width=0.5, label='成交量2')
# 设置坐标轴
plt.xlabel('时间')
plt.ylabel('成交量')
# 设置标题
plt.title('柱状图(多条)')
# 设置图例
plt.legend()
# 显示图形
plt.show()
§ Output
>
§ Markdown
### 五、饼图
#### 5.1 饼图
§ Code
# 导入模块
import matplotlib.pyplot as plt
# 创建数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.pie(sizes, labels=labels, autopct='%1.1f%%', shadow=True, startangle=90)
# 设置标题
plt.title('饼图')
# 显示图形
plt.show()
§ Output
>
§ Markdown
### 六、散点图
#### 6.1 散点图
§ Code
# 导入模块
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.arange(1, 11)
y = x * 2
# 创建画布
plt.figure(figsize=(10, 6))
# 绘制图形
plt.scatter(x, y, color='red', marker='o')
# 设置坐标轴
plt.xlabel('时间')
plt.ylabel('成交量')
# 设置标题
plt.title('散点图')
# 显示图形
plt.show()
§ Output
>
§ Markdown
### 七、直方图
#### 7.1 直方图
§ Code
# 导入