forked from tkfy920/qstock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
35 lines (30 loc) · 811 Bytes
/
Copy path__init__.py
File metadata and controls
35 lines (30 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
@Author :Jinyi Zhang
@Date :2022/9/29 20:20
'''
#数据模块
#股票、债券、期货、基金等交易行情数据
from qstock.data.trade import *
#新闻数据
from qstock.data.news import *
#股票基本面数据
from qstock.data.fundamental import *
##行业、概念板块数据
from qstock.data.industry import *
#资金流向数据
from qstock.data.money import *
#宏观经济数据
from qstock.data.macro import *
#问财数据
from qstock.data.wencai import *
#可视化模块
from qstock.plot.data_plot import *
from qstock.plot.chart_plot import *
#选股模块
from qstock.stock.stock_pool import *
from qstock.stock.ths_em_pool import *
#回测模块
from qstock.backtest.vec_backtest import *
from qstock.backtest.turtle import *