-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathGetStockReport_Web.m
More file actions
399 lines (340 loc) · 10.1 KB
/
GetStockReport_Web.m
File metadata and controls
399 lines (340 loc) · 10.1 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
function [ReportList] = GetStockReport_Web(StockCode, varargin)
% [ReportList] = GetStockReport_Web(StockCode, 'PropertyName',PropertyValue, ...)
% [ReportList] = GetStockReport_Web(StockCode, 'BeginDate',BeginDate,'EndDate',EndDate)
% by LiYang_faruto
% Email:farutoliyang@foxmail.com
% 2015/02/11
% % % !!! 未全部完成!!!
% Example:
%{
StockCode = '600588';
BeginDate = '20140101';
EndDate = '20150101';
[ReportList] = GetStockReport_Web(StockCode, 'BeginDate',BeginDate,'EndDate',EndDate);
%}
%% Para Parse
ReportList = [];
p = inputParser;
vFcn = @(x)( ischar(x) && ~isempty(x) );
p.addRequired('StockCode',vFcn);
DV = datestr(today-20,'yyyy-mm-dd');
vFcn = @(x)( ischar(x) || isnumeric(x) );
p.addParameter('BeginDate',DV,vFcn);
DV = datestr(today,'yyyy-mm-dd');
vFcn = @(x)( ischar(x) || isnumeric(x) );
p.addParameter('EndDate',DV,vFcn);
p.parse(StockCode, varargin{:});
Para = p.Results;
StockCode = Para.StockCode;
BeginDate = Para.BeginDate;
EndDate = Para.EndDate;
% 股票代码目标形式:'600588'
if StockCode(1) == 's'
StockCode = StockCode(3:end);
end
if StockCode(end) == 'h' || StockCode(end) == 'z'
StockCode = StockCode(1:end-2);
end
% 日期目标形式:'2015-01-01'
if isempty(BeginDate)
BeginDate = datestr(today-20,'yyyy-mm-dd');
end
if isempty(EndDate)
EndDate = datestr(today,'yyyy-mm-dd');
end
if ~ischar( BeginDate )
BeginDate = num2str(BeginDate);
end
if ~ischar( EndDate )
EndDate = num2str(EndDate);
end
if isempty(find( BeginDate=='-',1 ))
BeginDate = [BeginDate(1:4),'-',BeginDate(5:6),'-',BeginDate(7:8)];
end
if isempty(find( EndDate=='-',1 ))
EndDate = [EndDate(1:4),'-',EndDate(5:6),'-',EndDate(7:8)];
end
%% GetURLList
%{
http://www.microbell.com/superareport.asp?
report=0&doctype=Company_Code&doctime1=2014-01-01&doctime2=2015-01-01&dockey=600588 &x=39&y=7
&paget=2&from=
%}
StopFlag = 0;
URLList = [];
tLen = 1;
PageNum = 1;
while 0 == StopFlag
URL = ['http://www.microbell.com/superareport.asp?' ...
'report=0&doctype=Company_Code&doctime1=',BeginDate,'&doctime2=',EndDate,'&dockey=',StockCode, ...
'&paget=',num2str(PageNum),'&from='];
PageNum = PageNum + 1;
UserAgent = 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0';
TimeOut = 60;
Charset = 'gb2312';
[URLchar,status] = urlread(URL,'UserAgent',UserAgent,'TimeOut',TimeOut,'Charset',Charset);
if status == 0
str = ['urlread error:网页读取失败!请检查输入的网址或网络连接情况!'];
disp(str);
URLchar = [];
StopFlag = 1;
continue;
end
% URLString = java.lang.String(URLchar);
expr = ['超出最大页数范围,请返回!'];
MatchStr = regexpi(URLchar, expr,'match');
if ~isempty(MatchStr)
% str = [StockCode,'超出最大页数范围,请返回!'];
% disp(str);
StopFlag = 1;
continue;
end
expr = ['<a href="docdetail','.*?', ...
'>'];
MatchStr = regexpi(URLchar, expr,'match');
if isempty(MatchStr)
str = [StockCode,'在指定时间范围内无相关研报!请检查输入参数'];
disp(str);
StopFlag = 1;
continue;
end
Len = numel(MatchStr);
for i = 1:Len
tStr = MatchStr{i};
expr = ['docdetail_','.*?', ...
'.html'];
tMatchStr = regexpi(tStr, expr,'match');
URLList{tLen,1} = ['http://www.microbell.com/',tMatchStr{1}];
expr = ['title="','.*?', ...
'">'];
sLen = length('title="');
eLen = length('">');
tMatchStr = regexpi(tStr, expr,'match');
URLList{tLen,2} = tMatchStr{1}(sLen+1:end-eLen);
tLen = tLen + 1;
end
end
%% Detail Parse
% tReportList = [];
if ~isempty(URLList)
Len = size(URLList, 1);
for i = 1:Len
URL = URLList{i,1};
Title = URLList{i,2};
Detail = GetReportDetail_Web( URL,Title );
if ~isempty( Detail )
tReportList(i,:) = Detail;
end
end
if exist('tReportList','var')
Head = {'上传时间','股票代码','股票名称','报告标题','推荐评级','研报出处','报告类型','研报作者','研报摘要','研报大小' ...
'研报页数','研报链接'};
tReportList = tReportList(end:(-1):1,:);
ReportList = [Head; tReportList];
end
end
%% sub func-GetReportDetail_Web
function Detail = GetReportDetail_Web( URL,Title )
Detail = [];
UserAgent = 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0';
TimeOut = 60;
Charset = 'gb2312';
[URLchar,status] = urlread(URL,'UserAgent',UserAgent,'TimeOut',TimeOut,'Charset',Charset);
% URLString = java.lang.String(URLchar);
if status == 0
str = ['urlread error:网页读取失败!请检查输入的网址或网络连接情况!'];
disp(str);
URLchar = [];
return;
end
Tind = 1;
% Head = {'上传时间','股票代码','股票名称','报告标题','推荐评级','研报出处','报告类型','研报作者','研报摘要','研报大小' ...
% '研报页数','研报链接'};
% 上传时间
expr = ['上传时间:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['>','.*?', ...
'<'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
temp = temp(2:end-1);
temp = str2double( datestr( datenum(temp,'yyyy-mm-dd HH:MM:SS'),'yyyymmddHHMMSS' ) );
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 股票代码
expr = ['股票代码:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['>','\d+', ...
'<'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
temp = temp(2:end-1);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 股票名称
expr = ['股票名称:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['">','.*?', ...
'</a>'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('">');
eLen = length('</a>');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 报告标题
Detail{1, Tind} = Title;
Tind = Tind + 1;
% 推荐评级
expr = ['推荐评级:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['">','.*?', ...
'</a>'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('">');
eLen = length('</a>');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 研报出处
expr = ['研报出处:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['">','.*?', ...
'</a>'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('">');
eLen = length('</a>');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 报告类型
expr = ['研报栏目:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['">','.*?', ...
'</a>'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('">');
eLen = length('</a>');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 研报作者
expr = ['研报作者:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['">','.*?', ...
'</a>'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('">');
eLen = length('</a>');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 研报摘要
expr = ['<font style="font-size','.*?', ...
'</p>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['>','.*?', ...
'</p>'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('>');
eLen = length('</p>');
temp = temp(sLen+1:end-eLen);
temp = TextClean(temp);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 研报大小
expr = ['研报大小:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['>','.*?', ...
'<'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('">');
eLen = length('<');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 研报页数
expr = ['研报页数:\s*<span\s*>','.*?', ...
'</span>'];
tMatchStr = regexpi(URLchar, expr,'match');
if ~isempty( tMatchStr )
tStr = tMatchStr{1};
expr = ['>','.*?', ...
'<'];
tMatchStr = regexpi(tStr, expr,'match');
temp = tMatchStr{1};
sLen = length('>');
eLen = length('<');
temp = temp(sLen+1:end-eLen);
Detail{1, Tind} = temp;
end
Tind = Tind + 1;
% 研报链接
Detail{1, Tind} = URL;
Tind = Tind + 1;
% Head = {'上传时间','股票代码','股票名称','报告标题','推荐评级','研报出处','报告类型','研报作者','研报摘要','研报大小' ...
% '研报页数','研报链接'};
%% sub func-TextClean文本初步清洗
function TC = TextClean(text)
TC = text;
expr = [' '];
replace = '';
TC = regexprep(TC,expr,replace);
expr = ['<br>'];
replace = ' ';
TC = regexprep(TC,expr,replace);
expr = ['<font style="display:none;">','.*?', ...
'</font>'];
replace = '';
TC = regexprep(TC,expr,replace);
expr = ['<font.*?>'];
replace = '';
TC = regexprep(TC,expr,replace);
expr = ['</font.*?>'];
replace = '';
TC = regexprep(TC,expr,replace);
expr = ['<.*?em>'];
replace = '';
TC = regexprep(TC,expr,replace);