├── README.md
├── absa.ipynb
└── dataset
├── task1_headline_ABSA_test.json
├── task1_headline_ABSA_train.json
├── task1_post_ABSA_test.json
└── task1_post_ABSA_train.json
/README.md:
--------------------------------------------------------------------------------
1 | # Aspect-based-Financial-Sentiment-Analysis
2 | Aspect based sentiment analysis aims to detect an aspect (i.e. features) in a given text and then perform sentiment analysis of the text with respect to that aspect. This project aims to give a solution for the FiQA 2018 challenge subtask 1.
3 |
4 | Given a text instance in the financial domain (microblog message, news statement or headline) in English, detect the target aspects which are mentioned in the text (from a pre-defined list of aspect classes) and predict the sentiment score for each of the mentioned targets. Sentiment scores will be defined using continuous numeric values ranged from -1(negative) to 1(positive).
5 |
6 | Model is evaluated on the basis of precision, recall and F1-score for aspect classification approaches and regard to MSE and R Squared(R^2) metrics for sentiment prediction.
7 |
8 | An example of the input/output of the task is defined below:
9 |
10 | "55": {
11 |
12 | "sentence": "Tesco Abandons Video-Streaming Ambitions in Blinkbox Sale",
13 |
14 | "info": [
15 |
16 | {
17 |
18 | "snippets": "['Video-Streaming Ambitions']",
19 |
20 | "target": "Blinkbox",
21 |
22 | "sentiment_score": "-0.195",
23 |
24 | "aspects": "['Corporate/Stategy']"
25 |
26 | },
27 |
28 | {
29 |
30 | "snippets": "['Tesco Abandons Video-Streaming Ambitions ']",
31 |
32 | "target": "Tesco",
33 |
34 | "sentiment_score": "-0.335",
35 |
36 | "aspects": "['Corporate/Stategy']"
37 |
38 | }
39 |
40 | ]
41 |
42 | }
43 |
44 |
45 | If you happen to refer my work please cite our research paper: [Link](https://scholar.google.com/scholar?cluster=17063964007769067631&hl=en&as_sdt=2005)
46 |
47 | BibTeX Cite:
48 |
49 | @article{salunkhe2019aspect,
50 | title={Aspect based sentiment analysis on financial data using transferred learning approach using pre-trained BERT and regressor model”},
51 | author={Salunkhe, Ashish and Mhaske, Shubham},
52 | year={2019}
53 | }
54 |
--------------------------------------------------------------------------------
/dataset/task1_headline_ABSA_test.json:
--------------------------------------------------------------------------------
1 | {
2 | "0_Cuadrilla": {
3 | "sentence": "Cuadrilla files to delay application to frack in Lancashire",
4 | "info": [
5 | {
6 | "snippets": "['files to delay application']",
7 | "target": "Cuadrilla"
8 | }
9 | ]
10 | },
11 | "1001_Sainsbury": {
12 | "sentence": "Sainsbury chief warns of squeeze on high street retailers",
13 | "info": [
14 | {
15 | "snippets": "['warns of squeeze on high street retailers']",
16 | "target": "Sainsbury"
17 | }
18 | ]
19 | },
20 | "1006_Barclays": {
21 | "sentence": "Barclays fined for anti-money-laundering failings",
22 | "info": [
23 | {
24 | "snippets": "['fined for anti-money-laundering failings']",
25 | "target": "Barclays"
26 | }
27 | ]
28 | },
29 | "1007_Barclays": {
30 | "sentence": "UPDATE 3-Barclays fined for lax crime checks in 'deal of century'",
31 | "info": [
32 | {
33 | "snippets": "['fined for lax crime checks in']",
34 | "target": "Barclays"
35 | }
36 | ]
37 | },
38 | "1014_GSK": {
39 | "sentence": "GSK aims to file up to 20 new drugs for approval by 2020",
40 | "info": [
41 | {
42 | "snippets": "['file up to 20 new drugs for approval by 2020']",
43 | "target": "GSK"
44 | }
45 | ]
46 | },
47 | "1031_National Grid": {
48 | "sentence": "CompaniesNational Grid lines up sale of gas business",
49 | "info": [
50 | {
51 | "snippets": "['Grid lines up sale of']",
52 | "target": "National Grid"
53 | }
54 | ]
55 | },
56 | "1034_British American Tobacco": {
57 | "sentence": "British American Tobacco accused of bribing senior politicians to sabotage ...",
58 | "info": [
59 | {
60 | "snippets": "['accused of bribing senior politicians to sabotage']",
61 | "target": "British American Tobacco"
62 | }
63 | ]
64 | },
65 | "1035_MillerCoors": {
66 | "sentence": "UPDATE 2-AB InBev launches SAB bid, to sell MillerCoors stake",
67 | "info": [
68 | {
69 | "snippets": "['launches SAB bid, to sell']",
70 | "target": "MillerCoors"
71 | }
72 | ]
73 | },
74 | "1039_AstraZeneca": {
75 | "sentence": "AstraZeneca shares climb 3% as drug maker ups profits forecasts",
76 | "info": [
77 | {
78 | "snippets": "['shares climb 3%']",
79 | "target": "AstraZeneca"
80 | }
81 | ]
82 | },
83 | "103_Hammerson": {
84 | "sentence": "Landlord Hammerson's NAV rises on increased leasing activity",
85 | "info": [
86 | {
87 | "snippets": "['rises on increased leasing activity']",
88 | "target": "Hammerson"
89 | }
90 | ]
91 | },
92 | "1050_BAE Systems": {
93 | "sentence": "BAE Systems cuts earnings target for 2015 and 370 jobs",
94 | "info": [
95 | {
96 | "snippets": "['cuts earnings target for 2015 and 370 jobs']",
97 | "target": "BAE Systems"
98 | }
99 | ]
100 | },
101 | "1055_Barclays": {
102 | "sentence": "Barclays settles with US investors over Libor manipulation",
103 | "info": [
104 | {
105 | "snippets": "['settles with US investors over Libor manipulation']",
106 | "target": "Barclays"
107 | }
108 | ]
109 | },
110 | "1068_Bunzl": {
111 | "sentence": "Bunzl backs 2015 view, buys more businesses",
112 | "info": [
113 | {
114 | "snippets": "['backs 2015 view, buys more businesses']",
115 | "target": "Bunzl"
116 | }
117 | ]
118 | },
119 | "1075_L&G": {
120 | "sentence": "L&G strikes £230m bulk annuity deal",
121 | "info": [
122 | {
123 | "snippets": "['strikes £230m bulk annuity deal']",
124 | "target": "L&G"
125 | }
126 | ]
127 | },
128 | "1082_Bloomberg": {
129 | "sentence": "Bloomberg buys Barclays' benchmarking business",
130 | "info": [
131 | {
132 | "snippets": "[\"buys Barclays' benchmarking business\"]",
133 | "target": "Bloomberg"
134 | }
135 | ]
136 | },
137 | "1083_Barclays": {
138 | "sentence": "Barclays in $13.75 million US settlement over mutual funds",
139 | "info": [
140 | {
141 | "snippets": "['in $13.75 million US settlement over']",
142 | "target": "Barclays"
143 | }
144 | ]
145 | },
146 | "1088_Tesco": {
147 | "sentence": "Tesco UK personnel director quits supermarket",
148 | "info": [
149 | {
150 | "snippets": "['personnel director quits supermarket']",
151 | "target": "Tesco"
152 | }
153 | ]
154 | },
155 | "109_Severn Trent": {
156 | "sentence": "Companies Severn Trent expects costs hit from inflation",
157 | "info": [
158 | {
159 | "snippets": "['expects costs hit from']",
160 | "target": "Severn Trent"
161 | }
162 | ]
163 | },
164 | "10_EasyJet": {
165 | "sentence": "UPDATE 2-EasyJet sees better first half on lower fuel bill",
166 | "info": [
167 | {
168 | "snippets": "['sees better first half']",
169 | "target": "EasyJet"
170 | }
171 | ]
172 | },
173 | "1104_BHP Billiton": {
174 | "sentence": "BHP Billiton to lower copper production costs",
175 | "info": [
176 | {
177 | "snippets": "['to lower copper production costs']",
178 | "target": "BHP Billiton"
179 | }
180 | ]
181 | },
182 | "1115_AstraZeneca": {
183 | "sentence": "AstraZeneca in Talks to Buy Cancer Drug Developer Acerta Pharma",
184 | "info": [
185 | {
186 | "snippets": "['in Talks to Buy']",
187 | "target": "AstraZeneca"
188 | }
189 | ]
190 | },
191 | "1123_Lloyds": {
192 | "sentence": "Osborne extends Lloyds sell-off plan",
193 | "info": [
194 | {
195 | "snippets": "['sell-off plan']",
196 | "target": "Lloyds"
197 | }
198 | ]
199 | },
200 | "1126_Barclays": {
201 | "sentence": "Industry NewsBarclays to 'cut investment bank staff by another 20%'",
202 | "info": [
203 | {
204 | "snippets": "[\"to 'cut investment bank staff by another 20%'\"]",
205 | "target": "Barclays"
206 | }
207 | ]
208 | },
209 | "1127_RBS": {
210 | "sentence": "RBS Investment Bank to Return to Profit After Overhaul, CEO Says",
211 | "info": [
212 | {
213 | "snippets": "['Investment Bank to Return to Profit After Overhaul,']",
214 | "target": "RBS"
215 | }
216 | ]
217 | },
218 | "1138_Barclays": {
219 | "sentence": "Che Banca! CEO says Barclays buy to lift profit from 2016-17",
220 | "info": [
221 | {
222 | "snippets": "['buy to lift profit from']",
223 | "target": "Barclays"
224 | }
225 | ]
226 | },
227 | "113_BHP": {
228 | "sentence": "BHP's iron ore outlook holds little cheer for small miners",
229 | "info": [
230 | {
231 | "snippets": "['outlook holds little cheer for small miners']",
232 | "target": "BHP"
233 | }
234 | ]
235 | },
236 | "1163_Morrisons": {
237 | "sentence": "Early victory for new CEO as Morrisons beats forecasts",
238 | "info": [
239 | {
240 | "snippets": "['beats forecasts']",
241 | "target": "Morrisons"
242 | }
243 | ]
244 | },
245 | "1173_BP": {
246 | "sentence": "BP to slash 4000 jobs globally as oil prices drop",
247 | "info": [
248 | {
249 | "snippets": "['slash 4000 jobs globally as oil prices drop']",
250 | "target": "BP"
251 | }
252 | ]
253 | },
254 | "1175_Morrisons": {
255 | "sentence": "UK supermarket group Morrisons cuts fresh food prices",
256 | "info": [
257 | {
258 | "snippets": "['cuts fresh food prices']",
259 | "target": "Morrisons"
260 | }
261 | ]
262 | },
263 | "117_AO World": {
264 | "sentence": "AO World shares tumble on profit warning",
265 | "info": [
266 | {
267 | "snippets": "['shares tumble on profit warning']",
268 | "target": "AO World"
269 | }
270 | ]
271 | },
272 | "1187_Direct Line": {
273 | "sentence": "Direct Line expects claims of £110-140 million from three storms",
274 | "info": [
275 | {
276 | "snippets": "['claims of £110-140 million from three storms']",
277 | "target": "Direct Line"
278 | }
279 | ]
280 | },
281 | "1188_RBS": {
282 | "sentence": "RBS Shares Drop After Surprise Pension Charge Cuts Capital",
283 | "info": [
284 | {
285 | "snippets": "['snippet']",
286 | "target": "RBS"
287 | }
288 | ]
289 | },
290 | "119_StanLife": {
291 | "sentence": "StanLife leads FTSE after strong earnings",
292 | "info": [
293 | {
294 | "snippets": "['after strong earnings']",
295 | "target": "StanLife"
296 | }
297 | ]
298 | },
299 | "1214_Diageo": {
300 | "sentence": "Diageo offloads major wine interests",
301 | "info": [
302 | {
303 | "snippets": "['offloads major wine interests']",
304 | "target": "Diageo"
305 | }
306 | ]
307 | },
308 | "1235_Glencore": {
309 | "sentence": "UPDATE 1-LPC-Glencore launches refinancing of US$8.45bn loan",
310 | "info": [
311 | {
312 | "snippets": "['launches refinancing of']",
313 | "target": "Glencore"
314 | }
315 | ]
316 | },
317 | "1238_Glencore": {
318 | "sentence": "LPC-Glencore launches refinancing of $8.45billion loan",
319 | "info": [
320 | {
321 | "snippets": "['launches refinancing of $8.45billion loan']",
322 | "target": "Glencore"
323 | }
324 | ]
325 | },
326 | "124_RBS": {
327 | "sentence": "RBS breaks with past by tearing investment bank apart",
328 | "info": [
329 | {
330 | "snippets": "['tearing investment bank apart']",
331 | "target": "RBS"
332 | }
333 | ]
334 | },
335 | "1254_Smith & Nephew": {
336 | "sentence": "Smith & Nephew 2015 trading profit beats expectations",
337 | "info": [
338 | {
339 | "snippets": "['trading profit beats expectations']",
340 | "target": "Smith & Nephew"
341 | }
342 | ]
343 | },
344 | "1263_BT Group": {
345 | "sentence": "BT Group's third quarter revenues rise as restructure unveiled",
346 | "info": [
347 | {
348 | "snippets": "['third quarter revenues rise']",
349 | "target": "BT Group"
350 | }
351 | ]
352 | },
353 | "1266_Johnston Press": {
354 | "sentence": "Indy future in doubt as Johnston Press lines up deal for 'i'",
355 | "info": [
356 | {
357 | "snippets": "['lines up deal for']",
358 | "target": "Johnston Press"
359 | }
360 | ]
361 | },
362 | "1269_BP": {
363 | "sentence": "BP shares tumble after $2.2bn fourth-quarter loss",
364 | "info": [
365 | {
366 | "snippets": "['shares tumble after $2.2bn fourth-quarter loss']",
367 | "target": "BP"
368 | }
369 | ]
370 | },
371 | "126_Randgold Resources": {
372 | "sentence": "Randgold Resources Q4 Profit Decreases - Quick Facts",
373 | "info": [
374 | {
375 | "snippets": "['Profit Decreases']",
376 | "target": "Randgold Resources"
377 | }
378 | ]
379 | },
380 | "1271_BHP Billiton": {
381 | "sentence": "BHP Billiton says no settlement yet on Brazil dam disaster",
382 | "info": [
383 | {
384 | "snippets": "['says no settlement yet on Brazil dam disaster']",
385 | "target": "BHP Billiton"
386 | }
387 | ]
388 | },
389 | "1273_Hargreaves Landown": {
390 | "sentence": "Hargreaves Landown slides on trading update",
391 | "info": [
392 | {
393 | "snippets": "['slides on trading update']",
394 | "target": "Hargreaves Landown"
395 | }
396 | ]
397 | },
398 | "1280_AstraZeneca": {
399 | "sentence": "AstraZeneca says new lung cancer pill Tagrisso approved by EU",
400 | "info": [
401 | {
402 | "snippets": "['lung cancer pill Tagrisso approved by']",
403 | "target": "AstraZeneca"
404 | }
405 | ]
406 | },
407 | "1285_Berkshire Hathaway": {
408 | "sentence": "Warren Buffett's Berkshire Hathaway quarterly profit jumps almost one third",
409 | "info": [
410 | {
411 | "snippets": "['profit jumps almost one third']",
412 | "target": "Berkshire Hathaway"
413 | }
414 | ]
415 | },
416 | "1286_Genel": {
417 | "sentence": "Genel Shares Plunge After Tony Hayward's Oil Explorer Cuts Crude Reserves at Core Field",
418 | "info": [
419 | {
420 | "snippets": "['Cuts Crude Reserves at']",
421 | "target": "Genel"
422 | }
423 | ]
424 | },
425 | "1300_AstraZeneca": {
426 | "sentence": "AstraZeneca agrees licensing deal for Plendil in China",
427 | "info": [
428 | {
429 | "snippets": "['agrees licensing deal for Plendil in China']",
430 | "target": "AstraZeneca"
431 | }
432 | ]
433 | },
434 | "1301_Glencore": {
435 | "sentence": "Glencore posts 5.7 pct fall in Q4 copper output",
436 | "info": [
437 | {
438 | "snippets": "['5.7 pct fall in']",
439 | "target": "Glencore"
440 | }
441 | ]
442 | },
443 | "1310_Glencore": {
444 | "sentence": "Glencore to refinance its short-term debt early, shares rise",
445 | "info": [
446 | {
447 | "snippets": "['short-term debt early, shares rise']",
448 | "target": "Glencore"
449 | }
450 | ]
451 | },
452 | "131_Glaxo": {
453 | "sentence": "Glaxo Sees Hope for Respiratory Drugs as Earnings Beat Estimates",
454 | "info": [
455 | {
456 | "snippets": "['as Earnings Beat Estimates']",
457 | "target": "Glaxo"
458 | }
459 | ]
460 | },
461 | "1321_Weir Group": {
462 | "sentence": "Industry NewsRevenue, earnings take a tumble at Weir Group",
463 | "info": [
464 | {
465 | "snippets": "['earnings take a tumble at']",
466 | "target": "Weir Group"
467 | }
468 | ]
469 | },
470 | "1337_AstraZeneca": {
471 | "sentence": "CompaniesAstraZeneca shares hit as 2016 revenue forecast to fall",
472 | "info": [
473 | {
474 | "snippets": "['hit as 2016 revenue forecast to fall']",
475 | "target": "AstraZeneca"
476 | }
477 | ]
478 | },
479 | "1338_Lloyds Banking Group": {
480 | "sentence": "Lloyds Banking Group reports 7% dip in annual profits",
481 | "info": [
482 | {
483 | "snippets": "[' 7% dip in annual profits']",
484 | "target": "Lloyds Banking Group"
485 | }
486 | ]
487 | },
488 | "1340_Berkshire": {
489 | "sentence": "UPDATE 3-Buffett's Berkshire raises oil bet with Kinder Morgan stake",
490 | "info": [
491 | {
492 | "snippets": "['raises oil bet with']",
493 | "target": "Berkshire"
494 | }
495 | ]
496 | },
497 | "1344_Associated British Foods": {
498 | "sentence": "Associated British Foods raises guidance as sterling wilts",
499 | "info": [
500 | {
501 | "snippets": "['raises guidance as sterling wilts']",
502 | "target": "Associated British Foods"
503 | }
504 | ]
505 | },
506 | "1347_Glencore": {
507 | "sentence": "CompaniesGlencore shares hit 3-month high after refinancing key credit line",
508 | "info": [
509 | {
510 | "snippets": "['hit 3-month high after refinancing key credit line']",
511 | "target": "Glencore"
512 | }
513 | ]
514 | },
515 | "1348_JP Morgan Chase": {
516 | "sentence": "CompaniesCoutts raids JPMorgan Chase for new CEO",
517 | "info": [
518 | {
519 | "snippets": "['Chase for new CEO']",
520 | "target": "JP Morgan Chase"
521 | }
522 | ]
523 | },
524 | "1355_Admiral and Schroders": {
525 | "sentence": "Admiral and Schroders lift FTSE with profits surge",
526 | "info": [
527 | {
528 | "snippets": "['with profits surge']",
529 | "target": "Admiral and Schroders"
530 | }
531 | ]
532 | },
533 | "1361_Admiral": {
534 | "sentence": "Britain's FTSE buoyed by Admiral, building sector gains",
535 | "info": [
536 | {
537 | "snippets": "['building sector gains']",
538 | "target": "Admiral"
539 | }
540 | ]
541 | },
542 | "1363_Legal & General": {
543 | "sentence": "Legal & General's capital update outweighs profit rise",
544 | "info": [
545 | {
546 | "snippets": "['update outweighs profit rise']",
547 | "target": "Legal & General"
548 | }
549 | ]
550 | },
551 | "1369_Kingfisher": {
552 | "sentence": "Britain's FTSE advances as investors cheer Kingfisher results",
553 | "info": [
554 | {
555 | "snippets": "['as investors cheer Kingfisher results']",
556 | "target": "Kingfisher"
557 | }
558 | ]
559 | },
560 | "1374_BP": {
561 | "sentence": "BP ends 27-year sponsorship of Tate as falling oil price takes toll",
562 | "info": [
563 | {
564 | "snippets": "['as falling oil price takes toll']",
565 | "target": "BP"
566 | }
567 | ]
568 | },
569 | "1393_Shell": {
570 | "sentence": "Shell CEO van Beurden's remuneration fell in 2015",
571 | "info": [
572 | {
573 | "snippets": "['remuneration fell in']",
574 | "target": "Shell"
575 | }
576 | ]
577 | },
578 | "1397_HSBC": {
579 | "sentence": "HSBC money laundering report's release delayed amid US appeal",
580 | "info": [
581 | {
582 | "snippets": "[\"report's release delayed amid US appeal\"]",
583 | "target": "HSBC"
584 | }
585 | ]
586 | },
587 | "1399_Rio Tinto": {
588 | "sentence": "Standout performer' JS Jacques picked to lead Rio Tinto",
589 | "info": [
590 | {
591 | "snippets": "['picked to lead']",
592 | "target": "Rio Tinto"
593 | }
594 | ]
595 | },
596 | "1401_Barclays": {
597 | "sentence": "Barclays reports 8% fall in annual profits",
598 | "info": [
599 | {
600 | "snippets": "[' 8% fall in']",
601 | "target": "Barclays"
602 | }
603 | ]
604 | },
605 | "1406_Metro Bank": {
606 | "sentence": "CompaniesMetro Bank raises £400m ahead of London listing",
607 | "info": [
608 | {
609 | "snippets": "['raises £400m ahead of']",
610 | "target": "Metro Bank"
611 | }
612 | ]
613 | },
614 | "1411_Sports Direct": {
615 | "sentence": "Sports Direct boss Mike Ashley summoned to Westminster for questioning over the treatment of workers",
616 | "info": [
617 | {
618 | "snippets": "['for questioning over the treatment of']",
619 | "target": "Sports Direct"
620 | }
621 | ]
622 | },
623 | "1413_Aggreko": {
624 | "sentence": "Aggreko says first half profits will be lower as the oil price rout claims its latest victim",
625 | "info": [
626 | {
627 | "snippets": "['first half profits will be lower as the oil price rout']",
628 | "target": "Aggreko"
629 | }
630 | ]
631 | },
632 | "141_Berkshire Hathaway": {
633 | "sentence": "Berkshire Hathaway's 4Q profit declines 17 percent",
634 | "info": [
635 | {
636 | "snippets": "['profit declines 17 percent']",
637 | "target": "Berkshire Hathaway"
638 | }
639 | ]
640 | },
641 | "144_Bunzl": {
642 | "sentence": "Bunzl delivers small profit increase for 2014",
643 | "info": [
644 | {
645 | "snippets": "['delivers small profit increase for']",
646 | "target": "Bunzl"
647 | }
648 | ]
649 | },
650 | "1452_BP": {
651 | "sentence": "BP sees Q1 earnings slide as low oil prices take their toll",
652 | "info": [
653 | {
654 | "snippets": "['earnings slide as low oil prices take their toll']",
655 | "target": "BP"
656 | }
657 | ]
658 | },
659 | "1457_BP": {
660 | "sentence": "BP Reports $583 Million Loss in First Quarter",
661 | "info": [
662 | {
663 | "snippets": "['Reports $583 Million Loss in First Quarter']",
664 | "target": "BP"
665 | }
666 | ]
667 | },
668 | "1459_AB InBev": {
669 | "sentence": "AB InBev offers to sell some SABMiller brands",
670 | "info": [
671 | {
672 | "snippets": "['offers to sell some']",
673 | "target": "AB InBev"
674 | }
675 | ]
676 | },
677 | "1464_AstraZeneca": {
678 | "sentence": "AstraZeneca to cut costs but stays silent on M&A talk",
679 | "info": [
680 | {
681 | "snippets": "['to cut costs but stays silent on']",
682 | "target": "AstraZeneca"
683 | }
684 | ]
685 | },
686 | "1466_Barclays": {
687 | "sentence": "Barclays in Talks With AnaCap to Sell French Consumer Operations",
688 | "info": [
689 | {
690 | "snippets": "['to Sell French Consumer Operations']",
691 | "target": "Barclays"
692 | }
693 | ]
694 | },
695 | "1479_Kraft Heinz": {
696 | "sentence": "The Latest: Buffett says cuts will pay off at Kraft Heinz",
697 | "info": [
698 | {
699 | "snippets": "['Buffett says cuts will pay off at']",
700 | "target": "Kraft Heinz"
701 | }
702 | ]
703 | },
704 | "1483_Shoeders": {
705 | "sentence": "Schroders assets hit record in Q1, buoyed by institutional inflows",
706 | "info": [
707 | {
708 | "snippets": "['hit record in Q1, buoyed by']",
709 | "target": "Shoeders"
710 | }
711 | ]
712 | },
713 | "1489_Barclays": {
714 | "sentence": "Former Barclays traders stand trial in Libor case",
715 | "info": [
716 | {
717 | "snippets": "['stand trial in Libor case']",
718 | "target": "Barclays"
719 | }
720 | ]
721 | },
722 | "148_Standard Life": {
723 | "sentence": "Standard Life impresses as fee-based products offset annuities slump",
724 | "info": [
725 | {
726 | "snippets": "['impresses as fee-based products offset annuities slump']",
727 | "target": "Standard Life"
728 | }
729 | ]
730 | },
731 | "1494_Sky": {
732 | "sentence": "Britain's FTSE slips from 2016 high as Sky falls",
733 | "info": [
734 | {
735 | "snippets": "['slips from 2016 high']",
736 | "target": "Sky"
737 | }
738 | ]
739 | },
740 | "149_Reed Elsevier": {
741 | "sentence": "Reed Elsevier shares cool after profit dip",
742 | "info": [
743 | {
744 | "snippets": "['shares cool after profit dip']",
745 | "target": "Reed Elsevier"
746 | }
747 | ]
748 | },
749 | "1520_Lloyds": {
750 | "sentence": "Retail focus helps to shield Lloyds from banking chill",
751 | "info": [
752 | {
753 | "snippets": "['helps to shield Lloyds from banking chill']",
754 | "target": "Lloyds"
755 | }
756 | ]
757 | },
758 | "1538_Centrica": {
759 | "sentence": "CompaniesCentrica shares drop 7% amid capital raise",
760 | "info": [
761 | {
762 | "snippets": "['shares drop 7% amid capital raise']",
763 | "target": "Centrica"
764 | }
765 | ]
766 | },
767 | "1539_United Utilities": {
768 | "sentence": "United Utilities FY profit up 3.5%; to boost capex",
769 | "info": [
770 | {
771 | "snippets": "['profit up 3.5%']",
772 | "target": "United Utilities"
773 | }
774 | ]
775 | },
776 | "1542_Compass": {
777 | "sentence": "CompaniesCompass serves up half year profit rise",
778 | "info": [
779 | {
780 | "snippets": "['serves up half year profit rise']",
781 | "target": "Compass"
782 | }
783 | ]
784 | },
785 | "1547_SABMiller": {
786 | "sentence": "Currency causes full-year headaches for SABMiller",
787 | "info": [
788 | {
789 | "snippets": "[' causes full-year headaches for']",
790 | "target": "SABMiller"
791 | }
792 | ]
793 | },
794 | "1572_Exxon": {
795 | "sentence": "Exxon Beaumont CDU overhaul to be slowed by accident: sources",
796 | "info": [
797 | {
798 | "snippets": "['overhaul to be slowed by accident:']",
799 | "target": "Exxon"
800 | }
801 | ]
802 | },
803 | "1574_G4S": {
804 | "sentence": "CompaniesG4S claims 'positive' start to the year",
805 | "info": [
806 | {
807 | "snippets": "[\"claims 'positive' start to the year\"]",
808 | "target": "G4S"
809 | }
810 | ]
811 | },
812 | "1594_Rio Tinto": {
813 | "sentence": "Rio Tinto announces long-delayed expansion of Mongolia mine",
814 | "info": [
815 | {
816 | "snippets": "['announces long-delayed expansion of Mongolia mine']",
817 | "target": "Rio Tinto"
818 | }
819 | ]
820 | },
821 | "1603_Apple": {
822 | "sentence": "Warren Buffett's Berkshire Hathaway buys stake in Apple",
823 | "info": [
824 | {
825 | "snippets": "['buys stake in']",
826 | "target": "Apple"
827 | }
828 | ]
829 | },
830 | "1614_Royal Mail": {
831 | "sentence": "Ofcom says will not impose new price controls on Royal Mail",
832 | "info": [
833 | {
834 | "snippets": "['will not impose new price controls on']",
835 | "target": "Royal Mail"
836 | }
837 | ]
838 | }
839 | }
--------------------------------------------------------------------------------
/dataset/task1_headline_ABSA_train.json:
--------------------------------------------------------------------------------
1 | {
2 | "1": {
3 | "sentence": "Royal Mail chairman Donald Brydon set to step down",
4 | "info": [
5 | {
6 | "snippets": "['set to step down']",
7 | "target": "Royal Mail",
8 | "sentiment_score": "-0.374",
9 | "aspects": "['Corporate/Appointment']"
10 | }
11 | ]
12 | },
13 | "7": {
14 | "sentence": "Stakes High for AstraZeneca Heart Drug Facing Tough Competition",
15 | "info": [
16 | {
17 | "snippets": "['Facing Tough Competition']",
18 | "target": "AstraZeneca",
19 | "sentiment_score": "-0.24",
20 | "aspects": "['Corporate/Risks']"
21 | }
22 | ]
23 | },
24 | "8": {
25 | "sentence": "UPDATE 1-Dairy Crest loses a third of Morrisons milk contract",
26 | "info": [
27 | {
28 | "snippets": "['Crest loses a third of Morrisons milk contract']",
29 | "target": "Morrisons",
30 | "sentiment_score": "-0.161",
31 | "aspects": "['Corporate/Sales/Failed Contract Discussion']"
32 | }
33 | ]
34 | },
35 | "22": {
36 | "sentence": "Insight hires Aviva's David Hillier for multi-asset team",
37 | "info": [
38 | {
39 | "snippets": "['hires Aviva's David Hillier for multi-asset team']",
40 | "target": "Insight",
41 | "sentiment_score": "0.137",
42 | "aspects": "['Corporate/Appointment/Executive Appointment']"
43 | }
44 | ]
45 | },
46 | "30": {
47 | "sentence": "Primark racks up a happy Christmas after strong sales",
48 | "info": [
49 | {
50 | "snippets": "['after strong sales']",
51 | "target": "Primark",
52 | "sentiment_score": "0.704",
53 | "aspects": "['Corporate/Sales']"
54 | }
55 | ]
56 | },
57 | "31": {
58 | "sentence": "UPDATE 1-Pearson expects to grow this year after solid end to 2014",
59 | "info": [
60 | {
61 | "snippets": "['to grow this year after solid end to 2014']",
62 | "target": "Pearson",
63 | "sentiment_score": "0.446",
64 | "aspects": "['Stock/Fundamentals']"
65 | }
66 | ]
67 | },
68 | "32": {
69 | "sentence": "Tesco sells Blinkbox and broadband service to TalkTalk",
70 | "info": [
71 | {
72 | "snippets": "['sells Blinkbox and broadband service to']",
73 | "target": "TalkTalk",
74 | "sentiment_score": "0.136",
75 | "aspects": "['Corporate/Sales/Deal']"
76 | },
77 | {
78 | "snippets": "['sells Blinkbox and broadband service to']",
79 | "target": "Tesco",
80 | "sentiment_score": "0.192",
81 | "aspects": "['Corporate/Sales/Deal']"
82 | }
83 | ]
84 | },
85 | "36": {
86 | "sentence": "Unilever profit rises despite sales slump in China",
87 | "info": [
88 | {
89 | "snippets": "['despite sales slump']",
90 | "target": "Unilever",
91 | "sentiment_score": "0.213",
92 | "aspects": "['Corporate/Sales']"
93 | }
94 | ]
95 | },
96 | "38": {
97 | "sentence": "Tesco leads leap in FTSE 100; Marks & Spencer drops",
98 | "info": [
99 | {
100 | "snippets": "['Tesco leads leap in FTSE 100; ']",
101 | "target": "Tesco",
102 | "sentiment_score": "0.389",
103 | "aspects": "['Stock/Technical Analysis/Trend/Trending up']"
104 | }
105 | ]
106 | },
107 | "40": {
108 | "sentence": "Royal Dutch Shell profit rises; dividend up 4%",
109 | "info": [
110 | {
111 | "snippets": "['dividend up 4%']",
112 | "target": "Royal Dutch Shell",
113 | "sentiment_score": "0.65",
114 | "aspects": "['Corporate/Dividend Policy']"
115 | }
116 | ]
117 | },
118 | "47": {
119 | "sentence": "Morning Agenda: Shire's Deal for NPS",
120 | "info": [
121 | {
122 | "snippets": "['Shire's Deal for NPS']",
123 | "target": "Shire",
124 | "sentiment_score": "0.195",
125 | "aspects": "['Corporate/Sales/Deal']"
126 | }
127 | ]
128 | },
129 | "48": {
130 | "sentence": "Carnival Corporation and China Merchants Group Sign Memo of Understanding ...",
131 | "info": [
132 | {
133 | "snippets": "['Group Sign Memo of Understanding ..']",
134 | "target": "China Merchants Group",
135 | "sentiment_score": "0.119",
136 | "aspects": "['Corporate/Strategy/Company Agreement']"
137 | }
138 | ]
139 | },
140 | "49": {
141 | "sentence": "Teva: FDA Approves Generic Version of AstraZeneca Heartburn Drug",
142 | "info": [
143 | {
144 | "snippets": "['FDA Approves']",
145 | "target": "AstraZeneca",
146 | "sentiment_score": "0.242",
147 | "aspects": "['Corporate/Regulatory']"
148 | },
149 | {
150 | "snippets": "['FDA Approves Generic Versio']",
151 | "target": "Teva",
152 | "sentiment_score": "0.476",
153 | "aspects": "['Corporate/Regulatory']"
154 | }
155 | ]
156 | },
157 | "52": {
158 | "sentence": "Passengers rise at EasyJet and Aer Lingus",
159 | "info": [
160 | {
161 | "snippets": "['rise at EasyJet and Aer Lingus']",
162 | "target": "EasyJet",
163 | "sentiment_score": "0.329",
164 | "aspects": "['Corporate/Sales/Sales']"
165 | }
166 | ]
167 | },
168 | "55": {
169 | "sentence": "Tesco Abandons Video-Streaming Ambitions in Blinkbox Sale",
170 | "info": [
171 | {
172 | "snippets": "['Video-Streaming Ambitions']",
173 | "target": "Blinkbox",
174 | "sentiment_score": "-0.195",
175 | "aspects": "['Corporate/Strategy']"
176 | },
177 | {
178 | "snippets": "['Tesco Abandons Video-Streaming Ambitions ']",
179 | "target": "Tesco",
180 | "sentiment_score": "-0.335",
181 | "aspects": "['Corporate/Strategy']"
182 | }
183 | ]
184 | },
185 | "56": {
186 | "sentence": "FDA approves NPS drug, in move validating Shire takeover deal",
187 | "info": [
188 | {
189 | "snippets": "['validating Shire takeover deal']",
190 | "target": "Shire",
191 | "sentiment_score": "0.332",
192 | "aspects": "['Corporate/M&A/Proposed Merger']"
193 | }
194 | ]
195 | },
196 | "60": {
197 | "sentence": "Ocwen Reaches Settlement With California Regulator",
198 | "info": [
199 | {
200 | "snippets": "['Settlement With California Regulator']",
201 | "target": "Ocwen",
202 | "sentiment_score": "0.171",
203 | "aspects": "['Corporate/Legal/Settlement']"
204 | }
205 | ]
206 | },
207 | "67": {
208 | "sentence": "Morrisons faces festive sales test",
209 | "info": [
210 | {
211 | "snippets": "['festive sales test']",
212 | "target": "Morrisons",
213 | "sentiment_score": "-0.113",
214 | "aspects": "['Corporate/Sales']"
215 | }
216 | ]
217 | },
218 | "69": {
219 | "sentence": "Tesco share price dips as Blinkbox Books closes ending supermarket's digital ...",
220 | "info": [
221 | {
222 | "snippets": "['share price dips']",
223 | "target": "Blinkbox",
224 | "sentiment_score": "-0.357",
225 | "aspects": "['Stock/Price Action']"
226 | },
227 | {
228 | "snippets": "['Tesco share price dips']",
229 | "target": "Tesco",
230 | "sentiment_score": "-0.389",
231 | "aspects": "['Stock/Price Action/Volatility']"
232 | }
233 | ]
234 | },
235 | "70": {
236 | "sentence": "Shire to buy NPS for $5.2 billion to boost rare disease drugs",
237 | "info": [
238 | {
239 | "snippets": "['Shire to buy NPS for $5.2 billion to boost rare disease drugs']",
240 | "target": "Shire",
241 | "sentiment_score": "0.235",
242 | "aspects": "['Corporate/M&A/M&A']"
243 | }
244 | ]
245 | },
246 | "76": {
247 | "sentence": "AstraZeneca's MedImmune Inks Licensing Deal With Omnis Pharmaceuticals",
248 | "info": [
249 | {
250 | "snippets": "['Licensing Deal With Omnis Pharmaceuticals']",
251 | "target": "Omnis Pharmaceuticals",
252 | "sentiment_score": "0.295",
253 | "aspects": "['Corporate/Sales/Deal']"
254 | }
255 | ]
256 | },
257 | "78": {
258 | "sentence": "FDA approves Shire's Vyvanse for binge-eating disorder",
259 | "info": [
260 | {
261 | "snippets": "['FDA approves Shire's Vyvanse']",
262 | "target": "Shire",
263 | "sentiment_score": "0.291",
264 | "aspects": "['Corporate/Regulatory']"
265 | }
266 | ]
267 | },
268 | "82": {
269 | "sentence": "Companies Thetrainline.com announces arrival of London IPO",
270 | "info": [
271 | {
272 | "snippets": "['announces arrival of London IPO']",
273 | "target": "Thetrainline.com",
274 | "sentiment_score": "0.245",
275 | "aspects": "['Stock/IPO']"
276 | }
277 | ]
278 | },
279 | "87": {
280 | "sentence": "Breakingviews: IAG can pay more for Aer Lingus",
281 | "info": [
282 | {
283 | "snippets": "['IAG can pay more for Aer Lingus']",
284 | "target": "IAG",
285 | "sentiment_score": "0.12",
286 | "aspects": "['Corporate/M&A/M&A']"
287 | }
288 | ]
289 | },
290 | "88": {
291 | "sentence": "Tesco share price jumps as Q3 sales top estimates",
292 | "info": [
293 | {
294 | "snippets": "['share price jumps']",
295 | "target": "Tesco",
296 | "sentiment_score": "0.719",
297 | "aspects": "['Stock/Price Action']"
298 | }
299 | ]
300 | },
301 | "90": {
302 | "sentence": "CRH's concrete bid for Holcim Lafarge assets",
303 | "info": [
304 | {
305 | "snippets": "['concrete bid for Holcim Lafarge assets']",
306 | "target": "Holcim Lafarge",
307 | "sentiment_score": "0.282",
308 | "aspects": "['Stock/Signal/Buy Signal']"
309 | }
310 | ]
311 | },
312 | "94": {
313 | "sentence": "Persimmon share price climbs on 23% rise in full-year revenue",
314 | "info": [
315 | {
316 | "snippets": "['share price climbs on 23% rise']",
317 | "target": "Persimmon",
318 | "sentiment_score": "0.975",
319 | "aspects": "['Stock/Price Action']"
320 | }
321 | ]
322 | },
323 | "96": {
324 | "sentence": "Ruling sets lower limit on potential fine for BP",
325 | "info": [
326 | {
327 | "snippets": "['lower limit on potential fine for BP']",
328 | "target": "BP",
329 | "sentiment_score": "-0.261",
330 | "aspects": "['Corporate/Legal']"
331 | }
332 | ]
333 | },
334 | "98": {
335 | "sentence": "Reed Elsevier share price slides on underwhelming full-year results",
336 | "info": [
337 | {
338 | "snippets": "['share price slides']",
339 | "target": "Reed Elsevier",
340 | "sentiment_score": "-0.526",
341 | "aspects": "['Stock/Price Action']"
342 | }
343 | ]
344 | },
345 | "99": {
346 | "sentence": "UPDATE 1-Meggitt reiterates annual outlook after tough 2014",
347 | "info": [
348 | {
349 | "snippets": "['reiterates annual outlook after tough 2014']",
350 | "target": "Meggitt",
351 | "sentiment_score": "0.021",
352 | "aspects": "['Stock/Fundamentals']"
353 | }
354 | ]
355 | },
356 | "100": {
357 | "sentence": "Slump in Weir leads FTSE down from record high",
358 | "info": [
359 | {
360 | "snippets": "['down from record high']",
361 | "target": "Weir",
362 | "sentiment_score": "-0.827",
363 | "aspects": "['Market/Volatility/Volatility']"
364 | }
365 | ]
366 | },
367 | "105": {
368 | "sentence": "Bunzl Lifts Dividend Again As Acquisitions Continue To Boost Profits",
369 | "info": [
370 | {
371 | "snippets": "['Lifts Dividend Again As Acquisitions Continue To Boost Profit']",
372 | "target": "Bunzl",
373 | "sentiment_score": "0.401",
374 | "aspects": "['Corporate/Dividend Policy/Dividend/Dividend going up']"
375 | }
376 | ]
377 | },
378 | "107": {
379 | "sentence": "REFILE-UPDATE 4-Britain's Lloyds to pay first dividend since rescue",
380 | "info": [
381 | {
382 | "snippets": "['to pay first dividend since rescue']",
383 | "target": "Lloyds",
384 | "sentiment_score": "0.522",
385 | "aspects": "['Corporate/Dividend Policy/Dividend']"
386 | }
387 | ]
388 | },
389 | "115": {
390 | "sentence": "GlaxoSmithKline set to complete $20 billion Novartis asset swap next week",
391 | "info": [
392 | {
393 | "snippets": "['set to complete $20 billion Novartis asset swap next week']",
394 | "target": "Novartis",
395 | "sentiment_score": "0.189",
396 | "aspects": "['Corporate/M&A']"
397 | }
398 | ]
399 | },
400 | "116": {
401 | "sentence": "Meggitt share price tumbles as profit falls in 'challenging year'",
402 | "info": [
403 | {
404 | "snippets": "['tumbles as profit falls in 'challenging year'']",
405 | "target": "Meggitt",
406 | "sentiment_score": "-0.854",
407 | "aspects": "['Stock/Price Action']"
408 | }
409 | ]
410 | },
411 | "123": {
412 | "sentence": "Analyst Views: Astrazeneca shares have seen recent volatility; what will 2015 ...",
413 | "info": [
414 | {
415 | "snippets": "['shares have seen recent volatility']",
416 | "target": "Astrazeneca",
417 | "sentiment_score": "-0.12",
418 | "aspects": "['Market/Volatility']"
419 | }
420 | ]
421 | },
422 | "127": {
423 | "sentence": "ARM Royalties Accelerate as Smartphone Market Regains Strength",
424 | "info": [
425 | {
426 | "snippets": "['Smartphone Market Regains Strength']",
427 | "target": "ARM",
428 | "sentiment_score": "0.571",
429 | "aspects": "['Market/Market']"
430 | }
431 | ]
432 | },
433 | "128": {
434 | "sentence": "ConAgra Names Former Hillshire Farms CEO Connolly to Top Post",
435 | "info": [
436 | {
437 | "snippets": "['Farms CEO Connolly to Top Pos']",
438 | "target": "ConAgra",
439 | "sentiment_score": "0.101",
440 | "aspects": "['Corporate/Appointment']"
441 | }
442 | ]
443 | },
444 | "129": {
445 | "sentence": "BG Group appoints new CEO one month early",
446 | "info": [
447 | {
448 | "snippets": "['appoints new CEO']",
449 | "target": "BG Group",
450 | "sentiment_score": "0.069",
451 | "aspects": "['Corporate/Appointment']"
452 | }
453 | ]
454 | },
455 | "132": {
456 | "sentence": "Glencore Cuts 2015 Budget, Plans To Divest From Lonmin",
457 | "info": [
458 | {
459 | "snippets": "['Cuts 2015 Budget, Plans To Divest From Lonmin']",
460 | "target": "Lonmin",
461 | "sentiment_score": "-0.314",
462 | "aspects": "['Corporate/Strategy/Divestment']"
463 | }
464 | ]
465 | },
466 | "135": {
467 | "sentence": "U.S. Debt Lures Schroders as ECB Depresses Rates",
468 | "info": [
469 | {
470 | "snippets": "['as ECB Depresses Rates']",
471 | "target": "Schroders",
472 | "sentiment_score": "0.048",
473 | "aspects": "['Economy/Central Banks']"
474 | }
475 | ]
476 | },
477 | "138": {
478 | "sentence": "Tullow Oil Suspends Dividend Amid Oil Price Fall",
479 | "info": [
480 | {
481 | "snippets": "['Suspends Dividend']",
482 | "target": "Tullow Oil",
483 | "sentiment_score": "-0.498",
484 | "aspects": "['Corporate/Dividend Policy']"
485 | }
486 | ]
487 | },
488 | "142": {
489 | "sentence": "Oil majors like Royal Dutch Shell, Chevron, BP fail to find reserves to counter ...",
490 | "info": [
491 | {
492 | "snippets": "['fail to find reserves']",
493 | "target": "Royal Dutch Shell",
494 | "sentiment_score": "-0.402",
495 | "aspects": "['Corporate/Risks']"
496 | }
497 | ]
498 | },
499 | "153": {
500 | "sentence": "Standard Chartered lags on capital worries",
501 | "info": [
502 | {
503 | "snippets": "['lags on capital worries']",
504 | "target": "Standard Chartered",
505 | "sentiment_score": "-0.358",
506 | "aspects": "['Corporate/Risks']"
507 | }
508 | ]
509 | },
510 | "156": {
511 | "sentence": "Standard Life share price: Insurer buys advice firm Pearson Jones",
512 | "info": [
513 | {
514 | "snippets": "['Insurer buys advice firm Pearson Jones']",
515 | "target": "Standard Life",
516 | "sentiment_score": "0.364",
517 | "aspects": "['Corporate/Strategy/Corporate Planning']"
518 | }
519 | ]
520 | },
521 | "158": {
522 | "sentence": "Tesco closes in on new chairman with Dixons Carphone's John Allan in the frame",
523 | "info": [
524 | {
525 | "snippets": "['closes in on new chairman']",
526 | "target": "Dixons Carphone",
527 | "sentiment_score": "0.129",
528 | "aspects": "['Corporate/Appointment']"
529 | },
530 | {
531 | "snippets": "['new chairman with Dixons Carphone's']",
532 | "target": "Tesco",
533 | "sentiment_score": "0.295",
534 | "aspects": "['Corporate/Appointment/Staff Hiring']"
535 | }
536 | ]
537 | },
538 | "159": {
539 | "sentence": "MillerCoors Delivers 2.9% Underlying Net Income Growth for 2014",
540 | "info": [
541 | {
542 | "snippets": "['Delivers 2.9% Underlying Net Income Growth']",
543 | "target": "MillerCoors",
544 | "sentiment_score": "0.495",
545 | "aspects": "['Stock/Fundamentals']"
546 | }
547 | ]
548 | },
549 | "165": {
550 | "sentence": "RBS will reportedly appoint Howard Davies as its next chairman",
551 | "info": [
552 | {
553 | "snippets": "['reportedly appoint Howard Davies as its next chairman']",
554 | "target": "RBS",
555 | "sentiment_score": "0.089",
556 | "aspects": "['Corporate/Appointment']"
557 | }
558 | ]
559 | },
560 | "168": {
561 | "sentence": "HSBC Hit by Fresh Details of Tax Evasion Claims",
562 | "info": [
563 | {
564 | "snippets": "['Tax Evasion Claims']",
565 | "target": "HSBC",
566 | "sentiment_score": "-0.594",
567 | "aspects": "['Corporate/Legal']"
568 | }
569 | ]
570 | },
571 | "171": {
572 | "sentence": "Relief for Lewis as Tesco sees sales grow for first time in a year",
573 | "info": [
574 | {
575 | "snippets": "['sees sales grow']",
576 | "target": "Tesco",
577 | "sentiment_score": "0.42",
578 | "aspects": "['Corporate/Sales']"
579 | }
580 | ]
581 | },
582 | "176": {
583 | "sentence": "Morrisons finance chief to fill gap as CEO leaves early",
584 | "info": [
585 | {
586 | "snippets": "['fill gap as CEO leaves']",
587 | "target": "Morrisons",
588 | "sentiment_score": "-0.114",
589 | "aspects": "['Corporate/Appointment']"
590 | }
591 | ]
592 | },
593 | "178": {
594 | "sentence": "UPDATE: Persimmon Profit Up Strongly, Outlook Positive",
595 | "info": [
596 | {
597 | "snippets": "['Profit Up Strongly, Outlook Positive']",
598 | "target": "Persimmon",
599 | "sentiment_score": "0.937",
600 | "aspects": "['Stock/Fundamentals']"
601 | }
602 | ]
603 | },
604 | "182": {
605 | "sentence": "TRLPC - CRH backs Lafarge Holcim asset buy with 6.5 bln euro bridge loan",
606 | "info": [
607 | {
608 | "snippets": "['CRH backs Lafarge Holcim asset buy']",
609 | "target": "Lafarge Holcim",
610 | "sentiment_score": "0.365",
611 | "aspects": "['Corporate/Strategy/Share Buyback']"
612 | }
613 | ]
614 | },
615 | "183": {
616 | "sentence": "Tesco shareholders back ITV head for chairman",
617 | "info": [
618 | {
619 | "snippets": "[' shareholders back ITV head for chairman']",
620 | "target": "Tesco",
621 | "sentiment_score": "0.139",
622 | "aspects": "['Corporate/Appointment/Executive Appointment']"
623 | }
624 | ]
625 | },
626 | "184": {
627 | "sentence": "Buffett's Berkshire builds Deere stake, dumps Exxon",
628 | "info": [
629 | {
630 | "snippets": "['builds Deere stake ']",
631 | "target": "Deere",
632 | "sentiment_score": "0.316",
633 | "aspects": "['Stock/Signal/Buy Signal']"
634 | },
635 | {
636 | "snippets": "['builds Deere stake, ']",
637 | "target": "Exxon",
638 | "sentiment_score": "-0.548",
639 | "aspects": "['Stock/Signal/Buy Signal']"
640 | }
641 | ]
642 | },
643 | "185": {
644 | "sentence": "Aviva Fined $27 Million by U.K. Regulator Over Fee Failings",
645 | "info": [
646 | {
647 | "snippets": "['Fined $27 Million by U.K. Regulator Over Fee Failings']",
648 | "target": "Aviva",
649 | "sentiment_score": "-0.675",
650 | "aspects": "['Corporate/Regulatory']"
651 | }
652 | ]
653 | },
654 | "186": {
655 | "sentence": "AstraZeneca's patent on asthma drug invalidated by US court",
656 | "info": [
657 | {
658 | "snippets": "['invalidated by US court']",
659 | "target": "AstraZeneca",
660 | "sentiment_score": "-0.656",
661 | "aspects": "['Corporate/Legal']"
662 | }
663 | ]
664 | },
665 | "187": {
666 | "sentence": "Rolls-Royce to Ensure Compliance After Petrobras Bribery Report",
667 | "info": [
668 | {
669 | "snippets": "['to Ensure Compliance After Petrobras Bribery Report']",
670 | "target": "Rolls-Royce",
671 | "sentiment_score": "-0.075",
672 | "aspects": "['Corporate/Legal/Court Ruling']"
673 | }
674 | ]
675 | },
676 | "188": {
677 | "sentence": "Whitbread share price climbs on Q4 sales growth",
678 | "info": [
679 | {
680 | "snippets": "['share price climbs']",
681 | "target": "Whitbread",
682 | "sentiment_score": "0.513",
683 | "aspects": "['Stock/Price Action']"
684 | }
685 | ]
686 | },
687 | "190": {
688 | "sentence": "Warren Buffett defends Berkshire Hathaway's conglomerate structure",
689 | "info": [
690 | {
691 | "snippets": "['defends Berkshire Hathaway's conglomerate structure']",
692 | "target": "Berkshire Hathaway",
693 | "sentiment_score": "0.144",
694 | "aspects": "['Corporate/Company Communication']"
695 | }
696 | ]
697 | },
698 | "199": {
699 | "sentence": "G4S sees profits rise but UK contract problems remain",
700 | "info": [
701 | {
702 | "snippets": "['contract problems remain']",
703 | "target": "G4S",
704 | "sentiment_score": "0.252",
705 | "aspects": "['Corporate/Risks']"
706 | }
707 | ]
708 | },
709 | "206": {
710 | "sentence": "Friends Life lifts profits 38% and hikes divi ahead of proposed Aviva takeover",
711 | "info": [
712 | {
713 | "snippets": "['lifts profits 38%']",
714 | "target": "Friends Life",
715 | "sentiment_score": "0.387",
716 | "aspects": "['Corporate/Financial/Financial Results/Earnings']"
717 | }
718 | ]
719 | },
720 | "212": {
721 | "sentence": "Auto Trader share price surges as company floats on LSE",
722 | "info": [
723 | {
724 | "snippets": "['share price surges']",
725 | "target": "Auto Trader",
726 | "sentiment_score": "0.655",
727 | "aspects": "['Stock/Price Action']"
728 | }
729 | ]
730 | },
731 | "214": {
732 | "sentence": "New Credit Suisse boss faces stiff challenge in Asia",
733 | "info": [
734 | {
735 | "snippets": "['boss faces stiff challenge']",
736 | "target": "Credit Suisse",
737 | "sentiment_score": "-0.181",
738 | "aspects": "['Corporate/Risks']"
739 | }
740 | ]
741 | },
742 | "218": {
743 | "sentence": "UPDATE: EasyJet Passenger Numbers, Aer Lingus Traffic Up In February",
744 | "info": [
745 | {
746 | "snippets": "['Traffic Up']",
747 | "target": "Aer Lingus",
748 | "sentiment_score": "0.284",
749 | "aspects": "['Corporate/Sales']"
750 | },
751 | {
752 | "snippets": "['Passenger Numbers, Aer Lingus Traffic Up']",
753 | "target": "EasyJet",
754 | "sentiment_score": "0.315",
755 | "aspects": "['Corporate/Sales']"
756 | }
757 | ]
758 | },
759 | "219": {
760 | "sentence": "Is It Worth Investing In Tesco PLC And Prudential plc Now?",
761 | "info": [
762 | {
763 | "snippets": "['Investing In Tesco PLC And Prudential plc Now?']",
764 | "target": "Tesco PLC",
765 | "sentiment_score": "0.161",
766 | "aspects": "['Corporate/Strategy/Investment']"
767 | }
768 | ]
769 | },
770 | "225": {
771 | "sentence": "UK WINNERS & LOSERS: Aviva And Friends Life Lead FTSE 100 Gainers",
772 | "info": [
773 | {
774 | "snippets": "['FTSE 100 Gainers']",
775 | "target": "Friends Life",
776 | "sentiment_score": "0.516",
777 | "aspects": "['Market/Market/Market Trend']"
778 | }
779 | ]
780 | },
781 | "234": {
782 | "sentence": "Sainsbury's says to outperform rivals in tough market",
783 | "info": [
784 | {
785 | "snippets": "['in tough market']",
786 | "target": "Sainsbury",
787 | "sentiment_score": "0.536",
788 | "aspects": "['Market/Market']"
789 | }
790 | ]
791 | },
792 | "239": {
793 | "sentence": "CompaniesKingfisher bid for Mr Bricolage runs into trouble",
794 | "info": [
795 | {
796 | "snippets": "['bid for Mr Bricolage runs into trouble']",
797 | "target": "Mr Bricolage",
798 | "sentiment_score": "-0.253",
799 | "aspects": "['Corporate/M&A/Proposed Merger']"
800 | }
801 | ]
802 | },
803 | "240": {
804 | "sentence": "UPDATE 3-Auto Trader shares leap in UK's biggest private equity-backed listing",
805 | "info": [
806 | {
807 | "snippets": "['shares leap in UK's biggest private equity-backed listing']",
808 | "target": "Auto Trader",
809 | "sentiment_score": "0.641",
810 | "aspects": "['Stock/IPO']"
811 | }
812 | ]
813 | },
814 | "241": {
815 | "sentence": "London open: Taylor Wimpey and Ashtead drive markets higher, Barclays falls",
816 | "info": [
817 | {
818 | "snippets": "['drive markets higher']",
819 | "target": "Ashtead",
820 | "sentiment_score": "0.514",
821 | "aspects": "['Market/Market']"
822 | },
823 | {
824 | "snippets": "['Taylor Wimpey and Ashtead drive markets higher']",
825 | "target": "Barclays",
826 | "sentiment_score": "-0.657",
827 | "aspects": "['Market/Market/Market Trend']"
828 | },
829 | {
830 | "snippets": "['Taylor Wimpey and Ashtead drive markets higher']",
831 | "target": "Tailor Wimpey",
832 | "sentiment_score": "0.508",
833 | "aspects": "['Market/Market/Market Trend']"
834 | }
835 | ]
836 | },
837 | "242": {
838 | "sentence": "GSK and Novartis complete deals to reshape both drugmakers",
839 | "info": [
840 | {
841 | "snippets": "['complete deals to reshape both drugmakers']",
842 | "target": "Novartis",
843 | "sentiment_score": "0.264",
844 | "aspects": "['Corporate/Strategy/Reorganization']"
845 | }
846 | ]
847 | },
848 | "244": {
849 | "sentence": "Aviva, Friends Life top forecasts ahead of 5.6 billion pound merger",
850 | "info": [
851 | {
852 | "snippets": "['Life top forecasts ahead of 5.6 billion pound merger']",
853 | "target": "Friends Life",
854 | "sentiment_score": "0.39",
855 | "aspects": "['Corporate/M&A/M&A']"
856 | }
857 | ]
858 | },
859 | "246": {
860 | "sentence": "Citigroup to Sell OneMain to Springleaf for $4.25 Billion",
861 | "info": [
862 | {
863 | "snippets": "['to Sell OneMain to Springleaf for $4.25 Billion']",
864 | "target": "OneMain",
865 | "sentiment_score": "0.283",
866 | "aspects": "['Corporate/M&A/M&A']"
867 | },
868 | {
869 | "snippets": "['to Sell OneMain to Springleaf for $4.25 Billion']",
870 | "target": "Springleaf",
871 | "sentiment_score": "0.225",
872 | "aspects": "['Corporate/M&A/M&A']"
873 | }
874 | ]
875 | },
876 | "247": {
877 | "sentence": "U.K. Stocks Resume Gains to Rally to Record; CRH, Tullow Climb",
878 | "info": [
879 | {
880 | "snippets": "['U.K. Stocks Resume Gains to Rally to Record;']",
881 | "target": "Tullow",
882 | "sentiment_score": "0.544",
883 | "aspects": "['Stock/Price Action/Bullish/Bullish Behaviour']"
884 | }
885 | ]
886 | },
887 | "248": {
888 | "sentence": "British American Tobacco drops and sues PwC over pollution scandal",
889 | "info": [
890 | {
891 | "snippets": "['British American Tobacco drops']",
892 | "target": "PwC",
893 | "sentiment_score": "-0.437",
894 | "aspects": "['Stock/Price Action/Bearish/Bearish Behaviour']"
895 | }
896 | ]
897 | },
898 | "252": {
899 | "sentence": "UK's FTSE has worst day so far in 2015 as BG and Prudential fall",
900 | "info": [
901 | {
902 | "snippets": "['UK's FTSE has worst day so far in 201']",
903 | "target": "Prudential",
904 | "sentiment_score": "-0.651",
905 | "aspects": "['Market/Market/Market Trend']"
906 | }
907 | ]
908 | },
909 | "253": {
910 | "sentence": "Kraft, Cadbury's and Britvic in Total Recall: how pulling a product affects profit",
911 | "info": [
912 | {
913 | "snippets": "['in Total Recall: how pulling a product affects profit']",
914 | "target": "Cadbury's",
915 | "sentiment_score": "-0.158",
916 | "aspects": "['Corporate/Rumors/Scoop']"
917 | },
918 | {
919 | "snippets": "['in Total Recall: how pulling a product affects profit']",
920 | "target": "Kraft",
921 | "sentiment_score": "-0.179",
922 | "aspects": "['Corporate/Rumors/Scoop']"
923 | }
924 | ]
925 | },
926 | "257": {
927 | "sentence": "How Kraft-Heinz Merger Came Together in Speedy 10 Weeks",
928 | "info": [
929 | {
930 | "snippets": "['Merger Came Together in Speedy 10 Weeks']",
931 | "target": "Kraft",
932 | "sentiment_score": "0.214",
933 | "aspects": "['Corporate/M&A/M&A']"
934 | }
935 | ]
936 | },
937 | "258": {
938 | "sentence": "AstraZeneca Teams With Daiichi Sankyo To Sell Movantik In US",
939 | "info": [
940 | {
941 | "snippets": "['Teams With Daiichi Sankyo To Sell Movantik In US']",
942 | "target": "Daiichi Sankyo",
943 | "sentiment_score": "0.364",
944 | "aspects": "['Corporate/Sales/Partnership']"
945 | },
946 | {
947 | "snippets": "['Teams With Daiichi Sankyo To Sell Movantik In US']",
948 | "target": "Movantik",
949 | "sentiment_score": "0.369",
950 | "aspects": "['Corporate/Sales/Partnership']"
951 | }
952 | ]
953 | },
954 | "263": {
955 | "sentence": "RBI surprises Street; Sensex pares gains after hitting mount 30k",
956 | "info": [
957 | {
958 | "snippets": "['Sensex pares gains']",
959 | "target": "Sensex",
960 | "sentiment_score": "-0.216",
961 | "aspects": "['Stock/Price Action']"
962 | }
963 | ]
964 | },
965 | "264": {
966 | "sentence": "Credit Suisse poaches Prudential's Thiam for Asian push",
967 | "info": [
968 | {
969 | "snippets": "['poaches Prudential's Thiam for Asian push']",
970 | "target": "Credit Suisse",
971 | "sentiment_score": "0.125",
972 | "aspects": "['Corporate/Strategy']"
973 | },
974 | {
975 | "snippets": "['poaches Prudential's Thiam for Asian push']",
976 | "target": "Prudential",
977 | "sentiment_score": "-0.031",
978 | "aspects": "['Corporate/Strategy']"
979 | }
980 | ]
981 | },
982 | "266": {
983 | "sentence": "Kingfisher takeover of Mr Bricolage could hit a brick wall",
984 | "info": [
985 | {
986 | "snippets": "['Kingfisher takeover of Mr Bricolage could hit a brick wall']",
987 | "target": "Mr Bricolage",
988 | "sentiment_score": "-0.311",
989 | "aspects": "['Corporate/M&A/Proposed Merger']"
990 | }
991 | ]
992 | },
993 | "270": {
994 | "sentence": "U.K. Stocks Little Changed Near Record as Barclays, Shell Fall",
995 | "info": [
996 | {
997 | "snippets": "['Barclays, Shell Fall']",
998 | "target": "Shell",
999 | "sentiment_score": "-0.508",
1000 | "aspects": "['Stock/Price Action/Bearish/Bearish Behaviour']"
1001 | }
1002 | ]
1003 | },
1004 | "274": {
1005 | "sentence": "Insurers: Admiral blows hot and cold but Aviva soars pre-Friends Life merger",
1006 | "info": [
1007 | {
1008 | "snippets": "['Admiral blows hot and cold']",
1009 | "target": "Friends Life",
1010 | "sentiment_score": "0.053",
1011 | "aspects": "['Stock/Price Action/Volatility/Stock Volatility']"
1012 | }
1013 | ]
1014 | },
1015 | "275": {
1016 | "sentence": "AstraZeneca And Daiichi Sankyo To Jointly Commercialise MOVANTIK In The US",
1017 | "info": [
1018 | {
1019 | "snippets": "['AstraZeneca And Daiichi Sankyo To Jointly Commercialise MOVANTIK']",
1020 | "target": "Daiichi Sankyo",
1021 | "sentiment_score": "0.361",
1022 | "aspects": "['Corporate/Sales/Partnership']"
1023 | },
1024 | {
1025 | "snippets": "['AstraZeneca And Daiichi Sankyo To Jointly Commercialise MOVANTIK']",
1026 | "target": "MOVANTIK",
1027 | "sentiment_score": "0.454",
1028 | "aspects": "['Corporate/Sales/Partnership']"
1029 | }
1030 | ]
1031 | },
1032 | "279": {
1033 | "sentence": "Legal & General arm buys 50 pct stake in MediaCityUK in Manchester",
1034 | "info": [
1035 | {
1036 | "snippets": "['Legal & General arm buys 50 pct stake in MediaCityUK']",
1037 | "target": "MediaCityUK",
1038 | "sentiment_score": "0.379",
1039 | "aspects": "['Stock/Signal/Buy Signal']"
1040 | }
1041 | ]
1042 | },
1043 | "281": {
1044 | "sentence": "Randgold profit hit by poor gold price but dividend still increases",
1045 | "info": [
1046 | {
1047 | "snippets": "['dividend still increases']",
1048 | "target": "Rangold",
1049 | "sentiment_score": "-0.052",
1050 | "aspects": "['Corporate/Dividend Policy']"
1051 | }
1052 | ]
1053 | },
1054 | "290": {
1055 | "sentence": "CompaniesTravis Perkins lifts dividend, earnings rise 15%",
1056 | "info": [
1057 | {
1058 | "snippets": "['lifts dividend,']",
1059 | "target": "Travis Perkins",
1060 | "sentiment_score": "0.494",
1061 | "aspects": "['Corporate/Dividend Policy']"
1062 | }
1063 | ]
1064 | },
1065 | "293": {
1066 | "sentence": "Market Report: Aviva tops the market as traders approve of its choice of Friends",
1067 | "info": [
1068 | {
1069 | "snippets": "['Aviva tops the market']",
1070 | "target": "Friends",
1071 | "sentiment_score": "0.443",
1072 | "aspects": "['Market/Market/Market Trend']"
1073 | }
1074 | ]
1075 | },
1076 | "296": {
1077 | "sentence": "Insurer Old Mutual picks Standard Bank's Hemphill as new CEO",
1078 | "info": [
1079 | {
1080 | "snippets": "['picks Standard Bank's Hemphill as new CEO']",
1081 | "target": "Standard Bank",
1082 | "sentiment_score": "0.025",
1083 | "aspects": "['Corporate/Appointment/Executive Appointment']"
1084 | }
1085 | ]
1086 | },
1087 | "302": {
1088 | "sentence": "FDA panel backs safety updates for AstraZeneca, Takeda drugs",
1089 | "info": [
1090 | {
1091 | "snippets": "['backs safety updates for AstraZenec']",
1092 | "target": "AstraZeneca",
1093 | "sentiment_score": "0.143",
1094 | "aspects": "['Corporate/Regulatory']"
1095 | },
1096 | {
1097 | "snippets": "['FDA panel backs safety updates for AstraZeneca,']",
1098 | "target": "Takeda",
1099 | "sentiment_score": "-0.198",
1100 | "aspects": "['Corporate/Regulatory']"
1101 | }
1102 | ]
1103 | },
1104 | "304": {
1105 | "sentence": "CompaniesDiageo stays neutral on India boardroom turmoil",
1106 | "info": [
1107 | {
1108 | "snippets": "['India boardroom turmoil']",
1109 | "target": "Diageo",
1110 | "sentiment_score": "0",
1111 | "aspects": "['Corporate/Risks']"
1112 | }
1113 | ]
1114 | },
1115 | "315": {
1116 | "sentence": "Germanwings disaster will not affect image of budget air travel - easyJet",
1117 | "info": [
1118 | {
1119 | "snippets": "['will not affect image of']",
1120 | "target": "Germanwings",
1121 | "sentiment_score": "-0.046",
1122 | "aspects": "['Corporate/Reputation']"
1123 | },
1124 | {
1125 | "snippets": "['will not affect image of budget air trave']",
1126 | "target": "easyJet",
1127 | "sentiment_score": "0.096",
1128 | "aspects": "['Corporate/Reputation']"
1129 | }
1130 | ]
1131 | },
1132 | "318": {
1133 | "sentence": "Shell's $70 Billion BG Deal Meets Shareholder Skepticism",
1134 | "info": [
1135 | {
1136 | "snippets": "['Deal Meets Shareholder Skepticism']",
1137 | "target": "Shell",
1138 | "sentiment_score": "-0.345",
1139 | "aspects": "['Corporate/Rumors/Rumors']"
1140 | }
1141 | ]
1142 | },
1143 | "321": {
1144 | "sentence": "Shell offers 50 percent premium to buy BG for $70 billion",
1145 | "info": [
1146 | {
1147 | "snippets": "['offers 50 percent premium to buy']",
1148 | "target": "Shell",
1149 | "sentiment_score": "0.193",
1150 | "aspects": "['Corporate/M&A/M&A']"
1151 | }
1152 | ]
1153 | },
1154 | "324": {
1155 | "sentence": "WPP boosts sales despite cautious clients",
1156 | "info": [
1157 | {
1158 | "snippets": "['boosts sales']",
1159 | "target": "WPP",
1160 | "sentiment_score": "0.251",
1161 | "aspects": "['Corporate/Sales']"
1162 | }
1163 | ]
1164 | },
1165 | "335": {
1166 | "sentence": "Shell to buy BG Group in $69.7 billion takeover",
1167 | "info": [
1168 | {
1169 | "snippets": "['buy BG Group in $69.7 billion takeover']",
1170 | "target": "Shell",
1171 | "sentiment_score": "0.25",
1172 | "aspects": "['Corporate/M&A/M&A']"
1173 | }
1174 | ]
1175 | },
1176 | "336": {
1177 | "sentence": "LONDON MORNING BRIEFING: HSBC And Standard Chartered Shares Rise",
1178 | "info": [
1179 | {
1180 | "snippets": "['Shares Rise']",
1181 | "target": "Standard Chartered",
1182 | "sentiment_score": "0.556",
1183 | "aspects": "['Stock/Price Action/Bullish/Bullish Behaviour']"
1184 | }
1185 | ]
1186 | },
1187 | "342": {
1188 | "sentence": "UPDATE 1-BP shareholders back more disclosure on climate change risks",
1189 | "info": [
1190 | {
1191 | "snippets": "['shareholders back more disclosure on climate change risks']",
1192 | "target": "BP",
1193 | "sentiment_score": "0.037",
1194 | "aspects": "['Corporate/Risks']"
1195 | }
1196 | ]
1197 | },
1198 | "345": {
1199 | "sentence": "Shell challenges Exxon dominance with 47 billion-pound bid for BG",
1200 | "info": [
1201 | {
1202 | "snippets": "['challenges Exxon dominance with 47 billion-pound bid for BG']",
1203 | "target": "Exxon",
1204 | "sentiment_score": "-0.196",
1205 | "aspects": "['Corporate/Strategy/Corporate Expansion']"
1206 | },
1207 | {
1208 | "snippets": "['challenges Exxon dominance with 47 billion-pound bid for BG']",
1209 | "target": "Shell",
1210 | "sentiment_score": "0.078",
1211 | "aspects": "['Corporate/Strategy/Corporate Expansion']"
1212 | }
1213 | ]
1214 | },
1215 | "347": {
1216 | "sentence": "Royal Dutch Shell to Buy BG Group for Nearly $70 Billion",
1217 | "info": [
1218 | {
1219 | "snippets": "['Royal Dutch Shell to Buy BG Group for Nearly $70 Billion']",
1220 | "target": "Royal Dutch Shell",
1221 | "sentiment_score": "0.259",
1222 | "aspects": "['Corporate/M&A/M&A']"
1223 | }
1224 | ]
1225 | },
1226 | "349": {
1227 | "sentence": "City spirits sink after Diageo comes up short with sales slide",
1228 | "info": [
1229 | {
1230 | "snippets": "['omes up short with sales slide']",
1231 | "target": "Diageo",
1232 | "sentiment_score": "-0.521",
1233 | "aspects": "['Corporate/Sales']"
1234 | }
1235 | ]
1236 | },
1237 | "358": {
1238 | "sentence": "Diageo receives reports from United Spirits on financial irregularities involving ...",
1239 | "info": [
1240 | {
1241 | "snippets": "['United Spirits on financial irregularitie']",
1242 | "target": "Diageo",
1243 | "sentiment_score": "-0.255",
1244 | "aspects": "['Corporate/Reputation']"
1245 | },
1246 | {
1247 | "snippets": "['on financial irregularities involving ..']",
1248 | "target": "United Spirits",
1249 | "sentiment_score": "-0.272",
1250 | "aspects": "['Corporate/Reputation/Scoop']"
1251 | }
1252 | ]
1253 | },
1254 | "361": {
1255 | "sentence": "Rolls-Royce Wins $9.2 Billion Order From Emirates Airline",
1256 | "info": [
1257 | {
1258 | "snippets": "['Wins $9.2 Billion Order From Emirates Airline']",
1259 | "target": "Rolls-Royce",
1260 | "sentiment_score": "0.777",
1261 | "aspects": "['Corporate/Sales/Deal']"
1262 | }
1263 | ]
1264 | },
1265 | "372": {
1266 | "sentence": "Tesco sales rise shows tentative recovery continues",
1267 | "info": [
1268 | {
1269 | "snippets": "['sales rise']",
1270 | "target": "Tesco",
1271 | "sentiment_score": "0.256",
1272 | "aspects": "['Corporate/Sales']"
1273 | }
1274 | ]
1275 | },
1276 | "374": {
1277 | "sentence": "Diageo sales disappoint as currency and comparatives leave bitter taste",
1278 | "info": [
1279 | {
1280 | "snippets": "['sales disappoint']",
1281 | "target": "Diageo",
1282 | "sentiment_score": "-0.545",
1283 | "aspects": "['Corporate/Sales']"
1284 | }
1285 | ]
1286 | },
1287 | "381": {
1288 | "sentence": "AstraZeneca profit down as sales of stalwarts fade",
1289 | "info": [
1290 | {
1291 | "snippets": "['as sales of stalwarts fade']",
1292 | "target": "AstraZeneca",
1293 | "sentiment_score": "-0.405",
1294 | "aspects": "['Corporate/Sales']"
1295 | }
1296 | ]
1297 | },
1298 | "382": {
1299 | "sentence": "Whitbread Profit Up As Sales Continue To Rise, Looking For New CEO",
1300 | "info": [
1301 | {
1302 | "snippets": "['Profit Up As Sales Continue To Ris']",
1303 | "target": "Whitbread",
1304 | "sentiment_score": "0.385",
1305 | "aspects": "['Corporate/Sales']"
1306 | }
1307 | ]
1308 | },
1309 | "391": {
1310 | "sentence": "Glencore blames rivals for creating metals glut",
1311 | "info": [
1312 | {
1313 | "snippets": "['blames rivals']",
1314 | "target": "Glencore",
1315 | "sentiment_score": "-0.331",
1316 | "aspects": "['Corporate/Risks']"
1317 | }
1318 | ]
1319 | },
1320 | "394": {
1321 | "sentence": "Doubts grow over GlaxoSmithKline's $6 bln capital return plan",
1322 | "info": [
1323 | {
1324 | "snippets": "['$6 bln capital return plan']",
1325 | "target": "GlaxoSmithKline",
1326 | "sentiment_score": "-0.221",
1327 | "aspects": "['Corporate/Dividend Policy']"
1328 | }
1329 | ]
1330 | },
1331 | "395": {
1332 | "sentence": "easyJet leads Britain's FTSE lower as global bond rout resumes",
1333 | "info": [
1334 | {
1335 | "snippets": "['leads Britain's FTSE lower']",
1336 | "target": "easyJet",
1337 | "sentiment_score": "-0.495",
1338 | "aspects": "['Market/Volatility']"
1339 | }
1340 | ]
1341 | },
1342 | "398": {
1343 | "sentence": "Imperial Tobacco Adds Quarterly Dividends After Profit Rose",
1344 | "info": [
1345 | {
1346 | "snippets": "['Quarterly Dividends']",
1347 | "target": "Imperial Tobacco",
1348 | "sentiment_score": "0.336",
1349 | "aspects": "['Corporate/Dividend Policy']"
1350 | }
1351 | ]
1352 | },
1353 | "401": {
1354 | "sentence": "BG Group Still Happy With Shell's $70 Billion Offer",
1355 | "info": [
1356 | {
1357 | "snippets": "['BG Group Still Happy With Shell's $70 Billion Offer']",
1358 | "target": "Shell",
1359 | "sentiment_score": "0.235",
1360 | "aspects": "['Corporate/M&A/Proposed Merger']"
1361 | }
1362 | ]
1363 | },
1364 | "402": {
1365 | "sentence": "SABMiller buys Meantime to quench thirst for craft beer",
1366 | "info": [
1367 | {
1368 | "snippets": "['buys Meantime']",
1369 | "target": "SABMiller",
1370 | "sentiment_score": "0.296",
1371 | "aspects": "['Corporate/M&A/Proposed Merger']"
1372 | }
1373 | ]
1374 | },
1375 | "405": {
1376 | "sentence": "Aviva shuts Friends Life head office in rapid integration move",
1377 | "info": [
1378 | {
1379 | "snippets": "['shuts Friends Life head office in rapid integration move']",
1380 | "target": "Friends Life",
1381 | "sentiment_score": "-0.09",
1382 | "aspects": "['Corporate/Strategy/Corporate Expansion']"
1383 | }
1384 | ]
1385 | },
1386 | "409": {
1387 | "sentence": "Retailers Kingfisher and Sports Direct rise in Britain's share index",
1388 | "info": [
1389 | {
1390 | "snippets": "['rise in Britain's share index']",
1391 | "target": "Sports Direct",
1392 | "sentiment_score": "0.459",
1393 | "aspects": "['Stock/Technical Analysis/Trend/Trending up']"
1394 | }
1395 | ]
1396 | },
1397 | "412": {
1398 | "sentence": "GlaxoSmithKline targets growth across units, scraps ViiV IPO",
1399 | "info": [
1400 | {
1401 | "snippets": "['scraps ViiV IPO']",
1402 | "target": "GlaxoSmithKline",
1403 | "sentiment_score": "0.229",
1404 | "aspects": "['Stock/IPO']"
1405 | }
1406 | ]
1407 | },
1408 | "413": {
1409 | "sentence": "Tesco share price closes higher as two more directors leave grocer",
1410 | "info": [
1411 | {
1412 | "snippets": "['share price closes higher']",
1413 | "target": "Tesco",
1414 | "sentiment_score": "0.354",
1415 | "aspects": "['Stock/Price Action']"
1416 | }
1417 | ]
1418 | },
1419 | "415": {
1420 | "sentence": "Tesco leads FTSE higher on Clubcard bid reports",
1421 | "info": [
1422 | {
1423 | "snippets": "['Clubcard bid reports']",
1424 | "target": "Tesco",
1425 | "sentiment_score": "0.453",
1426 | "aspects": "['Corporate/Rumors']"
1427 | }
1428 | ]
1429 | },
1430 | "417": {
1431 | "sentence": "Eli Lilly & Co. (LLY) Has Broken Out To A New High On AstraZeneca Collaboration",
1432 | "info": [
1433 | {
1434 | "snippets": "['Has Broken Out To A New High']",
1435 | "target": "Eli Lilly & Co",
1436 | "sentiment_score": "0.516",
1437 | "aspects": "['Stock/Technical Analysis/Volume/Unusually high volume']"
1438 | }
1439 | ]
1440 | },
1441 | "422": {
1442 | "sentence": "RPT-Old Mutual Q1 gross sales beat forecasts, up 18 pct",
1443 | "info": [
1444 | {
1445 | "snippets": "['gross sales beat']",
1446 | "target": "Old Mutual",
1447 | "sentiment_score": "0.724",
1448 | "aspects": "['Corporate/Sales']"
1449 | }
1450 | ]
1451 | },
1452 | "427": {
1453 | "sentence": "UPDATE 3-BP settles oil spill-related claims with Halliburton, Transocean",
1454 | "info": [
1455 | {
1456 | "snippets": "['settles oil spill-related claims']",
1457 | "target": "BP",
1458 | "sentiment_score": "-0.121",
1459 | "aspects": "['Corporate/Legal/Settlement']"
1460 | },
1461 | {
1462 | "snippets": "['settles oil spill-related claims with']",
1463 | "target": "Halliburton",
1464 | "sentiment_score": "-0.042",
1465 | "aspects": "['Corporate/Legal/Settlement']"
1466 | }
1467 | ]
1468 | },
1469 | "429": {
1470 | "sentence": "GlaxoSmithKline share price slips as FDA okays asthma therapy only for adults",
1471 | "info": [
1472 | {
1473 | "snippets": "['share price']",
1474 | "target": "GlaxoSmithKline",
1475 | "sentiment_score": "-0.408",
1476 | "aspects": "['Stock/Price Action']"
1477 | }
1478 | ]
1479 | },
1480 | "430": {
1481 | "sentence": "Glencore chief blames rivals' overproduction for share price fall",
1482 | "info": [
1483 | {
1484 | "snippets": "['share price fall']",
1485 | "target": "Glencore",
1486 | "sentiment_score": "-0.301",
1487 | "aspects": "['Stock/Price Action']"
1488 | }
1489 | ]
1490 | },
1491 | "435": {
1492 | "sentence": "Philip Morris, BAT Sue Over Law Taking Branding Off Packs",
1493 | "info": [
1494 | {
1495 | "snippets": "['Sue Over Law Taking Branding Off Packs']",
1496 | "target": "BAT",
1497 | "sentiment_score": "-0.152",
1498 | "aspects": "['Corporate/Legal/Lawsuit']"
1499 | },
1500 | {
1501 | "snippets": "['BAT Sue Over Law Taking Branding Off Packs']",
1502 | "target": "Philip Morris",
1503 | "sentiment_score": "-0.152",
1504 | "aspects": "['Corporate/Legal/Lawsuit']"
1505 | }
1506 | ]
1507 | },
1508 | "440": {
1509 | "sentence": "Hargreaves Lansdown share price falls as costs mount - although pensions ...",
1510 | "info": [
1511 | {
1512 | "snippets": "['share price falls']",
1513 | "target": "Hargreaves Lansdown",
1514 | "sentiment_score": "-0.514",
1515 | "aspects": "['Stock/Price Action']"
1516 | }
1517 | ]
1518 | },
1519 | "444": {
1520 | "sentence": "PRESS: Serco Set To Appoint Roy Gardner, Ex-Centrica, As Chairman - FT",
1521 | "info": [
1522 | {
1523 | "snippets": "['Set To Appoint Roy Gardner, Ex-Centrica, As Chairman - FT']",
1524 | "target": "Centrica",
1525 | "sentiment_score": "0.195",
1526 | "aspects": "['Corporate/Appointment']"
1527 | },
1528 | {
1529 | "snippets": "['Set To Appoint Roy Gardner, Ex-Centrica, As Chairman']",
1530 | "target": "Serco",
1531 | "sentiment_score": "0.122",
1532 | "aspects": "['Corporate/Appointment/Executive Appointment']"
1533 | }
1534 | ]
1535 | },
1536 | "449": {
1537 | "sentence": "UPDATE 1-Cypress Semiconductor offers to buy Integrated Silicon Solution",
1538 | "info": [
1539 | {
1540 | "snippets": "['Semiconductor offers to buy Integrated Silicon Solution']",
1541 | "target": "Integrated Silicon Solution",
1542 | "sentiment_score": "0.461",
1543 | "aspects": "['Stock/Signal/Buy Signal']"
1544 | }
1545 | ]
1546 | },
1547 | "454": {
1548 | "sentence": "UPDATE 1-Nomura, RBS must pay $806 mln in mortgage bond case-US judge",
1549 | "info": [
1550 | {
1551 | "snippets": "['RBS must pay $806 mln in mortgage bond case-']",
1552 | "target": "RBS",
1553 | "sentiment_score": "-0.69",
1554 | "aspects": "['Corporate/Legal/Settlement']"
1555 | }
1556 | ]
1557 | },
1558 | "459": {
1559 | "sentence": "MillerCoors Board Names Gavin Hattersley Interim CEO",
1560 | "info": [
1561 | {
1562 | "snippets": "['Board Names Gavin Hattersley Interim CEO']",
1563 | "target": "MillerCoors",
1564 | "sentiment_score": "0",
1565 | "aspects": "['Corporate/Appointment']"
1566 | }
1567 | ]
1568 | },
1569 | "461": {
1570 | "sentence": "Britain's FTSE gains, Land Securities up after dividend hike",
1571 | "info": [
1572 | {
1573 | "snippets": "['after dividend hike']",
1574 | "target": "Land Securities",
1575 | "sentiment_score": "0.549",
1576 | "aspects": "['Corporate/Dividend Policy']"
1577 | }
1578 | ]
1579 | },
1580 | "466": {
1581 | "sentence": "Britain's FTSE bounces back, Mondi and Barratt lead",
1582 | "info": [
1583 | {
1584 | "snippets": "['Mondi and Barratt lead']",
1585 | "target": "Barratt",
1586 | "sentiment_score": "0.558",
1587 | "aspects": "['Stock/Price Action']"
1588 | },
1589 | {
1590 | "snippets": "['Britain's FTSE bounces back']",
1591 | "target": "Mondi",
1592 | "sentiment_score": "0.552",
1593 | "aspects": "['Stock/Price Action']"
1594 | }
1595 | ]
1596 | },
1597 | "470": {
1598 | "sentence": "Old Mutual First-Quarter Sales Up 18% Buoyed by Emerging Markets",
1599 | "info": [
1600 | {
1601 | "snippets": "['Sales Up 18%']",
1602 | "target": "Old Mutual",
1603 | "sentiment_score": "0.689",
1604 | "aspects": "['Corporate/Sales']"
1605 | }
1606 | ]
1607 | },
1608 | "473": {
1609 | "sentence": "Do it for me' trend underpins UK sales growth at Kingfisher",
1610 | "info": [
1611 | {
1612 | "snippets": "['UK sales growth']",
1613 | "target": "Kingfisher",
1614 | "sentiment_score": "0.304",
1615 | "aspects": "['Corporate/Sales']"
1616 | }
1617 | ]
1618 | },
1619 | "476": {
1620 | "sentence": "Aldi and Lidl expansion plans speed ahead as Tesco, Sainsbury's, Morrisons ...",
1621 | "info": [
1622 | {
1623 | "snippets": "['Aldi and Lidl expansion']",
1624 | "target": "Lidl",
1625 | "sentiment_score": "0.372",
1626 | "aspects": "['Corporate/Strategy/Corporate Expansion']"
1627 | }
1628 | ]
1629 | },
1630 | "477": {
1631 | "sentence": "Centrica extends gas deals with Gazprom, Statoil",
1632 | "info": [
1633 | {
1634 | "snippets": "['extends gas deals']",
1635 | "target": "Gazprom",
1636 | "sentiment_score": "0.199",
1637 | "aspects": "['Corporate/Sales/Deal']"
1638 | },
1639 | {
1640 | "snippets": "['extends gas deals']",
1641 | "target": "Statoil",
1642 | "sentiment_score": "0.239",
1643 | "aspects": "['Corporate/Sales/Deal']"
1644 | }
1645 | ]
1646 | },
1647 | "480": {
1648 | "sentence": "Aberdeen AM posts H1 outflows, says conditions to remain challenging",
1649 | "info": [
1650 | {
1651 | "snippets": "['says conditions to remain challenging']",
1652 | "target": "Aberdeen AM",
1653 | "sentiment_score": "-0.364",
1654 | "aspects": "['Market/Conditions']"
1655 | }
1656 | ]
1657 | },
1658 | "492": {
1659 | "sentence": "Severn Trent share price jumps as Canadian investor renews pursuit of utility",
1660 | "info": [
1661 | {
1662 | "snippets": "['share price jumps']",
1663 | "target": "Severn Trent",
1664 | "sentiment_score": "0.433",
1665 | "aspects": "['Stock/Price Action']"
1666 | }
1667 | ]
1668 | },
1669 | "495": {
1670 | "sentence": "New Morrisons duo get former boss's support to diffuse investor tension",
1671 | "info": [
1672 | {
1673 | "snippets": "['diffuse investor tension']",
1674 | "target": "Morrisons",
1675 | "sentiment_score": "0.143",
1676 | "aspects": "['Corporate/Risks']"
1677 | }
1678 | ]
1679 | },
1680 | "499": {
1681 | "sentence": "S&P downgrades Barclays and RBS on government bailout fears",
1682 | "info": [
1683 | {
1684 | "snippets": "['downgrades Barclays and RBS']",
1685 | "target": "RBS",
1686 | "sentiment_score": "-0.53",
1687 | "aspects": "['Stock/Coverage/AnalystRatings/downgrade']"
1688 | }
1689 | ]
1690 | },
1691 | "502": {
1692 | "sentence": "Irish housebuilder Cairn Homes plans London listing",
1693 | "info": [
1694 | {
1695 | "snippets": "['London listing']",
1696 | "target": "Cairn Homes",
1697 | "sentiment_score": "0.189",
1698 | "aspects": "['Stock/IPO']"
1699 | }
1700 | ]
1701 | },
1702 | "507": {
1703 | "sentence": "Arm slammed by handset sales outlook",
1704 | "info": [
1705 | {
1706 | "snippets": "['sales outlook']",
1707 | "target": "Arm",
1708 | "sentiment_score": "-0.41",
1709 | "aspects": "['Corporate/Sales']"
1710 | }
1711 | ]
1712 | },
1713 | "511": {
1714 | "sentence": "CompaniesLSE adds ex-SEC head Schapiro to board",
1715 | "info": [
1716 | {
1717 | "snippets": "['adds ex-SEC head Schapiro to board']",
1718 | "target": "LSE",
1719 | "sentiment_score": "0.076",
1720 | "aspects": "['Corporate/Appointment']"
1721 | }
1722 | ]
1723 | },
1724 | "512": {
1725 | "sentence": "Sales boost for new Morrisons chief David Potts as Tesco turnaround stalls",
1726 | "info": [
1727 | {
1728 | "snippets": "['Sales boost']",
1729 | "target": "Tesco",
1730 | "sentiment_score": "-0.41",
1731 | "aspects": "['Corporate/Sales/Sales']"
1732 | }
1733 | ]
1734 | },
1735 | "516": {
1736 | "sentence": "FTSE 100 flat; Standard Chartered leads risers",
1737 | "info": [
1738 | {
1739 | "snippets": "['flat; Standard Chartered leads risers']",
1740 | "target": "Standard Chartered",
1741 | "sentiment_score": "0.589",
1742 | "aspects": "['Stock/Price Action']"
1743 | }
1744 | ]
1745 | },
1746 | "517": {
1747 | "sentence": "CompaniesHoward Davies appointment as RBS director delayed",
1748 | "info": [
1749 | {
1750 | "snippets": "['appointment as RBS director delayed']",
1751 | "target": "RBS",
1752 | "sentiment_score": "-0.025",
1753 | "aspects": "['Corporate/Appointment']"
1754 | }
1755 | ]
1756 | },
1757 | "519": {
1758 | "sentence": "Keith Skeoch to step up as David Nish quits as chief executive of Standard Life",
1759 | "info": [
1760 | {
1761 | "snippets": "['David Nish quits as chief executive']",
1762 | "target": "Standard Life",
1763 | "sentiment_score": "-0.09",
1764 | "aspects": "['Corporate/Appointment']"
1765 | }
1766 | ]
1767 | },
1768 | "520": {
1769 | "sentence": "Dixons Carphone profit boost on strong sales",
1770 | "info": [
1771 | {
1772 | "snippets": "['profit boost on strong sales']",
1773 | "target": "Dixons Carphone",
1774 | "sentiment_score": "0.478",
1775 | "aspects": "['Corporate/Sales']"
1776 | }
1777 | ]
1778 | },
1779 | "521": {
1780 | "sentence": "FTSE rallies off three-month low, boosted by StanChart, Sainsbury",
1781 | "info": [
1782 | {
1783 | "snippets": "['rallies off three-month low']",
1784 | "target": "Sainsbury",
1785 | "sentiment_score": "0.334",
1786 | "aspects": "['Stock/Price Action']"
1787 | },
1788 | {
1789 | "snippets": "['rallies off three-month low']",
1790 | "target": "StanChart",
1791 | "sentiment_score": "0.465",
1792 | "aspects": "['Market/Market/Market Outlook']"
1793 | }
1794 | ]
1795 | },
1796 | "530": {
1797 | "sentence": "Royal Mail, Johnson Matthey lead FTSE lower",
1798 | "info": [
1799 | {
1800 | "snippets": "['lead FTSE lower']",
1801 | "target": "Royal Mail",
1802 | "sentiment_score": "-0.438",
1803 | "aspects": "['Market/Market/Market Trend']"
1804 | }
1805 | ]
1806 | },
1807 | "539": {
1808 | "sentence": "Sainsbury sales slip again as price pressures take a toll",
1809 | "info": [
1810 | {
1811 | "snippets": "['pressures take a toll']",
1812 | "target": "Sainsbury",
1813 | "sentiment_score": "-0.303",
1814 | "aspects": "['Stock/Price Action']"
1815 | }
1816 | ]
1817 | },
1818 | "540": {
1819 | "sentence": "Sophos aims to raise $100m in London IPO",
1820 | "info": [
1821 | {
1822 | "snippets": "['raise $100m in London IPO']",
1823 | "target": "Sophos",
1824 | "sentiment_score": "0.214",
1825 | "aspects": "['Stock/IPO']"
1826 | }
1827 | ]
1828 | },
1829 | "541": {
1830 | "sentence": "UPDATE 3-Stifel to buy former Lehman brokerage from Barclays",
1831 | "info": [
1832 | {
1833 | "snippets": "['Stifel to buy former Lehman brokerage']",
1834 | "target": "Lehman",
1835 | "sentiment_score": "0.164",
1836 | "aspects": "['Corporate/M&A/Proposed Merger']"
1837 | }
1838 | ]
1839 | },
1840 | "545": {
1841 | "sentence": "Borealis Infrastructure putting together new Severn Trent bid",
1842 | "info": [
1843 | {
1844 | "snippets": "['putting together new Severn Trent bid']",
1845 | "target": "Severn Trent",
1846 | "sentiment_score": "0.214",
1847 | "aspects": "['Corporate/M&A/Proposed Merger']"
1848 | }
1849 | ]
1850 | },
1851 | "546": {
1852 | "sentence": "FTSE falls to 3-month low on Greek debt concerns, easyJet skids",
1853 | "info": [
1854 | {
1855 | "snippets": "['Greek debt concerns']",
1856 | "target": "easyjet",
1857 | "sentiment_score": "-0.414",
1858 | "aspects": "['Corporate/Risks']"
1859 | }
1860 | ]
1861 | },
1862 | "547": {
1863 | "sentence": "Johnson Matthey share price slumps as company posts full-year results",
1864 | "info": [
1865 | {
1866 | "snippets": "['share price slumps']",
1867 | "target": "Johnson Matthey",
1868 | "sentiment_score": "-0.626",
1869 | "aspects": "['Stock/Price Action']"
1870 | }
1871 | ]
1872 | },
1873 | "548": {
1874 | "sentence": "UPDATE: Barclays Expects Gain After Settling With Lehman Bros Trustee",
1875 | "info": [
1876 | {
1877 | "snippets": "['After Settling With Lehman Bros Trustee']",
1878 | "target": "Barclays",
1879 | "sentiment_score": "0.199",
1880 | "aspects": "['Corporate/Legal']"
1881 | },
1882 | {
1883 | "snippets": "['Expects Gain']",
1884 | "target": "Lehman",
1885 | "sentiment_score": "0.239",
1886 | "aspects": "['Corporate/Legal/Settlement']"
1887 | }
1888 | ]
1889 | },
1890 | "552": {
1891 | "sentence": "Petrofac books further £30m cost for Shetland gas terminal delays",
1892 | "info": [
1893 | {
1894 | "snippets": "['books further £30m cost for Shetland gas terminal delays']",
1895 | "target": "Petrofac",
1896 | "sentiment_score": "-0.343",
1897 | "aspects": "['Corporate/Risks']"
1898 | }
1899 | ]
1900 | },
1901 | "553": {
1902 | "sentence": "Petrofac share price rises despite £30m costs on North Sea project",
1903 | "info": [
1904 | {
1905 | "snippets": "['share price rise']",
1906 | "target": "Petrofac",
1907 | "sentiment_score": "0.09",
1908 | "aspects": "['Stock/Price Action']"
1909 | }
1910 | ]
1911 | },
1912 | "554": {
1913 | "sentence": "Whitbread boss Andy Harrison defends sales fall as 'just a blip'",
1914 | "info": [
1915 | {
1916 | "snippets": "['defends sales fall as 'just a blip'']",
1917 | "target": "Whitbread",
1918 | "sentiment_score": "-0.1",
1919 | "aspects": "['Corporate/Sales']"
1920 | }
1921 | ]
1922 | },
1923 | "555": {
1924 | "sentence": "Barclays share price subdued as bank faces fresh forex probe",
1925 | "info": [
1926 | {
1927 | "snippets": "['share price subdued']",
1928 | "target": "Barclays",
1929 | "sentiment_score": "-0.373",
1930 | "aspects": "['Stock/Price Action']"
1931 | }
1932 | ]
1933 | },
1934 | "556": {
1935 | "sentence": "CompaniesActelion shares hit record on Shire takeover talk",
1936 | "info": [
1937 | {
1938 | "snippets": "['Shire takeover talk']",
1939 | "target": "Actelion",
1940 | "sentiment_score": "0.721",
1941 | "aspects": "['Corporate/Rumors']"
1942 | },
1943 | {
1944 | "snippets": "['Shire takeover talk']",
1945 | "target": "Shire",
1946 | "sentiment_score": "0.345",
1947 | "aspects": "['Corporate/Rumors/Rumors']"
1948 | }
1949 | ]
1950 | },
1951 | "563": {
1952 | "sentence": "LSE gets Hong Kong regulatory nod to HK firms to become LSE members",
1953 | "info": [
1954 | {
1955 | "snippets": "['LSE gets Hong Kong regulatory nod']",
1956 | "target": "LSE",
1957 | "sentiment_score": "0.247",
1958 | "aspects": "['Corporate/Regulatory']"
1959 | }
1960 | ]
1961 | },
1962 | "573": {
1963 | "sentence": "Diageo Shares Surge on Report of Possible Takeover by Lemann",
1964 | "info": [
1965 | {
1966 | "snippets": "['Diageo Shares Surge']",
1967 | "target": "Lemann",
1968 | "sentiment_score": "0.415",
1969 | "aspects": "['Stock/Technical Analysis/Trend/Trending up']"
1970 | }
1971 | ]
1972 | },
1973 | "576": {
1974 | "sentence": "RBS chairman admits surprise at size of regulatory penalties",
1975 | "info": [
1976 | {
1977 | "snippets": "['s surprise at size of regulatory penalties']",
1978 | "target": "RBS",
1979 | "sentiment_score": "-0.333",
1980 | "aspects": "['Corporate/Regulatory']"
1981 | }
1982 | ]
1983 | },
1984 | "584": {
1985 | "sentence": "RSA Insurance Hires Towergate's Egan as Chief Financial Officer",
1986 | "info": [
1987 | {
1988 | "snippets": "['Insurance Hires Towergate's Egan as Chief Financial Officer']",
1989 | "target": "Towergate",
1990 | "sentiment_score": "0.002",
1991 | "aspects": "['Corporate/Appointment/Executive Appointment']"
1992 | }
1993 | ]
1994 | },
1995 | "590": {
1996 | "sentence": "Johnson Matthey raises prospect of investor payout",
1997 | "info": [
1998 | {
1999 | "snippets": "['raises prospect of investor payout']",
2000 | "target": "Johnson Matthey",
2001 | "sentiment_score": "0.281",
2002 | "aspects": "['Corporate/Dividend Policy']"
2003 | }
2004 | ]
2005 | },
2006 | "593": {
2007 | "sentence": "InterContinental Hotels Denies Reports of Starwood Merger Talks",
2008 | "info": [
2009 | {
2010 | "snippets": "['Denies Reports of Starwood Merger Talks']",
2011 | "target": "Starwood",
2012 | "sentiment_score": "-0.078",
2013 | "aspects": "['Corporate/Rumors/Scoop']"
2014 | }
2015 | ]
2016 | },
2017 | "594": {
2018 | "sentence": "REFILE-Hikma and Barclays help Britain's FTSE to climb higher",
2019 | "info": [
2020 | {
2021 | "snippets": "['help Britain's FTSE to climb higher']",
2022 | "target": "Hikma",
2023 | "sentiment_score": "0.452",
2024 | "aspects": "['Market/Market/Market Trend']"
2025 | }
2026 | ]
2027 | },
2028 | "601": {
2029 | "sentence": "FDA Approves AstraZeneca's Iressa As Lung Cancer Treatment",
2030 | "info": [
2031 | {
2032 | "snippets": "['FDA Approves AstraZeneca's Iressa']",
2033 | "target": "AstraZeneca",
2034 | "sentiment_score": "0.42",
2035 | "aspects": "['Corporate/Regulatory']"
2036 | }
2037 | ]
2038 | },
2039 | "602": {
2040 | "sentence": "AstraZeneca suffers setback after drug fails to treat eye cancer",
2041 | "info": [
2042 | {
2043 | "snippets": "['suffers setback']",
2044 | "target": "AstraZeneca",
2045 | "sentiment_score": "-0.392",
2046 | "aspects": "['Corporate/Risks']"
2047 | }
2048 | ]
2049 | },
2050 | "613": {
2051 | "sentence": "British American Tobacco first-half sales hurt by currency moves",
2052 | "info": [
2053 | {
2054 | "snippets": "['hurt by currency moves']",
2055 | "target": "British American Tobacco",
2056 | "sentiment_score": "-0.346",
2057 | "aspects": "['Market/Currency']"
2058 | }
2059 | ]
2060 | },
2061 | "614": {
2062 | "sentence": "Zurich Insurance Considering Offer for UK Rival RSA Insurance",
2063 | "info": [
2064 | {
2065 | "snippets": "['Insurance Considering Offer for UK Rival RSA Insurance']",
2066 | "target": "Zurich Insurance",
2067 | "sentiment_score": "0.25",
2068 | "aspects": "['Corporate/Rumors/Rumors']"
2069 | }
2070 | ]
2071 | },
2072 | "616": {
2073 | "sentence": "Japan's Nikkei lands Financial Times in $1.3 billion deal",
2074 | "info": [
2075 | {
2076 | "snippets": "['lands Financial Times in $1.3 billion deal']",
2077 | "target": "Nikkei",
2078 | "sentiment_score": "0.262",
2079 | "aspects": "['Corporate/Sales/Deal']"
2080 | }
2081 | ]
2082 | },
2083 | "622": {
2084 | "sentence": "Ingenious, HSBC, UBS and Coutts sued by 'tax avoidance' clients",
2085 | "info": [
2086 | {
2087 | "snippets": "['sued by 'tax avoidance' clients']",
2088 | "target": "Coutts",
2089 | "sentiment_score": "-0.248",
2090 | "aspects": "['Corporate/Legal/Lawsuit']"
2091 | },
2092 | {
2093 | "snippets": "['sued by 'tax avoidance' clients']",
2094 | "target": "HSBC",
2095 | "sentiment_score": "-0.251",
2096 | "aspects": "['Corporate/Legal/Lawsuit']"
2097 | },
2098 | {
2099 | "snippets": "['sued by 'tax avoidance' clients']",
2100 | "target": "UBS",
2101 | "sentiment_score": "-0.281",
2102 | "aspects": "['Corporate/Legal/Lawsuit']"
2103 | }
2104 | ]
2105 | },
2106 | "624": {
2107 | "sentence": "UPDATE 1-AstraZeneca sells rare cancer drug to Sanofi for up to $300 mln",
2108 | "info": [
2109 | {
2110 | "snippets": "['sells rare cancer drug to Sanofi']",
2111 | "target": "Sanofi",
2112 | "sentiment_score": "0.258",
2113 | "aspects": "['Corporate/Sales/Deal']"
2114 | }
2115 | ]
2116 | },
2117 | "627": {
2118 | "sentence": "Sainsbury sells unit to LloydsPharmacy",
2119 | "info": [
2120 | {
2121 | "snippets": "['sells unit to LloydsPharmacy']",
2122 | "target": "Sainsbury",
2123 | "sentiment_score": "0.234",
2124 | "aspects": "['Corporate/Sales/Deal']"
2125 | }
2126 | ]
2127 | },
2128 | "632": {
2129 | "sentence": "BAE Systems's sales boosted by European Typhoon and currencies",
2130 | "info": [
2131 | {
2132 | "snippets": "['sales boosted by']",
2133 | "target": "BAE Systems",
2134 | "sentiment_score": "0.39",
2135 | "aspects": "['Corporate/Sales']"
2136 | }
2137 | ]
2138 | },
2139 | "634": {
2140 | "sentence": "Royal Mail 'breached competition law' over delivery service changes, Ofcom claims",
2141 | "info": [
2142 | {
2143 | "snippets": "['breached competition law']",
2144 | "target": "Royal Mail",
2145 | "sentiment_score": "-0.315",
2146 | "aspects": "['Corporate/Legal']"
2147 | }
2148 | ]
2149 | },
2150 | "645": {
2151 | "sentence": "Britain's FTSE steadies, supported by Dixons Carphone",
2152 | "info": [
2153 | {
2154 | "snippets": "['FTSE steadies, supported by Dixons Carphone']",
2155 | "target": "Dixons Carphone",
2156 | "sentiment_score": "0.329",
2157 | "aspects": "['Stock/Price Action']"
2158 | }
2159 | ]
2160 | },
2161 | "651": {
2162 | "sentence": "Glaxo's ViiV Healthcare Signs China Manufacturing Deal With Desano",
2163 | "info": [
2164 | {
2165 | "snippets": "['Signs China Manufacturing Deal With Desano']",
2166 | "target": "Glaxo",
2167 | "sentiment_score": "0.284",
2168 | "aspects": "['Corporate/Sales/Partnership']"
2169 | }
2170 | ]
2171 | },
2172 | "653": {
2173 | "sentence": "AstraZeneca sells Caprelsa rights to Sanofi unit",
2174 | "info": [
2175 | {
2176 | "snippets": "['sells Caprelsa rights to Sanofi unit']",
2177 | "target": "Sanofi",
2178 | "sentiment_score": "0.233",
2179 | "aspects": "['Corporate/Sales/Deal']"
2180 | }
2181 | ]
2182 | },
2183 | "659": {
2184 | "sentence": "UPDATE 5-Barclays Chairman McFarlane axes CEO to speed up strategic change",
2185 | "info": [
2186 | {
2187 | "snippets": "['to speed up strategic change']",
2188 | "target": "Barclays",
2189 | "sentiment_score": "-0.229",
2190 | "aspects": "['Corporate/Strategy']"
2191 | }
2192 | ]
2193 | },
2194 | "665": {
2195 | "sentence": "Miners Meltdown as BHP to Rio Tinto Sink in Commodities Rout",
2196 | "info": [
2197 | {
2198 | "snippets": "['Rio Tinto Sink in Commodities Rout']",
2199 | "target": "Rio Tinto",
2200 | "sentiment_score": "-0.665",
2201 | "aspects": "['Stock/Price Action/Bearish/Bearish Behaviour']"
2202 | }
2203 | ]
2204 | },
2205 | "669": {
2206 | "sentence": "FTSE led lower by M&S, GlaxoSmithKline",
2207 | "info": [
2208 | {
2209 | "snippets": "['FTSE led lowe']",
2210 | "target": "M&S",
2211 | "sentiment_score": "-0.448",
2212 | "aspects": "['Market/Market/Market Trend']"
2213 | }
2214 | ]
2215 | },
2216 | "670": {
2217 | "sentence": "GKN to buy Fokker Technologies for 706 mln euros",
2218 | "info": [
2219 | {
2220 | "snippets": "['to buy Fokker Technologies']",
2221 | "target": "GKN",
2222 | "sentiment_score": "0.276",
2223 | "aspects": "['Corporate/M&A/M&A']"
2224 | }
2225 | ]
2226 | },
2227 | "671": {
2228 | "sentence": "Diageo Sells Ryder Cup Venue Gleneagles Hotel to Ennismore Group",
2229 | "info": [
2230 | {
2231 | "snippets": "['Sells Ryder Cup Venue Gleneagles Hotel to Ennismore Group']",
2232 | "target": "Ennismore Group",
2233 | "sentiment_score": "0.198",
2234 | "aspects": "['Corporate/Sales/Deal']"
2235 | },
2236 | {
2237 | "snippets": "['Sells Ryder Cup Venue Gleneagles Hotel to Ennismore Group']",
2238 | "target": "Gleneagles Hotel",
2239 | "sentiment_score": "0.237",
2240 | "aspects": "['Corporate/Sales/Deal']"
2241 | }
2242 | ]
2243 | },
2244 | "674": {
2245 | "sentence": "UPDATE: CIB, Legal & General Sell Egyptian Life Joint Venture To AXA",
2246 | "info": [
2247 | {
2248 | "snippets": "['Legal & General Sell Egyptian Life Joint Venture To AXA']",
2249 | "target": "CIB",
2250 | "sentiment_score": "0.148",
2251 | "aspects": "['Corporate/Sales/Deal']"
2252 | }
2253 | ]
2254 | },
2255 | "679": {
2256 | "sentence": "Chime Communications Set To Be Acquired By WPP And Providence",
2257 | "info": [
2258 | {
2259 | "snippets": "[' Set To Be Acquired By WPP And Providence']",
2260 | "target": "WPP",
2261 | "sentiment_score": "0.202",
2262 | "aspects": "['Corporate/M&A/M&A']"
2263 | }
2264 | ]
2265 | },
2266 | "680": {
2267 | "sentence": "CompaniesNew Aggreko CEO to reshape business, strip costs",
2268 | "info": [
2269 | {
2270 | "snippets": "['to reshape business, strip costs']",
2271 | "target": "Aggreko",
2272 | "sentiment_score": "0.177",
2273 | "aspects": "['Corporate/Strategy']"
2274 | }
2275 | ]
2276 | },
2277 | "682": {
2278 | "sentence": "AstraZeneca to Pay Inovio Up to $700 Million for Cancer Drug",
2279 | "info": [
2280 | {
2281 | "snippets": "['to Pay Inovio Up to $700 Million for Cancer Drug']",
2282 | "target": "Inovio",
2283 | "sentiment_score": "0.33",
2284 | "aspects": "['Corporate/Sales/Deal']"
2285 | }
2286 | ]
2287 | },
2288 | "686": {
2289 | "sentence": "Rio Tinto CEO says iron ore market at equilibrium",
2290 | "info": [
2291 | {
2292 | "snippets": "['iron ore market at equilibrium']",
2293 | "target": "Rio Tinto",
2294 | "sentiment_score": "0",
2295 | "aspects": "['Market/Market']"
2296 | }
2297 | ]
2298 | },
2299 | "687": {
2300 | "sentence": "US sanctions put Gazprom-Shell alliance plans in jeopardy",
2301 | "info": [
2302 | {
2303 | "snippets": "['US sanctions put ']",
2304 | "target": "Shell",
2305 | "sentiment_score": "-0.314",
2306 | "aspects": "['Economy/Trade/Sanctions']"
2307 | }
2308 | ]
2309 | },
2310 | "688": {
2311 | "sentence": "Standard Chartered Not Raising Capital Yet As Dividend Cut",
2312 | "info": [
2313 | {
2314 | "snippets": "['Not Raising Capital Yet As Dividend Cut']",
2315 | "target": "Standard Chartered",
2316 | "sentiment_score": "-0.158",
2317 | "aspects": "['Corporate/Dividend Policy']"
2318 | }
2319 | ]
2320 | },
2321 | "692": {
2322 | "sentence": "UPDATE 1-BHP Billiton's credit ratings fragile in FY16, agencies warn",
2323 | "info": [
2324 | {
2325 | "snippets": "['credit ratings fragile in FY16, agencies warn']",
2326 | "target": "BHP",
2327 | "sentiment_score": "-0.338",
2328 | "aspects": "['Corporate/Risks']"
2329 | }
2330 | ]
2331 | },
2332 | "693": {
2333 | "sentence": "CRH adds CR Laurence to acquisitions tally for $1.3bn",
2334 | "info": [
2335 | {
2336 | "snippets": "['adds CR Laurence to acquisitions tally for $1.3bn']",
2337 | "target": "CRH",
2338 | "sentiment_score": "0.231",
2339 | "aspects": "['Corporate/M&A/M&A']"
2340 | }
2341 | ]
2342 | },
2343 | "701": {
2344 | "sentence": "Novartis buys remaining rights to GSK treatment in deal up to $1 billion",
2345 | "info": [
2346 | {
2347 | "snippets": "['buys remaining rights to GSK treatment in deal up to $1 billion']",
2348 | "target": "Novartis",
2349 | "sentiment_score": "0.217",
2350 | "aspects": "['Corporate/Sales/Deal']"
2351 | }
2352 | ]
2353 | },
2354 | "702": {
2355 | "sentence": "AstraZeneca bags another cancer drug deal, this time with Inovio",
2356 | "info": [
2357 | {
2358 | "snippets": "['bags another cancer drug deal']",
2359 | "target": "Inovio",
2360 | "sentiment_score": "0.316",
2361 | "aspects": "['Corporate/Sales/Deal']"
2362 | }
2363 | ]
2364 | },
2365 | "704": {
2366 | "sentence": "REFILE-Aviva Investors to move 34 bln euros in assets from AXA fund arm",
2367 | "info": [
2368 | {
2369 | "snippets": "['Investors to move 34 bln euros in assets from AXA fund arm']",
2370 | "target": "AXA",
2371 | "sentiment_score": "-0.398",
2372 | "aspects": "['Market/Conditions/Mutual Fund flows']"
2373 | }
2374 | ]
2375 | },
2376 | "715": {
2377 | "sentence": "L&G still paying price for dividend cut during crisis, chief says",
2378 | "info": [
2379 | {
2380 | "snippets": "['still paying price for dividend cut']",
2381 | "target": "L&G",
2382 | "sentiment_score": "-0.338",
2383 | "aspects": "['Corporate/Dividend Policy']"
2384 | }
2385 | ]
2386 | },
2387 | "726": {
2388 | "sentence": "Buffett's Company Reports 37 Percent Drop in 2Q Earnings",
2389 | "info": [
2390 | {
2391 | "snippets": "['Reports 37 Percent Drop in 2Q Earnings']",
2392 | "target": "Berkshire Hathaway Inc.",
2393 | "sentiment_score": "-0.566",
2394 | "aspects": "['Corporate/Company Communication']"
2395 | }
2396 | ]
2397 | },
2398 | "730": {
2399 | "sentence": "Travis Perkins Hikes Dividend 20% As Profit And Revenue Rise",
2400 | "info": [
2401 | {
2402 | "snippets": "['Hikes Dividend 20% As Profit And Revenue Rise']",
2403 | "target": "Travis Perkins",
2404 | "sentiment_score": "0.769",
2405 | "aspects": "['Corporate/Dividend Policy']"
2406 | }
2407 | ]
2408 | },
2409 | "738": {
2410 | "sentence": "Tesco, Asda sales fall as march of the discounters continues: Kantar",
2411 | "info": [
2412 | {
2413 | "snippets": "['sales fall as march of the discounters']",
2414 | "target": "Tesco",
2415 | "sentiment_score": "-0.398",
2416 | "aspects": "['Corporate/Sales']"
2417 | }
2418 | ]
2419 | },
2420 | "741": {
2421 | "sentence": "Shire proposes $30 bln all-share tie-up with Baxalta",
2422 | "info": [
2423 | {
2424 | "snippets": "['proposes $30 bln all-share tie-up with']",
2425 | "target": "Shire",
2426 | "sentiment_score": "0.22",
2427 | "aspects": "['Corporate/M&A/Proposed Merger']"
2428 | }
2429 | ]
2430 | },
2431 | "742": {
2432 | "sentence": "Shire CEO steps up drive to get Baxalta board talking",
2433 | "info": [
2434 | {
2435 | "snippets": "['CEO steps up drive to get Baxalta board talking']",
2436 | "target": "Shire",
2437 | "sentiment_score": "0.124",
2438 | "aspects": "['Corporate/Strategy/Corporate Planning']"
2439 | }
2440 | ]
2441 | },
2442 | "747": {
2443 | "sentence": "Tesco, Asda sales fall as march of the discounters continues-Kantar",
2444 | "info": [
2445 | {
2446 | "snippets": "['Asda sales fall as march of the discounters continues']",
2447 | "target": "Asda",
2448 | "sentiment_score": "-0.356",
2449 | "aspects": "['Corporate/Sales/Demand Shortfall']"
2450 | }
2451 | ]
2452 | },
2453 | "758": {
2454 | "sentence": "Verizon and AT&T accused of hurting rivals",
2455 | "info": [
2456 | {
2457 | "snippets": "['accused of hurting rivals']",
2458 | "target": "Verizon",
2459 | "sentiment_score": "-0.446",
2460 | "aspects": "['Corporate/Regulatory']"
2461 | }
2462 | ]
2463 | },
2464 | "759": {
2465 | "sentence": "FTSE 100 falls as China devaluation hits Burberry, mining stocks",
2466 | "info": [
2467 | {
2468 | "snippets": "['FTSE 100 falls as']",
2469 | "target": "Burberry",
2470 | "sentiment_score": "-0.479",
2471 | "aspects": "['Market/Volatility']"
2472 | }
2473 | ]
2474 | },
2475 | "764": {
2476 | "sentence": "Nine banks including Barclays, Citi, agree to pay $2 billion to settle forex ...",
2477 | "info": [
2478 | {
2479 | "snippets": "['agree to pay $2 billion to settle forex .']",
2480 | "target": "Citi",
2481 | "sentiment_score": "-0.647",
2482 | "aspects": "['Corporate/Legal/Settlement']"
2483 | }
2484 | ]
2485 | },
2486 | "784": {
2487 | "sentence": "CompaniesCar insurer Hastings Group driving £180m IPO",
2488 | "info": [
2489 | {
2490 | "snippets": "['driving £180m IPO']",
2491 | "target": "Hastings Group",
2492 | "sentiment_score": "0.302",
2493 | "aspects": "['Stock/IPO']"
2494 | }
2495 | ]
2496 | },
2497 | "808": {
2498 | "sentence": "Glencore slumps 25 pct as debt fears grow",
2499 | "info": [
2500 | {
2501 | "snippets": "['debt fears grow']",
2502 | "target": "Glencore",
2503 | "sentiment_score": "-0.718",
2504 | "aspects": "['Corporate/Risks']"
2505 | }
2506 | ]
2507 | },
2508 | "815": {
2509 | "sentence": "Horizonte acquires neighbouring Glencore nickel property in Brazil",
2510 | "info": [
2511 | {
2512 | "snippets": "['e acquires neighbouring Glencore nickel property']",
2513 | "target": "Horizonte",
2514 | "sentiment_score": "0.182",
2515 | "aspects": "['Corporate/M&A/M&A']"
2516 | }
2517 | ]
2518 | },
2519 | "820": {
2520 | "sentence": "UPDATE 1-Engineering firm Smiths Group confirms CEO appointment",
2521 | "info": [
2522 | {
2523 | "snippets": "['confirms CEO appointment']",
2524 | "target": "Morrissons",
2525 | "sentiment_score": "0.078",
2526 | "aspects": "['Corporate/Appointment']"
2527 | }
2528 | ]
2529 | },
2530 | "821": {
2531 | "sentence": "Industry NewsMorrisons unveils which stores will close as 900 jobs face the axe",
2532 | "info": [
2533 | {
2534 | "snippets": "['unveils which stores will close as 900 jobs face the axe']",
2535 | "target": "Morrissons",
2536 | "sentiment_score": "-0.731",
2537 | "aspects": "['Corporate/Company Communication']"
2538 | }
2539 | ]
2540 | },
2541 | "827": {
2542 | "sentence": "Glencore slumps 30 percent as debt fears grow",
2543 | "info": [
2544 | {
2545 | "snippets": "['debt fears grow']",
2546 | "target": "Glencore",
2547 | "sentiment_score": "-0.781",
2548 | "aspects": "['Corporate/Risks']"
2549 | }
2550 | ]
2551 | },
2552 | "833": {
2553 | "sentence": "Aberdeen Asset Management Gains Foothold In China",
2554 | "info": [
2555 | {
2556 | "snippets": "['Gains Foothold In China']",
2557 | "target": "Aberdeen Asset Managment",
2558 | "sentiment_score": "0.357",
2559 | "aspects": "['Corporate/Strategy']"
2560 | }
2561 | ]
2562 | },
2563 | "835": {
2564 | "sentence": "ARM Holdings plc Partners With International Business Machines Corp. To Drive ...",
2565 | "info": [
2566 | {
2567 | "snippets": "['Partners With International Business Machines Corp. To Drive']",
2568 | "target": "ARM Holdings",
2569 | "sentiment_score": "0.273",
2570 | "aspects": "['Corporate/Strategy']"
2571 | },
2572 | {
2573 | "snippets": "['Partners With International Business Machines Corp']",
2574 | "target": "IBM",
2575 | "sentiment_score": "0.345",
2576 | "aspects": "['Corporate/Strategy']"
2577 | }
2578 | ]
2579 | },
2580 | "838": {
2581 | "sentence": "FTSE 100 drops 2.5 pct on Glencore, metals price fears",
2582 | "info": [
2583 | {
2584 | "snippets": "['FTSE 100 drops 2.5 pct']",
2585 | "target": "Glencore",
2586 | "sentiment_score": "-0.597",
2587 | "aspects": "['Stock/Price Action']"
2588 | }
2589 | ]
2590 | },
2591 | "840": {
2592 | "sentence": "After Barclays and Bank of America, Citigroup has blockchain in sight",
2593 | "info": [
2594 | {
2595 | "snippets": "['Citigroup has blockchain in sight']",
2596 | "target": "Barclays",
2597 | "sentiment_score": "0.198",
2598 | "aspects": "['Corporate/Strategy/Investment']"
2599 | },
2600 | {
2601 | "snippets": "['Citigroup has blockchain in sight']",
2602 | "target": "Citigroup",
2603 | "sentiment_score": "0.224",
2604 | "aspects": "['Corporate/Strategy/Investment']"
2605 | }
2606 | ]
2607 | },
2608 | "841": {
2609 | "sentence": "AB InBev approaches SABMiller to explore $250bn tie-up",
2610 | "info": [
2611 | {
2612 | "snippets": "['approaches SABMiller to explore $250bn tie-up']",
2613 | "target": "SAB Miller",
2614 | "sentiment_score": "0.237",
2615 | "aspects": "['Corporate/M&A/Proposed Merger']"
2616 | }
2617 | ]
2618 | },
2619 | "847": {
2620 | "sentence": "EU regulator backs approval for GSK injectable asthma drug",
2621 | "info": [
2622 | {
2623 | "snippets": "['regulator backs approval for GSK']",
2624 | "target": "GSK",
2625 | "sentiment_score": "0.379",
2626 | "aspects": "['Corporate/Regulatory']"
2627 | }
2628 | ]
2629 | },
2630 | "855": {
2631 | "sentence": "Glencore fight back over debt fears lifts shares",
2632 | "info": [
2633 | {
2634 | "snippets": "['over debt fears']",
2635 | "target": "Glencore",
2636 | "sentiment_score": "0.278",
2637 | "aspects": "['Corporate/Risks']"
2638 | }
2639 | ]
2640 | },
2641 | "856": {
2642 | "sentence": "News FeedFTSE 100 movers: Ashtead jumps on strong interims; Glencore, BP in ...",
2643 | "info": [
2644 | {
2645 | "snippets": "['Ashtead jumps on strong interims']",
2646 | "target": "Ashtead",
2647 | "sentiment_score": "0.461",
2648 | "aspects": "['Stock/Fundamentals']"
2649 | }
2650 | ]
2651 | },
2652 | "858": {
2653 | "sentence": "Brewer AB InBev seeks $275 bln tie-up with SABMiller",
2654 | "info": [
2655 | {
2656 | "snippets": "['seeks $275 bln tie-up with SABMiller']",
2657 | "target": "SABMiller",
2658 | "sentiment_score": "0.295",
2659 | "aspects": "['Corporate/M&A/Proposed Merger']"
2660 | }
2661 | ]
2662 | },
2663 | "861": {
2664 | "sentence": "AB InBev looks to win over SABMiller investors",
2665 | "info": [
2666 | {
2667 | "snippets": "['looks to win over SABMiller investors']",
2668 | "target": "SABMiller",
2669 | "sentiment_score": "0.276",
2670 | "aspects": "['Corporate/M&A/Proposed Merger']"
2671 | }
2672 | ]
2673 | },
2674 | "863": {
2675 | "sentence": "UPDATE 1-EU regulator backs approval for GSK injectable asthma drug",
2676 | "info": [
2677 | {
2678 | "snippets": "['EU regulator backs approval for GSK']",
2679 | "target": "GSK",
2680 | "sentiment_score": "0.418",
2681 | "aspects": "['Corporate/Regulatory']"
2682 | }
2683 | ]
2684 | },
2685 | "866": {
2686 | "sentence": "Copper market may get a 2003-style supply shock from Glencore closures",
2687 | "info": [
2688 | {
2689 | "snippets": "['Copper market']",
2690 | "target": "Glencore",
2691 | "sentiment_score": "-0.571",
2692 | "aspects": "['Market/Market']"
2693 | }
2694 | ]
2695 | },
2696 | "872": {
2697 | "sentence": "TalkTalk hires BAE Systems to investigate cyber attack",
2698 | "info": [
2699 | {
2700 | "snippets": "['TalkTalk hires BAE Systems']",
2701 | "target": "TalkTalk",
2702 | "sentiment_score": "-0.113",
2703 | "aspects": "['Corporate/Appointment/Staff Hiring']"
2704 | }
2705 | ]
2706 | },
2707 | "876": {
2708 | "sentence": "Renewed AB InBev Bid for SABMiller Ups Stake in Beer Battle",
2709 | "info": [
2710 | {
2711 | "snippets": "['AB InBev Bid for SABMiller Ups Stake']",
2712 | "target": "SAB Miller",
2713 | "sentiment_score": "0.236",
2714 | "aspects": "['Corporate/M&A/M&A']"
2715 | }
2716 | ]
2717 | },
2718 | "879": {
2719 | "sentence": "CompaniesAB InBev signals it won't go hostile for SABMiller",
2720 | "info": [
2721 | {
2722 | "snippets": "['signals it won't go hostile']",
2723 | "target": "SAB Miller",
2724 | "sentiment_score": "0.107",
2725 | "aspects": "['Corporate/Rumors/Scoop']"
2726 | }
2727 | ]
2728 | },
2729 | "885": {
2730 | "sentence": "AstraZeneca diabetes drug combination faces delay after FDA rebuff",
2731 | "info": [
2732 | {
2733 | "snippets": "['faces delay after FDA rebuf']",
2734 | "target": "AstraZeneca",
2735 | "sentiment_score": "-0.391",
2736 | "aspects": "['Corporate/Risks']"
2737 | }
2738 | ]
2739 | },
2740 | "891": {
2741 | "sentence": "Mylan Appoints Ranjan Ray Chaudhuri as Global Commercial Lead for Mylan's Over ...",
2742 | "info": [
2743 | {
2744 | "snippets": "['Appoints Ranjan Ray Chaudhuri as Global Commercial Lead']",
2745 | "target": "Mylan",
2746 | "sentiment_score": "0",
2747 | "aspects": "['Corporate/Appointment']"
2748 | }
2749 | ]
2750 | },
2751 | "896": {
2752 | "sentence": "SABMiller revenue hit by weaker EM currencies",
2753 | "info": [
2754 | {
2755 | "snippets": "['hit by weaker EM currencies']",
2756 | "target": "SAB Miller",
2757 | "sentiment_score": "-0.439",
2758 | "aspects": "['Market/Currency']"
2759 | }
2760 | ]
2761 | },
2762 | "897": {
2763 | "sentence": "UPDATE 5-SABMiller rejects AB InBev's $104 bln takeover approach",
2764 | "info": [
2765 | {
2766 | "snippets": "['rejects AB InBev's $104 bln takeover approach']",
2767 | "target": "SAB Miller",
2768 | "sentiment_score": "0.172",
2769 | "aspects": "['Corporate/M&A/Proposed Merger']"
2770 | }
2771 | ]
2772 | },
2773 | "907": {
2774 | "sentence": "Market Report: Eight-day rally ends for FTSE 100 and Standard Chartered",
2775 | "info": [
2776 | {
2777 | "snippets": "['Market Report: Eight-day rally ends for FTSE 100']",
2778 | "target": "Standard Chartered",
2779 | "sentiment_score": "0.008",
2780 | "aspects": "['Market/Market']"
2781 | }
2782 | ]
2783 | },
2784 | "908": {
2785 | "sentence": "AB InBev offers SABMiller $3 billion breakup fee",
2786 | "info": [
2787 | {
2788 | "snippets": "['offers SABMiller $3 billion breakup fee']",
2789 | "target": "SAB Miller",
2790 | "sentiment_score": "0.197",
2791 | "aspects": "['Corporate/M&A/M&A']"
2792 | }
2793 | ]
2794 | },
2795 | "912": {
2796 | "sentence": "GSK joins China trade push as UK trumpets healthcare deals",
2797 | "info": [
2798 | {
2799 | "snippets": "['joins China trade push']",
2800 | "target": "GSK",
2801 | "sentiment_score": "0.294",
2802 | "aspects": "['Economy/Trade']"
2803 | }
2804 | ]
2805 | },
2806 | "914": {
2807 | "sentence": "AB InBev ups offer for SABMiller as deadline looms",
2808 | "info": [
2809 | {
2810 | "snippets": "['ups offer for SABMiller']",
2811 | "target": "SAB Miller",
2812 | "sentiment_score": "0.257",
2813 | "aspects": "['Corporate/M&A/Proposed Merger']"
2814 | }
2815 | ]
2816 | },
2817 | "919": {
2818 | "sentence": "Tesco PLC's Recovery Continues With A £250m Cash Infusion",
2819 | "info": [
2820 | {
2821 | "snippets": "['Tesco PLC's Recovery Continues']",
2822 | "target": "Tesco",
2823 | "sentiment_score": "0.337",
2824 | "aspects": "['Stock/Fundamentals']"
2825 | }
2826 | ]
2827 | },
2828 | "922": {
2829 | "sentence": "METALS-Zinc surges 12 pct after Glencore cuts output, fuelling metals rally",
2830 | "info": [
2831 | {
2832 | "snippets": "['METALS-Zinc surges 12 pct after']",
2833 | "target": "Glencore",
2834 | "sentiment_score": "0.162",
2835 | "aspects": "['Market/Volatility']"
2836 | }
2837 | ]
2838 | },
2839 | "924": {
2840 | "sentence": "CompaniesUnilever sales lifted by ice cream in soft economy",
2841 | "info": [
2842 | {
2843 | "snippets": "['sales lifted by ice cream in soft economy']",
2844 | "target": "Unilever",
2845 | "sentiment_score": "0.383",
2846 | "aspects": "['Corporate/Sales']"
2847 | }
2848 | ]
2849 | },
2850 | "939": {
2851 | "sentence": "AB InBev's Latest Bid Said Unlikely to Win SABMiller's Approval",
2852 | "info": [
2853 | {
2854 | "snippets": "['Latest Bid Said Unlikely to Win SABMiller's Approval']",
2855 | "target": "SABMiller",
2856 | "sentiment_score": "0.127",
2857 | "aspects": "['Corporate/Rumors/Rumors']"
2858 | }
2859 | ]
2860 | },
2861 | "941": {
2862 | "sentence": "Britain's FTSE forges ahead as Shire surges",
2863 | "info": [
2864 | {
2865 | "snippets": "['FTSE forges ahead as Shire surges']",
2866 | "target": "Shire",
2867 | "sentiment_score": "0.512",
2868 | "aspects": "['Stock/Price Action']"
2869 | }
2870 | ]
2871 | },
2872 | "942": {
2873 | "sentence": "AB InBev attacks SABMiller bid rebuffal",
2874 | "info": [
2875 | {
2876 | "snippets": "['attacks SABMiller bid rebuffal']",
2877 | "target": "SABMiller",
2878 | "sentiment_score": "-0.158",
2879 | "aspects": "['Corporate/M&A/M&A']"
2880 | }
2881 | ]
2882 | },
2883 | "943": {
2884 | "sentence": "Anheuser-Busch InBev Increases Offer for Rival SABMiller",
2885 | "info": [
2886 | {
2887 | "snippets": "['InBev Increases Offer for Rival SABMiller']",
2888 | "target": "SABMiller",
2889 | "sentiment_score": "0.24",
2890 | "aspects": "['Corporate/M&A/Proposed Merger']"
2891 | }
2892 | ]
2893 | },
2894 | "945": {
2895 | "sentence": "Why I'd Buy ARM Holdings plc And BHP Billiton plc Today",
2896 | "info": [
2897 | {
2898 | "snippets": "['Why I'd Buy ARM Holdings plc And BHP Billiton plc Today']",
2899 | "target": "BHP Billiton",
2900 | "sentiment_score": "0.424",
2901 | "aspects": "['Corporate/Reputation/Scoop']"
2902 | }
2903 | ]
2904 | },
2905 | "946": {
2906 | "sentence": "Barclays PLC & Lloyds Banking Group PLC Are The 2 Banks I'd Buy Today",
2907 | "info": [
2908 | {
2909 | "snippets": "['Are The 2 Banks I'd Buy Today']",
2910 | "target": "Lloyds",
2911 | "sentiment_score": "0.434",
2912 | "aspects": "['Corporate/Reputation/Scoop']"
2913 | }
2914 | ]
2915 | },
2916 | "952": {
2917 | "sentence": "EasyJet Dismisses Lufthansa Low-Cost Plan in Contest for Germany",
2918 | "info": [
2919 | {
2920 | "snippets": "['Dismisses Lufthansa Low-Cost Plan in Contest for Germany']",
2921 | "target": "Lufthansa",
2922 | "sentiment_score": "-0.227",
2923 | "aspects": "['Corporate/Risks/Price Competition']"
2924 | }
2925 | ]
2926 | },
2927 | "963": {
2928 | "sentence": "EXCLUSIVE-BP, China's CNPC to unveil oil alliance - sources",
2929 | "info": [
2930 | {
2931 | "snippets": "['China's CNPC to unveil oil alliance - sources']",
2932 | "target": "CNPC",
2933 | "sentiment_score": "0.318",
2934 | "aspects": "['Corporate/Rumors/Scoop']"
2935 | }
2936 | ]
2937 | },
2938 | "965": {
2939 | "sentence": "SAB's Chairman Digs In With Board Divided on InBev Offer",
2940 | "info": [
2941 | {
2942 | "snippets": "['Digs In With Board Divided on InBev Offer']",
2943 | "target": "SABMiller",
2944 | "sentiment_score": "0.016",
2945 | "aspects": "['Corporate/Reputation/Dispute']"
2946 | }
2947 | ]
2948 | },
2949 | "966": {
2950 | "sentence": "Kinder Morgan and BP Form Joint Venture Limited Liability Company to Purchase ...",
2951 | "info": [
2952 | {
2953 | "snippets": "['form Joint Venture Limited Liability Company to Purchase ..']",
2954 | "target": "Kinder Morgan",
2955 | "sentiment_score": "0.225",
2956 | "aspects": "['Corporate/M&A/Joint Venture']"
2957 | }
2958 | ]
2959 | },
2960 | "967": {
2961 | "sentence": "Supreme Court Upholds $236 Million Jury Award Against ExxonMobil",
2962 | "info": [
2963 | {
2964 | "snippets": "['$236 Million Jury Award Agains']",
2965 | "target": "ExxonMobil",
2966 | "sentiment_score": "-0.459",
2967 | "aspects": "['Corporate/Legal']"
2968 | }
2969 | ]
2970 | },
2971 | "972": {
2972 | "sentence": "Standard Chartered's Shares Plunge 7% After Fitch Downgrade",
2973 | "info": [
2974 | {
2975 | "snippets": "['Shares Plunge 7%']",
2976 | "target": "Standard Chartered",
2977 | "sentiment_score": "-0.812",
2978 | "aspects": "['Stock/Coverage']"
2979 | }
2980 | ]
2981 | },
2982 | "980": {
2983 | "sentence": "WPP wins race for 'programmatic buying' agency Essence Digital",
2984 | "info": [
2985 | {
2986 | "snippets": "['wins race for 'programmatic buying' agency Essence Digital']",
2987 | "target": "WPP",
2988 | "sentiment_score": "0.238",
2989 | "aspects": "['Corporate/M&A/M&A']"
2990 | }
2991 | ]
2992 | },
2993 | "981": {
2994 | "sentence": "BHP Billiton share price: Brazil to sue Samarco for £3.5bn",
2995 | "info": [
2996 | {
2997 | "snippets": "['Brazil to sue Samarco for £3.5bn']",
2998 | "target": "Samarco",
2999 | "sentiment_score": "-0.637",
3000 | "aspects": "['Corporate/Legal/Lawsuit']"
3001 | }
3002 | ]
3003 | },
3004 | "986": {
3005 | "sentence": "G4S slides on balance sheet worries",
3006 | "info": [
3007 | {
3008 | "snippets": "['slides on balance sheet worries']",
3009 | "target": "G4S",
3010 | "sentiment_score": "-0.593",
3011 | "aspects": "['Corporate/Risks']"
3012 | }
3013 | ]
3014 | },
3015 | "988": {
3016 | "sentence": "FDA approves AstraZeneca drug for advanced lung cancer",
3017 | "info": [
3018 | {
3019 | "snippets": "['FDA approves AstraZeneca']",
3020 | "target": "AstraZeneca",
3021 | "sentiment_score": "0.507",
3022 | "aspects": "['Corporate/Regulatory']"
3023 | }
3024 | ]
3025 | },
3026 | "991": {
3027 | "sentence": "HSBC appoints business leaders to board",
3028 | "info": [
3029 | {
3030 | "snippets": "['appoints business leaders to board']",
3031 | "target": "HSBC",
3032 | "sentiment_score": "0.154",
3033 | "aspects": "['Corporate/Appointment']"
3034 | }
3035 | ]
3036 | },
3037 | "999": {
3038 | "sentence": "HSBC shakes up board with two new business chiefs, three departures",
3039 | "info": [
3040 | {
3041 | "snippets": "['shakes up board with two new business chiefs, three departures']",
3042 | "target": "HSBC",
3043 | "sentiment_score": "-0.074",
3044 | "aspects": "['Corporate/Appointment']"
3045 | }
3046 | ]
3047 | },
3048 | "1000": {
3049 | "sentence": "AstraZeneca wins FDA approval for key new lung cancer pill",
3050 | "info": [
3051 | {
3052 | "snippets": "['FDA approval for key new lung cancer pill']",
3053 | "target": "AstraZeneca",
3054 | "sentiment_score": "0.549",
3055 | "aspects": "['Corporate/Regulatory']"
3056 | }
3057 | ]
3058 | },
3059 | "1002": {
3060 | "sentence": "UPDATE 1-Lloyds to cut 945 jobs as part of 3-year restructuring plan",
3061 | "info": [
3062 | {
3063 | "snippets": "['cut 945 jobs as part of 3-year restructuring plan']",
3064 | "target": "Lloyds",
3065 | "sentiment_score": "-0.266",
3066 | "aspects": "['Corporate/Strategy']"
3067 | }
3068 | ]
3069 | },
3070 | "1005": {
3071 | "sentence": "Standard Chartered Shifts Emerging-Markets Strategy After Losses",
3072 | "info": [
3073 | {
3074 | "snippets": "['Shifts Emerging-Markets Strategy']",
3075 | "target": "Standard Chartered",
3076 | "sentiment_score": "-0.461",
3077 | "aspects": "['Corporate/Strategy']"
3078 | }
3079 | ]
3080 | },
3081 | "1012": {
3082 | "sentence": "AstraZeneca's Lung Cancer Drug Tagrisso Gets FDA Approval",
3083 | "info": [
3084 | {
3085 | "snippets": "['Tagrisso Gets FDA Approval']",
3086 | "target": "AstraZeneca",
3087 | "sentiment_score": "0.393",
3088 | "aspects": "['Corporate/Appointment']"
3089 | }
3090 | ]
3091 | },
3092 | "1016": {
3093 | "sentence": "Severn Trent share price rises as first half profit inches up as customer ...",
3094 | "info": [
3095 | {
3096 | "snippets": "['share price rises as first half profi']",
3097 | "target": "Severn Trent",
3098 | "sentiment_score": "0.526",
3099 | "aspects": "['Stock/Price Action']"
3100 | }
3101 | ]
3102 | },
3103 | "1022": {
3104 | "sentence": "Glencore sees Tripoli-based NOC as sole legal seller of Libyan oil",
3105 | "info": [
3106 | {
3107 | "snippets": "['as sole legal seller of Libyan oil']",
3108 | "target": "Glencore",
3109 | "sentiment_score": "0.037",
3110 | "aspects": "['Corporate/Legal']"
3111 | }
3112 | ]
3113 | },
3114 | "1023": {
3115 | "sentence": "Lloyds to cut 945 jobs as part of three-year restructuring strategy",
3116 | "info": [
3117 | {
3118 | "snippets": "['as part of three-year restructuring strategy']",
3119 | "target": "Lloyds",
3120 | "sentiment_score": "-0.532",
3121 | "aspects": "['Corporate/Strategy/Reorganization']"
3122 | }
3123 | ]
3124 | },
3125 | "1024": {
3126 | "sentence": "AstraZeneca to Buy ZS Pharma for $2.7 Billion",
3127 | "info": [
3128 | {
3129 | "snippets": "['to Buy ZS Pharma for $2.7 Billion']",
3130 | "target": "ZS Pharma",
3131 | "sentiment_score": "0.593",
3132 | "aspects": "['Corporate/M&A/M&A']"
3133 | }
3134 | ]
3135 | },
3136 | "1025": {
3137 | "sentence": "Ackman, in email, says supports Valeant CEO Pearson",
3138 | "info": [
3139 | {
3140 | "snippets": "['in email, says supports']",
3141 | "target": "Valeant",
3142 | "sentiment_score": "0.166",
3143 | "aspects": "['Corporate/Company Communication']"
3144 | }
3145 | ]
3146 | },
3147 | "1029": {
3148 | "sentence": "AstraZeneca sells US drug rights to Perrigo for $380 mln",
3149 | "info": [
3150 | {
3151 | "snippets": "['sells US drug rights to Perrigo for $380 mln']",
3152 | "target": "Perrigo",
3153 | "sentiment_score": "0.326",
3154 | "aspects": "['Corporate/M&A/M&A']"
3155 | }
3156 | ]
3157 | },
3158 | "1032": {
3159 | "sentence": "UPDATE 1-AstraZeneca buys ZS Pharma for $2.7 billion, pips Actelion",
3160 | "info": [
3161 | {
3162 | "snippets": "['AstraZeneca buys ZS Pharma for $2.7 billion, pips Actelion']",
3163 | "target": "ZS Pharma",
3164 | "sentiment_score": "0.468",
3165 | "aspects": "['Corporate/M&A/M&A']"
3166 | }
3167 | ]
3168 | },
3169 | "1033": {
3170 | "sentence": "CORRECTED-Shire to buy Dyax for about $5.9 bln",
3171 | "info": [
3172 | {
3173 | "snippets": "['Shire to buy Dyax for about $5.9 bln']",
3174 | "target": "Shire",
3175 | "sentiment_score": "0.402",
3176 | "aspects": "['Corporate/M&A/M&A']"
3177 | }
3178 | ]
3179 | },
3180 | "1037": {
3181 | "sentence": "Barclays poised to replace Sir Mike Rake as he heads for exit",
3182 | "info": [
3183 | {
3184 | "snippets": "['poised to replace Sir Mike Rake as he heads for exit']",
3185 | "target": "Barclays",
3186 | "sentiment_score": "0.077",
3187 | "aspects": "['Corporate/Appointment']"
3188 | }
3189 | ]
3190 | },
3191 | "1038": {
3192 | "sentence": "AstraZeneca Acquires ZS Pharma in $2.7 Billion Deal",
3193 | "info": [
3194 | {
3195 | "snippets": "['AstraZeneca Acquires ZS Pharma in $2.7 Billion Deal']",
3196 | "target": "ZS Pharma",
3197 | "sentiment_score": "0.52",
3198 | "aspects": "['Corporate/M&A/M&A']"
3199 | }
3200 | ]
3201 | },
3202 | "1039": {
3203 | "sentence": "AstraZeneca shares climb 3% as drug maker ups profits forecasts",
3204 | "info": [
3205 | {
3206 | "snippets": "['shares climb 3% as drug maker ups profits forecasts']",
3207 | "target": "AstraZeneca",
3208 | "sentiment_score": "0.64",
3209 | "aspects": "['Stock/Price Action/Bullish', 'Corporate/Financial/Financial Results/Earnings']"
3210 | }
3211 | ]
3212 | },
3213 | "1040": {
3214 | "sentence": "Peroni and Grolsch put up for sale as AB InBev plans acquisition of SABMiller",
3215 | "info": [
3216 | {
3217 | "snippets": "['Peroni and Grolsch put up for sale as ']",
3218 | "target": "SABMiller",
3219 | "sentiment_score": "0.551",
3220 | "aspects": "['Corporate/Sales/Sales']"
3221 | }
3222 | ]
3223 | },
3224 | "1044": {
3225 | "sentence": "easyJet expects resilient demand to withstand security fears",
3226 | "info": [
3227 | {
3228 | "snippets": "['expects resilient demand to withstand security fears']",
3229 | "target": "easyJet",
3230 | "sentiment_score": "0.165",
3231 | "aspects": "['Corporate/Risks']"
3232 | }
3233 | ]
3234 | },
3235 | "1045": {
3236 | "sentence": "Compass Group says positive for year ahead",
3237 | "info": [
3238 | {
3239 | "snippets": "['says positive for year ahead']",
3240 | "target": "Compass Group",
3241 | "sentiment_score": "0.634",
3242 | "aspects": "['Stock/Price Action/Future Price/Direction']"
3243 | }
3244 | ]
3245 | },
3246 | "1052": {
3247 | "sentence": "US dollar wipes out sales gains for SABMiller",
3248 | "info": [
3249 | {
3250 | "snippets": "['wipes out sales gains for SABMiller']",
3251 | "target": "SABMiller",
3252 | "sentiment_score": "-0.582",
3253 | "aspects": "['Corporate/Sales/Sales']"
3254 | }
3255 | ]
3256 | },
3257 | "1053": {
3258 | "sentence": "UPDATE 1-SABMiller 2nd-quarter underlying sales rise, forex impacts margins",
3259 | "info": [
3260 | {
3261 | "snippets": "[' underlying sales rise']",
3262 | "target": "SABMiller",
3263 | "sentiment_score": "0.043",
3264 | "aspects": "['Corporate/Sales/Sales']"
3265 | }
3266 | ]
3267 | },
3268 | "1057": {
3269 | "sentence": "UPDATE 2-Pricey beers lift SABMiller's quarterly underlying sales",
3270 | "info": [
3271 | {
3272 | "snippets": "['lift SABMiller's quarterly underlying sales']",
3273 | "target": "SABMiller",
3274 | "sentiment_score": "0.429",
3275 | "aspects": "['Corporate/Sales/Sales']"
3276 | }
3277 | ]
3278 | },
3279 | "1061": {
3280 | "sentence": "Valeant CEO Pledges to Heed Critics After `Painful' Experience",
3281 | "info": [
3282 | {
3283 | "snippets": "['Heed Critics After `Painful' Experience']",
3284 | "target": "Valeant",
3285 | "sentiment_score": "-0.381",
3286 | "aspects": "['Corporate/Company Communication']"
3287 | }
3288 | ]
3289 | },
3290 | "1063": {
3291 | "sentence": "Are Aviva plc, Direct Line Insurance Group PLC And Admiral Group plc Set To Soar?",
3292 | "info": [
3293 | {
3294 | "snippets": "['No real aspect?']",
3295 | "target": "Aviva",
3296 | "sentiment_score": "0.324",
3297 | "aspects": "['Corporate/Company Communication']"
3298 | },
3299 | {
3300 | "snippets": "['No real aspect?']",
3301 | "target": "Direct Line Insurance Group PLC",
3302 | "sentiment_score": "0.345",
3303 | "aspects": "['Corporate/Company Communication']"
3304 | }
3305 | ]
3306 | },
3307 | "1065": {
3308 | "sentence": "StanChart and RBS struggle in Bank of England stress tests",
3309 | "info": [
3310 | {
3311 | "snippets": "['RBS struggle in Bank of England stress tests']",
3312 | "target": "RBS",
3313 | "sentiment_score": "-0.738",
3314 | "aspects": "['Economy/Central Banks']"
3315 | },
3316 | {
3317 | "snippets": "['struggle in Bank of England stress tests']",
3318 | "target": "Standard Chartered",
3319 | "sentiment_score": "-0.39",
3320 | "aspects": "['Corporate/Regulatory']"
3321 | }
3322 | ]
3323 | },
3324 | "1073": {
3325 | "sentence": "Barclays sells benchmark indices unit to Bloomberg",
3326 | "info": [
3327 | {
3328 | "snippets": "['sells benchmark indices unit']",
3329 | "target": "Bloomberg",
3330 | "sentiment_score": "0.281",
3331 | "aspects": "['Corporate/Strategy/Divestment']"
3332 | }
3333 | ]
3334 | },
3335 | "1077": {
3336 | "sentence": "Sainsbury's, Asda, Tesco and Morrisons will all cut petrol prices as oil falls ...",
3337 | "info": [
3338 | {
3339 | "snippets": "['will all cut petrol prices as oil falls ...']",
3340 | "target": "Morrisons",
3341 | "sentiment_score": "-0.251",
3342 | "aspects": "['Stock/Price Action/Future Price']"
3343 | },
3344 | {
3345 | "snippets": "['will all cut petrol prices as oil falls ...']",
3346 | "target": "Sainsbury",
3347 | "sentiment_score": "-0.259",
3348 | "aspects": "['Corporate/Financial/Bankruptcy/Entering bankruptcy']"
3349 | },
3350 | {
3351 | "snippets": "['will all cut petrol prices as oil falls ...']",
3352 | "target": "Tesco",
3353 | "sentiment_score": "-0.222",
3354 | "aspects": "['Stock/Price Action/Future Price']"
3355 | }
3356 | ]
3357 | },
3358 | "1079": {
3359 | "sentence": "EU drops Shell, BP, Statoil from ethanol benchmark investigation",
3360 | "info": [
3361 | {
3362 | "snippets": "['benchmark investigation']",
3363 | "target": "Shell",
3364 | "sentiment_score": "0.276",
3365 | "aspects": "['Stock/Insider Activity/Insider Trading']"
3366 | },
3367 | {
3368 | "snippets": "['benchmark investigation']",
3369 | "target": "Statoil",
3370 | "sentiment_score": "0.294",
3371 | "aspects": "['Stock/Insider Activity/Insider Trading']"
3372 | }
3373 | ]
3374 | },
3375 | "1089": {
3376 | "sentence": "AstraZeneca Explores Potential Deal With Acerta for Cancer Drug",
3377 | "info": [
3378 | {
3379 | "snippets": "['Explores Potential Deal ']",
3380 | "target": "AstraZeneca",
3381 | "sentiment_score": "0.372",
3382 | "aspects": "['Corporate/M&A/Joint Venture']"
3383 | }
3384 | ]
3385 | },
3386 | "1095": {
3387 | "sentence": "Shell and BG Shareholders to Vote on Deal at End of January",
3388 | "info": [
3389 | {
3390 | "snippets": "['Shareholders to Vote on Deal at End of January']",
3391 | "target": "Shell",
3392 | "sentiment_score": "0",
3393 | "aspects": "['Corporate/Sales/Deal']"
3394 | }
3395 | ]
3396 | },
3397 | "1109": {
3398 | "sentence": "AstraZeneca chases Acerta to secure next cancer drug winner",
3399 | "info": [
3400 | {
3401 | "snippets": "['chases Acerta to secure next cancer drug winner']",
3402 | "target": "AstraZeneca",
3403 | "sentiment_score": "0.519",
3404 | "aspects": "['Stock/Buyside/Stock Buyside']"
3405 | }
3406 | ]
3407 | },
3408 | "1112": {
3409 | "sentence": "CompaniesTesco off to a bad start over Xmas – Kantar",
3410 | "info": [
3411 | {
3412 | "snippets": "['off to a bad start over Xmas']",
3413 | "target": "Tesco",
3414 | "sentiment_score": "-0.604",
3415 | "aspects": "['Stock/Price Action']"
3416 | }
3417 | ]
3418 | },
3419 | "1117": {
3420 | "sentence": "DBS, Julius Baer emerge as potential bidders for Barclays Asia wealth unit ...",
3421 | "info": [
3422 | {
3423 | "snippets": "['emerge as potential bidders for']",
3424 | "target": "Julius Baer",
3425 | "sentiment_score": "0.31",
3426 | "aspects": "['Stock/Buyside/Stock Buyside']"
3427 | }
3428 | ]
3429 | },
3430 | "1118": {
3431 | "sentence": "Why AstraZeneca plc & Dixons Carphone PLC Are Red-Hot Growth Stars!",
3432 | "info": [
3433 | {
3434 | "snippets": "['Are Red-Hot Growth Stars']",
3435 | "target": "Dixons Carphone",
3436 | "sentiment_score": "0.766",
3437 | "aspects": "['Corporate/Dividend Policy/Dividend/Dividend going up']"
3438 | }
3439 | ]
3440 | },
3441 | "1120": {
3442 | "sentence": "BBCN Bancorp to buy Wilshire Bancorp in $1 bln deal",
3443 | "info": [
3444 | {
3445 | "snippets": "['to buy Wilshire Bancorp in $1 bln deal']",
3446 | "target": "Wilshire Bancorp",
3447 | "sentiment_score": "0.818",
3448 | "aspects": "['Corporate/M&A']"
3449 | }
3450 | ]
3451 | },
3452 | "1122": {
3453 | "sentence": "ITV share price jumps on report of Comcast's NBCUniversal bidding to takeover ...",
3454 | "info": [
3455 | {
3456 | "snippets": "['price jumps on report of Comcast's NBCUniversal']",
3457 | "target": "Comcast",
3458 | "sentiment_score": "0.623",
3459 | "aspects": "['Stock/Price Action']"
3460 | },
3461 | {
3462 | "snippets": "['share price jumps on report of']",
3463 | "target": "ITV",
3464 | "sentiment_score": "0.611",
3465 | "aspects": "['Stock/Price Action/Current Price/Stock Price']"
3466 | }
3467 | ]
3468 | },
3469 | "1131": {
3470 | "sentence": "Glencore Studies Possible IPO for Agricultural Trading Business",
3471 | "info": [
3472 | {
3473 | "snippets": "['Possible IPO for Agricultural Trading Business']",
3474 | "target": "Glencore",
3475 | "sentiment_score": "0.408",
3476 | "aspects": "['Stock/IPO']"
3477 | }
3478 | ]
3479 | },
3480 | "1132": {
3481 | "sentence": "Can Christmas Save Sainsbury's plc And Tesco plc?",
3482 | "info": [
3483 | {
3484 | "snippets": "['Can Christmas Save..... ?']",
3485 | "target": "Tesco",
3486 | "sentiment_score": "-0.175",
3487 | "aspects": "['Corporate/Rumors/Rumors']"
3488 | }
3489 | ]
3490 | },
3491 | "1133": {
3492 | "sentence": "UPDATE 1-AstraZeneca boosts respiratory unit with $575 mln Takeda deal",
3493 | "info": [
3494 | {
3495 | "snippets": "[' boosts respiratory unit with $575 mln Takeda deal']",
3496 | "target": "Takeda",
3497 | "sentiment_score": "0.47",
3498 | "aspects": "['Corporate/M&A/']"
3499 | }
3500 | ]
3501 | },
3502 | "1142": {
3503 | "sentence": "Bilfinger Industrial Services win £100m BP contract extension",
3504 | "info": [
3505 | {
3506 | "snippets": "['win £100m BP contract extension']",
3507 | "target": "BP",
3508 | "sentiment_score": "0.113",
3509 | "aspects": "['Corporate/Sales/Deal']"
3510 | }
3511 | ]
3512 | },
3513 | "1143": {
3514 | "sentence": "Standard Chartered, RBS Escape Capital Raising in Stress Test",
3515 | "info": [
3516 | {
3517 | "snippets": "['Escape Capital Raising in Stress Test']",
3518 | "target": "RBS",
3519 | "sentiment_score": "0.335",
3520 | "aspects": "['Economy/Central Banks']"
3521 | },
3522 | {
3523 | "snippets": "['Escape Capital Raising in Stress Test']",
3524 | "target": "Standard Chartered",
3525 | "sentiment_score": "0.321",
3526 | "aspects": "['Corporate/Regulatory']"
3527 | }
3528 | ]
3529 | },
3530 | "1147": {
3531 | "sentence": "AstraZeneca weighing up Acerta bid to secure blood cancer drug",
3532 | "info": [
3533 | {
3534 | "snippets": "['weighing up Acerta bid to']",
3535 | "target": "AstraZeneca",
3536 | "sentiment_score": "0.284",
3537 | "aspects": "['Stock/Buyside/Stock Buyside']"
3538 | }
3539 | ]
3540 | },
3541 | "1154": {
3542 | "sentence": "2 Turnaround Buys For 2016? BHP Billiton plc And Home Retail Group Plc",
3543 | "info": [
3544 | {
3545 | "snippets": "['2 Turnaround Buys']",
3546 | "target": "Home Retail Group",
3547 | "sentiment_score": "0.492",
3548 | "aspects": "['Economy/Central Banks/Monetary Policy/Monetary Policy - SNB']"
3549 | }
3550 | ]
3551 | },
3552 | "1155": {
3553 | "sentence": "L&G completes UK's largest medically underwritten bulk pension risk deal",
3554 | "info": [
3555 | {
3556 | "snippets": "['completes UK's largest medically underwritten bulk pension risk dea']",
3557 | "target": "L&G",
3558 | "sentiment_score": "0.25",
3559 | "aspects": "['Corporate/Risks']"
3560 | }
3561 | ]
3562 | },
3563 | "1160": {
3564 | "sentence": "Drugmaker Shire to buy Baxalta for $32 billion after 6-month pursuit",
3565 | "info": [
3566 | {
3567 | "snippets": "['to buy Baxalta for $32 billion after 6-month pursuit']",
3568 | "target": "Shire",
3569 | "sentiment_score": "0.437",
3570 | "aspects": "['Corporate/M&A/M&A']"
3571 | }
3572 | ]
3573 | },
3574 | "1165": {
3575 | "sentence": "Kingfisher share price slides on cost to implement new strategy",
3576 | "info": [
3577 | {
3578 | "snippets": "['share price slides on cost to']",
3579 | "target": "Kingfisher",
3580 | "sentiment_score": "-0.786",
3581 | "aspects": "['Stock/Price Action']"
3582 | }
3583 | ]
3584 | },
3585 | "1168": {
3586 | "sentence": "Shire says internal synergy goals from Baxalta deal higher",
3587 | "info": [
3588 | {
3589 | "snippets": "['says internal synergy goals from Baxalta deal higher']",
3590 | "target": "Shire",
3591 | "sentiment_score": "0.287",
3592 | "aspects": "['Corporate/Company Communication/Dividend']"
3593 | }
3594 | ]
3595 | },
3596 | "1172": {
3597 | "sentence": "European shares plunge, roiled by BHP and oil; hopes turn to ECB",
3598 | "info": [
3599 | {
3600 | "snippets": "['shares plunge,']",
3601 | "target": "BHP",
3602 | "sentiment_score": "-0.736",
3603 | "aspects": "['Economy/Central Banks/?']"
3604 | }
3605 | ]
3606 | },
3607 | "1183": {
3608 | "sentence": "Morrisons and Debenhams surprise City with Christmas bounce back",
3609 | "info": [
3610 | {
3611 | "snippets": "['with Christmas bounce back']",
3612 | "target": "Debenhams",
3613 | "sentiment_score": "0.573",
3614 | "aspects": "['Stock/Price Action/Volatility']"
3615 | },
3616 | {
3617 | "snippets": "['surprise City with Christmas bounce back']",
3618 | "target": "Morrisons",
3619 | "sentiment_score": "0.619",
3620 | "aspects": "['Stock/Price Action/Volatility']"
3621 | }
3622 | ]
3623 | },
3624 | "1190": {
3625 | "sentence": "Britain's FTSE falls back with Ashtead, commodities under pressure",
3626 | "info": [
3627 | {
3628 | "snippets": "['FTSE falls back with Ashtead,']",
3629 | "target": "Ashtead",
3630 | "sentiment_score": "-0.59",
3631 | "aspects": "['Market/Volatility']"
3632 | }
3633 | ]
3634 | },
3635 | "1192": {
3636 | "sentence": "Tesco shares jump 6% after Christmas sales beat expectations",
3637 | "info": [
3638 | {
3639 | "snippets": "['jump 6% after Christmas sales beat expectations']",
3640 | "target": "Tesco",
3641 | "sentiment_score": "0.814",
3642 | "aspects": "['Corporate/Sales']"
3643 | }
3644 | ]
3645 | },
3646 | "1195": {
3647 | "sentence": "CEOs of BPM, UBI meet Italy econ minister as M&A talk heats up",
3648 | "info": [
3649 | {
3650 | "snippets": "['meet Italy econ minister as M&A talk heats up']",
3651 | "target": "UBI",
3652 | "sentiment_score": "0.133",
3653 | "aspects": "['Corporate/Risks/Extraordinary Meeting']"
3654 | }
3655 | ]
3656 | },
3657 | "1200": {
3658 | "sentence": "CompaniesHome Retail trims gains but is considered 'in play'",
3659 | "info": [
3660 | {
3661 | "snippets": "['trims gains but is considered 'in play'']",
3662 | "target": "Home Retail",
3663 | "sentiment_score": "0.135",
3664 | "aspects": "['Stock/Price Action']"
3665 | }
3666 | ]
3667 | },
3668 | "1202": {
3669 | "sentence": "Philippines' San Miguel says to partner with Kirin if it bids for SABMiller's ...",
3670 | "info": [
3671 | {
3672 | "snippets": "['says to partner with Kirin if']",
3673 | "target": "SABMiller",
3674 | "sentiment_score": "0.577",
3675 | "aspects": "['Corporate/Sales/Partnership']"
3676 | },
3677 | {
3678 | "snippets": "['says to partner with Kirin if']",
3679 | "target": "San Miguel",
3680 | "sentiment_score": "0.19",
3681 | "aspects": "['Corporate/Sales/Partnership']"
3682 | }
3683 | ]
3684 | },
3685 | "1203": {
3686 | "sentence": "Investors Remain Skeptical About Shell-BG Deal",
3687 | "info": [
3688 | {
3689 | "snippets": "['Investors Remain Skeptical About Shell-BG Deal']",
3690 | "target": "Shell",
3691 | "sentiment_score": "-0.266",
3692 | "aspects": "['Corporate/Rumors/Rumors']"
3693 | }
3694 | ]
3695 | },
3696 | "1210": {
3697 | "sentence": "MarketsShire up 2.5% and Baxalta up 6% on $32bn deal",
3698 | "info": [
3699 | {
3700 | "snippets": "['MarketsShire up 2.5% ']",
3701 | "target": "Shire",
3702 | "sentiment_score": "0.487",
3703 | "aspects": "['Stock/Buyside/Stock Buyside']"
3704 | }
3705 | ]
3706 | },
3707 | "1217": {
3708 | "sentence": "Shire share price under pressure after $32bn Baxalta deal",
3709 | "info": [
3710 | {
3711 | "snippets": "['share price under pressure after $32bn Baxalta deal']",
3712 | "target": "Baxalta",
3713 | "sentiment_score": "-0.198",
3714 | "aspects": "['Stock/Price Action']"
3715 | },
3716 | {
3717 | "snippets": "['share price under pressure after $32bn Baxalta deal']",
3718 | "target": "Shire",
3719 | "sentiment_score": "-0.186",
3720 | "aspects": "['Stock/Price Action/Volatility']"
3721 | }
3722 | ]
3723 | },
3724 | "1218": {
3725 | "sentence": "Valeant Names Interim Leader as CEO Remains Hospitalized",
3726 | "info": [
3727 | {
3728 | "snippets": "['Interim Leader as CEO Remains Hospitalized']",
3729 | "target": "Valeant",
3730 | "sentiment_score": "0",
3731 | "aspects": "['Corporate/Appointment']"
3732 | }
3733 | ]
3734 | },
3735 | "1222": {
3736 | "sentence": "Valeant Said to Name New CEO With Pearson Still Hospitalized",
3737 | "info": [
3738 | {
3739 | "snippets": "['Said to Name New CEO With Pearson Still Hospitalized']",
3740 | "target": "Valeant",
3741 | "sentiment_score": "0.015",
3742 | "aspects": "['Corporate/Appointment']"
3743 | }
3744 | ]
3745 | },
3746 | "1223": {
3747 | "sentence": "Shares in BAE Systems hit 10-month high on rating upgrade",
3748 | "info": [
3749 | {
3750 | "snippets": "['hit 10-month high on rating upgrade']",
3751 | "target": "BAE",
3752 | "sentiment_score": "0.905",
3753 | "aspects": "['Stock/Coverage']"
3754 | }
3755 | ]
3756 | },
3757 | "1224": {
3758 | "sentence": "Japan's Asahi to submit bid next week for SABMiller's Grolsch and Peroni - Yomiuri",
3759 | "info": [
3760 | {
3761 | "snippets": "['to submit bid next week']",
3762 | "target": "SABMiller",
3763 | "sentiment_score": "0.236",
3764 | "aspects": "['Stock/Buyside/Stock Buyside']"
3765 | }
3766 | ]
3767 | },
3768 | "1230": {
3769 | "sentence": "CompaniesDixons Carphone to close 134 UK stores as sales jump",
3770 | "info": [
3771 | {
3772 | "snippets": "['to close 134 UK stores as sales jump']",
3773 | "target": "Dixons Carphone",
3774 | "sentiment_score": "0.144",
3775 | "aspects": "['Corporate/Sales']"
3776 | }
3777 | ]
3778 | },
3779 | "1239": {
3780 | "sentence": "Broker tips: RBS, Croda, Sage",
3781 | "info": [
3782 | {
3783 | "snippets": "['Broker tips:']",
3784 | "target": "RBS",
3785 | "sentiment_score": "0.381",
3786 | "aspects": "['Corporate/Rumors/Rumors']"
3787 | },
3788 | {
3789 | "snippets": "['Broker tips:']",
3790 | "target": "Sage",
3791 | "sentiment_score": "0.393",
3792 | "aspects": "['Corporate/Rumors/Rumors']"
3793 | }
3794 | ]
3795 | },
3796 | "1241": {
3797 | "sentence": "Shell share price: Standard Life announce position against BG acquisition",
3798 | "info": [
3799 | {
3800 | "snippets": "['Standard Life announce position against BG acquisition']",
3801 | "target": "Shell",
3802 | "sentiment_score": "-0.134",
3803 | "aspects": "['Corporate/M&A/M&A']"
3804 | },
3805 | {
3806 | "snippets": "['Standard Life announce position against BG acquisition']",
3807 | "target": "Standard Life",
3808 | "sentiment_score": "-0.099",
3809 | "aspects": "['Corporate/M&A/M&A']"
3810 | }
3811 | ]
3812 | },
3813 | "1242": {
3814 | "sentence": "Tesco share price down as grocer faces SFO investigation outcome",
3815 | "info": [
3816 | {
3817 | "snippets": "['share price down']",
3818 | "target": "Tesco",
3819 | "sentiment_score": "-0.542",
3820 | "aspects": "['Stock/Price Action']"
3821 | }
3822 | ]
3823 | },
3824 | "1243": {
3825 | "sentence": "Britain's FTSE outperforms Europe, Royal Mail and Tesco rise",
3826 | "info": [
3827 | {
3828 | "snippets": "['Britain's FTSE outperforms Europe, Royal Mail and Tesco rise']",
3829 | "target": "Tesco",
3830 | "sentiment_score": "0.439",
3831 | "aspects": "['Market/Volatility/Volatility']"
3832 | }
3833 | ]
3834 | },
3835 | "1256": {
3836 | "sentence": "Greene King's third quarter sales boosted by festive season",
3837 | "info": [
3838 | {
3839 | "snippets": "['third quarter sales boosted']",
3840 | "target": "Greene King",
3841 | "sentiment_score": "0.363",
3842 | "aspects": "['Corporate/Sales']"
3843 | }
3844 | ]
3845 | },
3846 | "1283": {
3847 | "sentence": "InterContinental Hotels Group share price climbs on $1.5bn special dividend",
3848 | "info": [
3849 | {
3850 | "snippets": "['$1.5bn special dividend']",
3851 | "target": "InterContinental Hotels Group",
3852 | "sentiment_score": "0.631",
3853 | "aspects": "['Corporate/Dividend Policy']"
3854 | }
3855 | ]
3856 | },
3857 | "1284": {
3858 | "sentence": "Amazon to attack UK grocery market with Morrisons deal",
3859 | "info": [
3860 | {
3861 | "snippets": "['to attack UK grocery market']",
3862 | "target": "Morrisons",
3863 | "sentiment_score": "0.333",
3864 | "aspects": "['Market/Market/Market Outlook']"
3865 | }
3866 | ]
3867 | },
3868 | "1287": {
3869 | "sentence": "AstraZeneca share price: Acerta deal pays off with orphan drug status",
3870 | "info": [
3871 | {
3872 | "snippets": "['share price: Acerta deal pays off']",
3873 | "target": "AstraZeneca",
3874 | "sentiment_score": "0.495",
3875 | "aspects": "['Corporate/M&A']"
3876 | }
3877 | ]
3878 | },
3879 | "1288": {
3880 | "sentence": "BHP Billiton posts big loss, slashes dividend",
3881 | "info": [
3882 | {
3883 | "snippets": "['slashes dividend']",
3884 | "target": "BHP Billiton",
3885 | "sentiment_score": "-0.938",
3886 | "aspects": "['Corporate/Dividend Policy']"
3887 | }
3888 | ]
3889 | },
3890 | "1289": {
3891 | "sentence": "Merged LSE and Deutsche Börse would be led by Germany's Kengeter",
3892 | "info": [
3893 | {
3894 | "snippets": "['Merged LSE and Deutsche Börse']",
3895 | "target": "LSE",
3896 | "sentiment_score": "0.136",
3897 | "aspects": "['Corporate/M&A/M&A']"
3898 | }
3899 | ]
3900 | },
3901 | "1297": {
3902 | "sentence": "Should You Buy Jumbo Yielders British American Tobacco plc, Centrica PLC & John Wood Group PLC?",
3903 | "info": [
3904 | {
3905 | "snippets": "['Should You Buy....?']",
3906 | "target": "Centrica PLC",
3907 | "sentiment_score": "0.1",
3908 | "aspects": "['Corporate/Rumors/Scoop']"
3909 | },
3910 | {
3911 | "snippets": "['Should You Buy....?']",
3912 | "target": "John Wood Group PLC",
3913 | "sentiment_score": "0.103",
3914 | "aspects": "['Corporate/Rumors/Scoop']"
3915 | }
3916 | ]
3917 | },
3918 | "1311": {
3919 | "sentence": "Is Trouble Brewing At Legal & General Group Plc And Aviva plc?",
3920 | "info": [
3921 | {
3922 | "snippets": "['Is Trouble Brewing At Legal & General Group Plc And Aviva plc?']",
3923 | "target": "Legal & General Group Plc",
3924 | "sentiment_score": "-0.271",
3925 | "aspects": "['Corporate/Rumors/Rumors']"
3926 | }
3927 | ]
3928 | },
3929 | "1313": {
3930 | "sentence": "BHP Billiton drags FTSE lower after slashing dividend",
3931 | "info": [
3932 | {
3933 | "snippets": "['after slashing dividend']",
3934 | "target": "BHP Billiton",
3935 | "sentiment_score": "-0.604",
3936 | "aspects": "['Corporate/Dividend Policy']"
3937 | }
3938 | ]
3939 | },
3940 | "1314": {
3941 | "sentence": "BHP Billiton slashes dividend, posts $5.67 billion net loss",
3942 | "info": [
3943 | {
3944 | "snippets": "['slashes dividend']",
3945 | "target": "BHP Billiton",
3946 | "sentiment_score": "-0.341",
3947 | "aspects": "['Corporate/Dividend Policy']"
3948 | }
3949 | ]
3950 | },
3951 | "1315": {
3952 | "sentence": "CompaniesMeggitt profits hit by weak energy and military markets",
3953 | "info": [
3954 | {
3955 | "snippets": "['profits hit by weak energy and military markets']",
3956 | "target": "Meggitt",
3957 | "sentiment_score": "-0.302",
3958 | "aspects": "['Market/Market']"
3959 | }
3960 | ]
3961 | },
3962 | "1316": {
3963 | "sentence": "Royal Mail share price edges lower as group raises stamp price",
3964 | "info": [
3965 | {
3966 | "snippets": "['share price edges lower']",
3967 | "target": "Royal Mail",
3968 | "sentiment_score": "-0.269",
3969 | "aspects": "['Stock/Price Action']"
3970 | }
3971 | ]
3972 | },
3973 | "1323": {
3974 | "sentence": "GlaxoSmithKline starts hunt for successor to CEO Witty",
3975 | "info": [
3976 | {
3977 | "snippets": "['starts hunt for successor to CEO']",
3978 | "target": "GlaxoSmithKline",
3979 | "sentiment_score": "0",
3980 | "aspects": "['Corporate/Appointment/Executive Appointment']"
3981 | }
3982 | ]
3983 | },
3984 | "1324": {
3985 | "sentence": "Rio Tinto swings to loss, drops dividend policy",
3986 | "info": [
3987 | {
3988 | "snippets": "['drops dividend policy']",
3989 | "target": "Rio Tinto",
3990 | "sentiment_score": "-0.511",
3991 | "aspects": "['Corporate/Dividend Policy']"
3992 | }
3993 | ]
3994 | },
3995 | "1327": {
3996 | "sentence": "France raises concerns over proposed LSE-Deutsche Boerse deal",
3997 | "info": [
3998 | {
3999 | "snippets": "[' raises concerns over proposed..']",
4000 | "target": "LSE",
4001 | "sentiment_score": "-0.347",
4002 | "aspects": "['Corporate/Risks/Sale Halt']"
4003 | }
4004 | ]
4005 | },
4006 | "1334": {
4007 | "sentence": "MarketsBP promotes upstream boss to deputy CEO",
4008 | "info": [
4009 | {
4010 | "snippets": "['promotes upstream boss to deputy CEO']",
4011 | "target": "BP",
4012 | "sentiment_score": "0.066",
4013 | "aspects": "['Corporate/Appointment']"
4014 | }
4015 | ]
4016 | },
4017 | "1336": {
4018 | "sentence": "Legal & General share price: Finance chief to step down",
4019 | "info": [
4020 | {
4021 | "snippets": "['Finance chief to step down']",
4022 | "target": "Legal & General",
4023 | "sentiment_score": "-0.166",
4024 | "aspects": "['Corporate/Appointment']"
4025 | }
4026 | ]
4027 | },
4028 | "1343": {
4029 | "sentence": "Barclays poaches new chief operating officer Paul Compton from JP Morgan Chase",
4030 | "info": [
4031 | {
4032 | "snippets": "['Barclays poaches new chief operating officer Paul Compton']",
4033 | "target": "JP Morgan Chase",
4034 | "sentiment_score": "-0.092",
4035 | "aspects": "['Corporate/Appointment/Executive Appointment']"
4036 | }
4037 | ]
4038 | },
4039 | "1346": {
4040 | "sentence": "Arm profits and sales up as shift away from mobile gains pace",
4041 | "info": [
4042 | {
4043 | "snippets": "['profits and sales up']",
4044 | "target": "Arm",
4045 | "sentiment_score": "0.497",
4046 | "aspects": "['Corporate/Sales']"
4047 | }
4048 | ]
4049 | },
4050 | "1349": {
4051 | "sentence": "Barclays appoints JPMorgan's Paul Compton as new COO",
4052 | "info": [
4053 | {
4054 | "snippets": "['appoints JPMorgan's Paul Compton as new COO']",
4055 | "target": "Barclays",
4056 | "sentiment_score": "0.036",
4057 | "aspects": "['Corporate/Appointment']"
4058 | },
4059 | {
4060 | "snippets": "['Barclays appoints JPMorgan's Paul Compton']",
4061 | "target": "JPMorgan",
4062 | "sentiment_score": "-0.014",
4063 | "aspects": "['Corporate/Appointment/Executive Appointment']"
4064 | }
4065 | ]
4066 | },
4067 | "1350": {
4068 | "sentence": "FastJet slams EasyJet founder Stelios for going public, is 'taking legal advice' over letter about contractual ...",
4069 | "info": [
4070 | {
4071 | "snippets": "['is 'taking legal advice'']",
4072 | "target": "EasyJet",
4073 | "sentiment_score": "-0.238",
4074 | "aspects": "['Corporate/Legal']"
4075 | }
4076 | ]
4077 | },
4078 | "1353": {
4079 | "sentence": "NYSE owner ICE considers offer for LSE",
4080 | "info": [
4081 | {
4082 | "snippets": "['considers offer for']",
4083 | "target": "LSE",
4084 | "sentiment_score": "0.396",
4085 | "aspects": "['Corporate/Rumors/Scoop']"
4086 | }
4087 | ]
4088 | },
4089 | "1356": {
4090 | "sentence": "News FeedFTSE 100 movers: LSE surges as ICE says mulling offer; Ashtead and Barclays tank",
4091 | "info": [
4092 | {
4093 | "snippets": "['LSE surges as ICE says mulling offer']",
4094 | "target": "ICE",
4095 | "sentiment_score": "0.226",
4096 | "aspects": "['Corporate/M&A']"
4097 | },
4098 | {
4099 | "snippets": "['LSE surges as ICE says mulling offer']",
4100 | "target": "LSE",
4101 | "sentiment_score": "0.843",
4102 | "aspects": "['Corporate/M&A']"
4103 | }
4104 | ]
4105 | },
4106 | "1360": {
4107 | "sentence": "Balfour Beatty plc Set To Reinstate Dividend (And Rival National Grid plc And Centrica PLC Once More?)",
4108 | "info": [
4109 | {
4110 | "snippets": "['Set To Reinstate Dividend ']",
4111 | "target": "Balfour Beatty plc",
4112 | "sentiment_score": "0.413",
4113 | "aspects": "['Corporate/Dividend Policy']"
4114 | },
4115 | {
4116 | "snippets": "['Set To Reinstate Dividend ']",
4117 | "target": "Centrica PLC",
4118 | "sentiment_score": "0.403",
4119 | "aspects": "['Corporate/Dividend Policy/Dividend']"
4120 | },
4121 | {
4122 | "snippets": "['Set To Reinstate Dividend ']",
4123 | "target": "Rival National Grid plc",
4124 | "sentiment_score": "0.408",
4125 | "aspects": "['Corporate/Dividend Policy/Dividend']"
4126 | }
4127 | ]
4128 | },
4129 | "1365": {
4130 | "sentence": "Intertek swings to £347 mln loss on oil's slump",
4131 | "info": [
4132 | {
4133 | "snippets": "['swings to £347 mln loss']",
4134 | "target": "Intertek",
4135 | "sentiment_score": "-0.734",
4136 | "aspects": "['Market/Volatility']"
4137 | }
4138 | ]
4139 | },
4140 | "1372": {
4141 | "sentence": "Sanofi poaches AstraZeneca scientist as new research head",
4142 | "info": [
4143 | {
4144 | "snippets": "['Sanofi poaches AstraZeneca scientist']",
4145 | "target": "Sanofi",
4146 | "sentiment_score": "0.066",
4147 | "aspects": "['Corporate/Appointment/Executive Appointment']"
4148 | }
4149 | ]
4150 | },
4151 | "1373": {
4152 | "sentence": "Tesco breaks its downward slide by cutting sales decline in half",
4153 | "info": [
4154 | {
4155 | "snippets": "['by cutting sales decline']",
4156 | "target": "Tesco",
4157 | "sentiment_score": "0.172",
4158 | "aspects": "['Corporate/Sales']"
4159 | }
4160 | ]
4161 | },
4162 | "1376": {
4163 | "sentence": "News FeedSchroders books solid earnings growth, several board changes",
4164 | "info": [
4165 | {
4166 | "snippets": "['s books solid earnings growth']",
4167 | "target": "Schroders",
4168 | "sentiment_score": "0.5",
4169 | "aspects": "['Stock/Fundamentals']"
4170 | }
4171 | ]
4172 | },
4173 | "1378": {
4174 | "sentence": "Intertek Group announces strategic update outlining its plan",
4175 | "info": [
4176 | {
4177 | "snippets": "['strategic update outlining its plan']",
4178 | "target": "Intertek Group",
4179 | "sentiment_score": "0.046",
4180 | "aspects": "['Corporate/Strategy']"
4181 | }
4182 | ]
4183 | },
4184 | "1379": {
4185 | "sentence": "London Stock Exchange seals £22 billion merger with Germany's Deutsche Börse",
4186 | "info": [
4187 | {
4188 | "snippets": "['seals £22 billion merger with']",
4189 | "target": "London Stock Exchange",
4190 | "sentiment_score": "0.327",
4191 | "aspects": "['Corporate/M&A/M&A']"
4192 | }
4193 | ]
4194 | },
4195 | "1380": {
4196 | "sentence": "NYSE owner ICE may gatecrash Deutsche Boerse-LSE merger",
4197 | "info": [
4198 | {
4199 | "snippets": "['owner ICE may gatecrash Deutsche Boerse-LSE merger']",
4200 | "target": "LSE",
4201 | "sentiment_score": "-0.2",
4202 | "aspects": "['Corporate/M&A/Proposed Merger']"
4203 | }
4204 | ]
4205 | },
4206 | "1381": {
4207 | "sentence": "AB InBev to Sell SABMiller Stake in China's Snow Beer",
4208 | "info": [
4209 | {
4210 | "snippets": "['to Sell SABMiller Stake in']",
4211 | "target": "SABMiller",
4212 | "sentiment_score": "-0.045",
4213 | "aspects": "['Stock/Signal/Sell Signal']"
4214 | }
4215 | ]
4216 | },
4217 | "1383": {
4218 | "sentence": "LSE-Deutsche Boerse merger would signal end to exchange mega-deals",
4219 | "info": [
4220 | {
4221 | "snippets": "['merger would signal end to']",
4222 | "target": "LSE",
4223 | "sentiment_score": "0.105",
4224 | "aspects": "['Corporate/M&A/M&A']"
4225 | }
4226 | ]
4227 | },
4228 | "1387": {
4229 | "sentence": "RBS Pays $1.7 Billion to Scrap U.K. Treasury's Dividend Rights",
4230 | "info": [
4231 | {
4232 | "snippets": "['to Scrap U.K. Treasury's Dividend Rights']",
4233 | "target": "RBS",
4234 | "sentiment_score": "0.066",
4235 | "aspects": "['Corporate/Dividend Policy']"
4236 | }
4237 | ]
4238 | },
4239 | "1396": {
4240 | "sentence": "Industry NewsWolseley confident in reslilience amid mixed markets",
4241 | "info": [
4242 | {
4243 | "snippets": "['confident in reslilience amid mixed markets']",
4244 | "target": "Wolseley",
4245 | "sentiment_score": "0.287",
4246 | "aspects": "['Market/Market']"
4247 | }
4248 | ]
4249 | },
4250 | "1402": {
4251 | "sentence": "Tesco criticised for 'disgraceful' advert showing domestic worker being slapped",
4252 | "info": [
4253 | {
4254 | "snippets": "['criticised for 'disgraceful' advert showing domestic worker being slapped']",
4255 | "target": "Tesco",
4256 | "sentiment_score": "-0.498",
4257 | "aspects": "['Corporate/Reputation']"
4258 | }
4259 | ]
4260 | },
4261 | "1405": {
4262 | "sentence": "FTSE edges up as investors cheer Kingfisher results",
4263 | "info": [
4264 | {
4265 | "snippets": "['as investors cheer Kingfisher results']",
4266 | "target": "Kingfisher",
4267 | "sentiment_score": "0.678",
4268 | "aspects": "['Stock/Price Action']"
4269 | }
4270 | ]
4271 | },
4272 | "1410": {
4273 | "sentence": "Barclays Bonds Rise as Lender Cuts Dividends to Shore Up Capital",
4274 | "info": [
4275 | {
4276 | "snippets": "['Lender Cuts Dividends to Shore Up Capita']",
4277 | "target": "Barclays",
4278 | "sentiment_score": "0.261",
4279 | "aspects": "['Corporate/Dividend Policy']"
4280 | }
4281 | ]
4282 | },
4283 | "1412": {
4284 | "sentence": "Britain's FTSE gets lift from Prudential results",
4285 | "info": [
4286 | {
4287 | "snippets": "['gets lift from Prudential results']",
4288 | "target": "Prudential",
4289 | "sentiment_score": "0.582",
4290 | "aspects": "['Corporate/Financial']"
4291 | }
4292 | ]
4293 | },
4294 | "1415": {
4295 | "sentence": "Amazon's grocery deal with Morrisons is only the beginning",
4296 | "info": [
4297 | {
4298 | "snippets": "['grocery deal with Morrisons ']",
4299 | "target": "Morrisons",
4300 | "sentiment_score": "0.389",
4301 | "aspects": "['Corporate/Sales/Deal']"
4302 | }
4303 | ]
4304 | },
4305 | "1425": {
4306 | "sentence": "ICE Said to Start Lining Up Financing for LSE Bidding War",
4307 | "info": [
4308 | {
4309 | "snippets": "['Said to Start Lining Up Financing for']",
4310 | "target": "LSE",
4311 | "sentiment_score": "0.328",
4312 | "aspects": "['Corporate/Rumors/Rumors']"
4313 | }
4314 | ]
4315 | },
4316 | "1426": {
4317 | "sentence": "BP, Statoil, to Withdraw Staff From Algeria Following Rocket Attack",
4318 | "info": [
4319 | {
4320 | "snippets": "['to Withdraw Staff From']",
4321 | "target": "Statoil",
4322 | "sentiment_score": "-0.242",
4323 | "aspects": "['Corporate/Appointment/Staff Hiring']"
4324 | }
4325 | ]
4326 | },
4327 | "1431": {
4328 | "sentence": "Merkel's Government Said to Support Deutsche Boerse-LSE Merger",
4329 | "info": [
4330 | {
4331 | "snippets": "['Support Deutsche Boerse-LSE Merger']",
4332 | "target": "LSE",
4333 | "sentiment_score": "0.358",
4334 | "aspects": "['Corporate/M&A/Proposed Merger']"
4335 | }
4336 | ]
4337 | },
4338 | "1435": {
4339 | "sentence": "Aviva weighs cash handout after beating profit forecast",
4340 | "info": [
4341 | {
4342 | "snippets": "['weighs cash handou']",
4343 | "target": "Aviva",
4344 | "sentiment_score": "0.377",
4345 | "aspects": "['Corporate/Dividend Policy']"
4346 | }
4347 | ]
4348 | },
4349 | "1436": {
4350 | "sentence": "WPP, World's Largest Ad Agency, Reports Strong 2015 Growth",
4351 | "info": [
4352 | {
4353 | "snippets": "['Reports Strong 2015 Growth']",
4354 | "target": "WPP",
4355 | "sentiment_score": "0.555",
4356 | "aspects": "['Stock/Fundamentals']"
4357 | }
4358 | ]
4359 | },
4360 | "1443": {
4361 | "sentence": "Saudi Aramco, Shell plan to break up Motiva, divide up assets",
4362 | "info": [
4363 | {
4364 | "snippets": "['Shell plan to break up Motiva, divide up assets']",
4365 | "target": "Saudi Aramco",
4366 | "sentiment_score": "-0.142",
4367 | "aspects": "['Corporate/Strategy/Reorganization']"
4368 | },
4369 | {
4370 | "snippets": "['plan to break up Motiva, divide up assets']",
4371 | "target": "Shell",
4372 | "sentiment_score": "-0.102",
4373 | "aspects": "['Corporate/Strategy/Reorganization']"
4374 | }
4375 | ]
4376 | },
4377 | "1449": {
4378 | "sentence": "AB InBev to sell more SAB assets as seeks EU deal approval",
4379 | "info": [
4380 | {
4381 | "snippets": "['to sell more SAB assets as seeks']",
4382 | "target": "SAB",
4383 | "sentiment_score": "-0.079",
4384 | "aspects": "['Corporate/M&A/M&A']"
4385 | }
4386 | ]
4387 | },
4388 | "1455": {
4389 | "sentence": "Tesco's Sales Pickup Isn't Enough",
4390 | "info": [
4391 | {
4392 | "snippets": "['Sales Pickup Isn't Enough']",
4393 | "target": "Tesco",
4394 | "sentiment_score": "-0.23",
4395 | "aspects": "['Corporate/Sales']"
4396 | }
4397 | ]
4398 | },
4399 | "1462": {
4400 | "sentence": "Spain's CaixaBank Expects To Close Deal For Banco BPI",
4401 | "info": [
4402 | {
4403 | "snippets": "['Expects To Close Deal For']",
4404 | "target": "CaixaBank",
4405 | "sentiment_score": "0.375",
4406 | "aspects": "['Corporate/Sales/Deal']"
4407 | }
4408 | ]
4409 | },
4410 | "1463": {
4411 | "sentence": "ITV share price: Group mulls takeover of Canada's Entertainment One",
4412 | "info": [
4413 | {
4414 | "snippets": "['Group mulls takeover of Canada's Entertainment One']",
4415 | "target": "ITV",
4416 | "sentiment_score": "0.422",
4417 | "aspects": "['Corporate/M&A/M&A']"
4418 | }
4419 | ]
4420 | },
4421 | "1469": {
4422 | "sentence": "Entertainment One dispels ITV takeover rumours",
4423 | "info": [
4424 | {
4425 | "snippets": "['One dispels ITV takeover rumours']",
4426 | "target": "Entertainment One",
4427 | "sentiment_score": "0.138",
4428 | "aspects": "['Corporate/Rumors']"
4429 | },
4430 | {
4431 | "snippets": "['dispels ITV takeover rumours']",
4432 | "target": "ITV",
4433 | "sentiment_score": "0.003",
4434 | "aspects": "['Corporate/Rumors']"
4435 | }
4436 | ]
4437 | },
4438 | "1475": {
4439 | "sentence": "GE to Sell Majority Stake in Bank BPH's Core Bank to Alior Bank",
4440 | "info": [
4441 | {
4442 | "snippets": "['to Sell Majority Stake in Bank BPH's Core Bank']",
4443 | "target": "Bank BPH",
4444 | "sentiment_score": "0.213",
4445 | "aspects": "['Stock/Price Action/Volatility/Sell-Off']"
4446 | },
4447 | {
4448 | "snippets": "['to Sell Majority Stake in Bank BPH's Core Bank']",
4449 | "target": "GE",
4450 | "sentiment_score": "0.211",
4451 | "aspects": "['Stock/Price Action/Volatility/Sell-Off']"
4452 | }
4453 | ]
4454 | },
4455 | "1476": {
4456 | "sentence": "Tata Steel working with StanChart for UK unit sale - source",
4457 | "info": [
4458 | {
4459 | "snippets": "['with StanChart for UK unit sale - source']",
4460 | "target": "StanChart",
4461 | "sentiment_score": "0.218",
4462 | "aspects": "['Stock/IPO']"
4463 | },
4464 | {
4465 | "snippets": "['working with StanChart for UK unit sale']",
4466 | "target": "Tata Steel",
4467 | "sentiment_score": "0.143",
4468 | "aspects": "['Corporate/Sales/Deal']"
4469 | }
4470 | ]
4471 | },
4472 | "1487": {
4473 | "sentence": "Crown Castle buys Tower Development Corp for $461 million",
4474 | "info": [
4475 | {
4476 | "snippets": "['Crown Castle buys Tower Development Corp']",
4477 | "target": "Tower Development",
4478 | "sentiment_score": "0.366",
4479 | "aspects": "['Corporate/M&A/M&A']"
4480 | }
4481 | ]
4482 | },
4483 | "1492": {
4484 | "sentence": "Tesco sells half of stake in ecommerce site Lazada to Alibaba for £90m",
4485 | "info": [
4486 | {
4487 | "snippets": "['sells half of stake in ecommerce site Lazada to Alibaba for £90m']",
4488 | "target": "Lazada",
4489 | "sentiment_score": "-0.038",
4490 | "aspects": "['Stock/Price Action/Volatility/Sell-Off']"
4491 | },
4492 | {
4493 | "snippets": "['sells half of stake in ecommerce site Lazada to Alibaba for £90m']",
4494 | "target": "Tesco",
4495 | "sentiment_score": "0.365",
4496 | "aspects": "['Stock/Price Action/Volatility/Sell-Off']"
4497 | }
4498 | ]
4499 | },
4500 | "1496": {
4501 | "sentence": "CaixaBank, dos Santos Agree on Plan for BPI Angola Exposure",
4502 | "info": [
4503 | {
4504 | "snippets": "['Agree on Plan for BPI Angola Exposure']",
4505 | "target": "CaixaBank",
4506 | "sentiment_score": "0.244",
4507 | "aspects": "['Corporate/Strategy/Company Agreement']"
4508 | }
4509 | ]
4510 | },
4511 | "1499": {
4512 | "sentence": "BPI Says Caixabank, Isabel dos Santos Reach Agreement Over Angola Exposure",
4513 | "info": [
4514 | {
4515 | "snippets": "['Isabel dos Santos Reach Agreement Over Angola Exposure']",
4516 | "target": "CaixaBank",
4517 | "sentiment_score": "0.243",
4518 | "aspects": "['Corporate/Strategy/Company Agreement']"
4519 | }
4520 | ]
4521 | },
4522 | "1503": {
4523 | "sentence": "Spain's Caixabank launches new takeover bid for Banco BPI",
4524 | "info": [
4525 | {
4526 | "snippets": "['launches new takeover bid for Banco BPI']",
4527 | "target": "Caixabank",
4528 | "sentiment_score": "0.185",
4529 | "aspects": "['Corporate/M&A/M&A']"
4530 | }
4531 | ]
4532 | },
4533 | "1507": {
4534 | "sentence": "Despite sales growth, UK's Tesco cautions recovery to be bumpy",
4535 | "info": [
4536 | {
4537 | "snippets": "['Despite sales growth,']",
4538 | "target": "Tesco",
4539 | "sentiment_score": "-0.077",
4540 | "aspects": "['Corporate/Sales']"
4541 | }
4542 | ]
4543 | },
4544 | "1508": {
4545 | "sentence": "ITV to pursue takeover of Canada's Entertainment One: Bloomberg",
4546 | "info": [
4547 | {
4548 | "snippets": "['to pursue takeover of Canada's Entertainment One']",
4549 | "target": "ITV",
4550 | "sentiment_score": "0.199",
4551 | "aspects": "['Corporate/M&A/M&A']"
4552 | }
4553 | ]
4554 | },
4555 | "1516": {
4556 | "sentence": "Shire Sees Baxalta Deal Closing as Expected After New Rules",
4557 | "info": [
4558 | {
4559 | "snippets": "['Sees Baxalta Deal Closing as Expected']",
4560 | "target": "Shire",
4561 | "sentiment_score": "0.224",
4562 | "aspects": "['Corporate/Sales/Deal']"
4563 | }
4564 | ]
4565 | },
4566 | "1517": {
4567 | "sentence": "OCBC to Buy Barclay's Wealth Management Unit in Singapore, Hong Kong",
4568 | "info": [
4569 | {
4570 | "snippets": "['to Buy Barclay's Wealth Management Unit']",
4571 | "target": "OCBC",
4572 | "sentiment_score": "0.257",
4573 | "aspects": "['Corporate/M&A/M&A']"
4574 | }
4575 | ]
4576 | },
4577 | "1528": {
4578 | "sentence": "Tesco share price steady as analysts weigh in on results",
4579 | "info": [
4580 | {
4581 | "snippets": "['share price steady']",
4582 | "target": "Tesco",
4583 | "sentiment_score": "0.052",
4584 | "aspects": "['Stock/Price Action']"
4585 | }
4586 | ]
4587 | },
4588 | "1530": {
4589 | "sentence": "Lloyds Banking Group's share price lifts amid reports bank is poised to axe hundreds of UK jobs",
4590 | "info": [
4591 | {
4592 | "snippets": "['share price lifts']",
4593 | "target": "Lloyds",
4594 | "sentiment_score": "0.292",
4595 | "aspects": "['Stock/Price Action']"
4596 | }
4597 | ]
4598 | },
4599 | "1545": {
4600 | "sentence": "Should You Follow Berkshire Hathaway Into Apple Stock?",
4601 | "info": [
4602 | {
4603 | "snippets": "['Should You Follow Berkshire Hathaway Into Apple Stock?']",
4604 | "target": "Berkshire Hathaway",
4605 | "sentiment_score": "0",
4606 | "aspects": "['Corporate/Rumors/Scoop']"
4607 | }
4608 | ]
4609 | },
4610 | "1554": {
4611 | "sentence": "Morrisons book second consecutive quarter of sales growth",
4612 | "info": [
4613 | {
4614 | "snippets": "['second consecutive quarter of sales growth']",
4615 | "target": "Morrisons",
4616 | "sentiment_score": "0.43",
4617 | "aspects": "['Corporate/Sales']"
4618 | }
4619 | ]
4620 | },
4621 | "1556": {
4622 | "sentence": "Royal Mail gets mixed bag from Ofcom postal regulation report",
4623 | "info": [
4624 | {
4625 | "snippets": "['postal regulation report']",
4626 | "target": "Royal Mail",
4627 | "sentiment_score": "-0.084",
4628 | "aspects": "['Corporate/Regulatory']"
4629 | }
4630 | ]
4631 | },
4632 | "1559": {
4633 | "sentence": "UPDATE 3-Ex-Barclays director accused by US of illegal tips to plumber",
4634 | "info": [
4635 | {
4636 | "snippets": "['of illegal tips to plumber']",
4637 | "target": "Barclays",
4638 | "sentiment_score": "-0.34",
4639 | "aspects": "['Stock/Insider Activity']"
4640 | }
4641 | ]
4642 | },
4643 | "1560": {
4644 | "sentence": "EU regulators clear $100 billion-plus AB InBev, SABMiller deal",
4645 | "info": [
4646 | {
4647 | "snippets": "['AB InBev, SABMiller deal']",
4648 | "target": "SABMiller",
4649 | "sentiment_score": "0.392",
4650 | "aspects": "['Corporate/Sales/Deal']"
4651 | }
4652 | ]
4653 | },
4654 | "1568": {
4655 | "sentence": "Retail giant Kingfisher reports 'solid' start to the year",
4656 | "info": [
4657 | {
4658 | "snippets": "['reports 'solid' start to the year']",
4659 | "target": "Kingfisher",
4660 | "sentiment_score": "0.368",
4661 | "aspects": "['Corporate/Company Communication']"
4662 | }
4663 | ]
4664 | },
4665 | "1581": {
4666 | "sentence": "Berkshire discloses unit's ties to Iran, opens probe",
4667 | "info": [
4668 | {
4669 | "snippets": "['discloses unit's ties to Iran, opens probe']",
4670 | "target": "Berkshire",
4671 | "sentiment_score": "-0.288",
4672 | "aspects": "['Corporate/Company Communication']"
4673 | }
4674 | ]
4675 | },
4676 | "1583": {
4677 | "sentence": "Berkshire Hathaway names Kara Raiguel to lead General Re unit",
4678 | "info": [
4679 | {
4680 | "snippets": "['names Kara Raiguel to lead General Re unit']",
4681 | "target": "Berkshire",
4682 | "sentiment_score": "0.077",
4683 | "aspects": "['Corporate/Appointment']"
4684 | }
4685 | ]
4686 | },
4687 | "1585": {
4688 | "sentence": "European stocks hover near 3-week low, Dialog and BHP slump",
4689 | "info": [
4690 | {
4691 | "snippets": "['stocks hover near 3-week low']",
4692 | "target": "Dialog",
4693 | "sentiment_score": "-0.584",
4694 | "aspects": "['Stock/Price Action/Volume/Unusual Low Volume']"
4695 | }
4696 | ]
4697 | },
4698 | "1586": {
4699 | "sentence": "Hargreaves Lansdown bucks weak markets to see assets rise 2.6 percent",
4700 | "info": [
4701 | {
4702 | "snippets": "['bucks weak markets']",
4703 | "target": "Hargreaves Lansdown",
4704 | "sentiment_score": "0.571",
4705 | "aspects": "['Market/Market']"
4706 | }
4707 | ]
4708 | },
4709 | "1590": {
4710 | "sentence": "Australia clears AB Inbev's $100 billion SABMiller buyout plan",
4711 | "info": [
4712 | {
4713 | "snippets": "['SABMiller buyout plan']",
4714 | "target": "AB InBrev",
4715 | "sentiment_score": "0.437",
4716 | "aspects": "['Corporate/Strategy/Buyout']"
4717 | }
4718 | ]
4719 | },
4720 | "1598": {
4721 | "sentence": "Goodwin not to face Scottish prosecution over RBS",
4722 | "info": [
4723 | {
4724 | "snippets": "['not to face Scottish prosecution over RBS']",
4725 | "target": "RBS",
4726 | "sentiment_score": "0.114",
4727 | "aspects": "['Corporate/Legal']"
4728 | }
4729 | ]
4730 | },
4731 | "1599": {
4732 | "sentence": "Royal Mail turnaround proving expensive in tough UK market",
4733 | "info": [
4734 | {
4735 | "snippets": "['in tough UK market']",
4736 | "target": "Royal Mail",
4737 | "sentiment_score": "-0.057",
4738 | "aspects": "['Market/Market']"
4739 | }
4740 | ]
4741 | },
4742 | "1604": {
4743 | "sentence": "Whitbread buys 49% stake in Pure food chain",
4744 | "info": [
4745 | {
4746 | "snippets": "['buys 49% stake in Pure food chain']",
4747 | "target": "Whitbread",
4748 | "sentiment_score": "0.365",
4749 | "aspects": "['Corporate/M&A/M&A']"
4750 | }
4751 | ]
4752 | },
4753 | "1609": {
4754 | "sentence": "Irish Said Chasing Standard Chartered, RBS as Brexit Vote Nears",
4755 | "info": [
4756 | {
4757 | "snippets": "['Chasing Standard Chartered']",
4758 | "target": "Standard Chartered",
4759 | "sentiment_score": "0.128",
4760 | "aspects": "['Corporate/Strategy/Corporate Planning']"
4761 | }
4762 | ]
4763 | },
4764 | "1611": {
4765 | "sentence": "Royal Mail share price rallies amid positive broker comments",
4766 | "info": [
4767 | {
4768 | "snippets": "['share price rallies']",
4769 | "target": "Royal Mail",
4770 | "sentiment_score": "0.59",
4771 | "aspects": "['Stock/Price Action']"
4772 | }
4773 | ]
4774 | },
4775 | "1619": {
4776 | "sentence": "InterContinental Hotels first-quarter global room revenue lags estimates",
4777 | "info": [
4778 | {
4779 | "snippets": "['first-quarter global room revenue']",
4780 | "target": "InterContinental",
4781 | "sentiment_score": "-0.329",
4782 | "aspects": "['Corporate/Sales']"
4783 | }
4784 | ]
4785 | },
4786 | "1629": {
4787 | "sentence": "Aspen to Buy Anaesthetics From AstraZeneca for $520 Million",
4788 | "info": [
4789 | {
4790 | "snippets": "['to Buy Anaesthetics From AstraZeneca for $520 Million']",
4791 | "target": "AstraZeneca",
4792 | "sentiment_score": "0.395",
4793 | "aspects": "['Corporate/M&A/M&A']"
4794 | }
4795 | ]
4796 | },
4797 | "1634": {
4798 | "sentence": "London Stock Exchange – Deutsche Boerse merger under threat from Brexit",
4799 | "info": [
4800 | {
4801 | "snippets": "['Deutsche Boerse merger under threat']",
4802 | "target": "London Stock Exchange",
4803 | "sentiment_score": "-0.421",
4804 | "aspects": "['Corporate/M&A/M&A']"
4805 | }
4806 | ]
4807 | },
4808 | "1635": {
4809 | "sentence": "Sainsbury CFO Rogers to Replace Home Retail CEO Walden",
4810 | "info": [
4811 | {
4812 | "snippets": "['to Replace Home Retail CEO Walden']",
4813 | "target": "Home Retail",
4814 | "sentiment_score": "0",
4815 | "aspects": "['Corporate/Appointment']"
4816 | },
4817 | {
4818 | "snippets": "['CFO Rogers to Replace Home Retail CEO']",
4819 | "target": "Sainsbury",
4820 | "sentiment_score": "0",
4821 | "aspects": "['Corporate/Appointment/Executive Reshuffle']"
4822 | }
4823 | ]
4824 | },
4825 | "1636": {
4826 | "sentence": "BP joins forces with Det Norske in Norway",
4827 | "info": [
4828 | {
4829 | "snippets": "['BP joins forces with Det Norske in Norway']",
4830 | "target": "Det Norske",
4831 | "sentiment_score": "0.248",
4832 | "aspects": "['Corporate/Strategy/Company Agreement']"
4833 | }
4834 | ]
4835 | },
4836 | "1639": {
4837 | "sentence": "BRIEF-Legal & General's retirement business books 4 billion stg H1 sales",
4838 | "info": [
4839 | {
4840 | "snippets": "['books 4 billion stg H1 sales']",
4841 | "target": "Legal & General",
4842 | "sentiment_score": "0.252",
4843 | "aspects": "['Corporate/Sales']"
4844 | }
4845 | ]
4846 | },
4847 | "1640": {
4848 | "sentence": "Johnson Matthey revs up on clean air drive",
4849 | "info": [
4850 | {
4851 | "snippets": "['revs up on clean air drive']",
4852 | "target": "Johnson Matthey",
4853 | "sentiment_score": "0.224",
4854 | "aspects": "['Corporate/Strategy']"
4855 | }
4856 | ]
4857 | },
4858 | "1663": {
4859 | "sentence": "Goldman Sachs, Barclays, HSBC downplay Brexit threat",
4860 | "info": [
4861 | {
4862 | "snippets": "['downplay Brexit threat']",
4863 | "target": "Barclays",
4864 | "sentiment_score": "0",
4865 | "aspects": "['Corporate/Risks']"
4866 | },
4867 | {
4868 | "snippets": "['Goldman Sachs, Barclays, HSBC downplay Brexit threat']",
4869 | "target": "Goldman Sachs",
4870 | "sentiment_score": "-0.147",
4871 | "aspects": "['Corporate/Risks']"
4872 | },
4873 | {
4874 | "snippets": "['Goldman Sachs, Barclays, HSBC downplay Brexit threat']",
4875 | "target": "HSBC",
4876 | "sentiment_score": "-0.14",
4877 | "aspects": "['Corporate/Risks']"
4878 | }
4879 | ]
4880 | },
4881 | "1669": {
4882 | "sentence": "Asahi could be about to snap up more of SABMiller's beers ahead of AB InBev sale",
4883 | "info": [
4884 | {
4885 | "snippets": "['Asahi could be about to snap up more of SABMiller's beers ahead of AB InBev sale']",
4886 | "target": "Asahi",
4887 | "sentiment_score": "0.207",
4888 | "aspects": "['Corporate/Strategy/Investment']"
4889 | },
4890 | {
4891 | "snippets": "['Asahi could be about to snap up more of SABMiller's beers ahead of AB InBev sale']",
4892 | "target": "SABMiller",
4893 | "sentiment_score": "0.329",
4894 | "aspects": "['Corporate/Strategy/Investment']"
4895 | }
4896 | ]
4897 | },
4898 | "1670": {
4899 | "sentence": "LSE-Deutsche Börse dealmakers wrong to ignore Brexit risk",
4900 | "info": [
4901 | {
4902 | "snippets": "['wrong to ignore Brexit ris']",
4903 | "target": "Deutsche Börse",
4904 | "sentiment_score": "-0.473",
4905 | "aspects": "['Corporate/Risks']"
4906 | },
4907 | {
4908 | "snippets": "['dealmakers wrong to ignore Brexit risk']",
4909 | "target": "LSE",
4910 | "sentiment_score": "-0.415",
4911 | "aspects": "['Corporate/Risks']"
4912 | }
4913 | ]
4914 | },
4915 | "1682": {
4916 | "sentence": "Tesco sales recover as focus returns to core business",
4917 | "info": [
4918 | {
4919 | "snippets": "['sales recover']",
4920 | "target": "Tesco",
4921 | "sentiment_score": "0.35",
4922 | "aspects": "['Corporate/Sales']"
4923 | }
4924 | ]
4925 | },
4926 | "1692": {
4927 | "sentence": "Johnson Matthey profit falls but dividend rises",
4928 | "info": [
4929 | {
4930 | "snippets": "['but dividend rises']",
4931 | "target": "Johnson Matthey",
4932 | "sentiment_score": "0",
4933 | "aspects": "['Corporate/Dividend Policy']"
4934 | }
4935 | ]
4936 | },
4937 | "1699": {
4938 | "sentence": "Are ARM Holdings plc, Domino's Pizza Group plc and ASOS plc 3 must-have growth stocks?",
4939 | "info": [
4940 | {
4941 | "snippets": "['3 must-have growth stocks?']",
4942 | "target": "ASOS plc",
4943 | "sentiment_score": "0",
4944 | "aspects": "['Corporate/Rumors/Scoop']"
4945 | },
4946 | {
4947 | "snippets": "['3 must-have growth stocks?']",
4948 | "target": "Domino's Pizza Group plc",
4949 | "sentiment_score": "0.063",
4950 | "aspects": "['Corporate/Rumors/Scoop']"
4951 | }
4952 | ]
4953 | },
4954 | "1700": {
4955 | "sentence": "Priceline's stock jumps to new high for the year after Barclays upgrade",
4956 | "info": [
4957 | {
4958 | "snippets": "['stock jumps to new high']",
4959 | "target": "Priceline",
4960 | "sentiment_score": "0.847",
4961 | "aspects": "['Stock/Coverage']"
4962 | }
4963 | ]
4964 | },
4965 | "1708": {
4966 | "sentence": "Tesco set to sell Kipa, Giraffe businesses - Sky News",
4967 | "info": [
4968 | {
4969 | "snippets": "['set to sell Kipa, Giraffe businesses']",
4970 | "target": "Kipa",
4971 | "sentiment_score": "-0.192",
4972 | "aspects": "['Stock/Signal/Sell Signal']"
4973 | },
4974 | {
4975 | "snippets": "['set to sell Kipa, Giraffe businesses']",
4976 | "target": "Tesco",
4977 | "sentiment_score": "0.23",
4978 | "aspects": "['Stock/Signal/Sell Signal']"
4979 | }
4980 | ]
4981 | },
4982 | "1712": {
4983 | "sentence": "The Coca-Cola Company and Coca-Cola FEMSA to Acquire AdeS Soy-Based Beverage Business From Unilever",
4984 | "info": [
4985 | {
4986 | "snippets": "['to Acquire AdeS Soy-Based Beverage Business From Unilever']",
4987 | "target": "Coca-Cola Companp",
4988 | "sentiment_score": "0.259",
4989 | "aspects": "['Corporate/M&A/M&A']"
4990 | },
4991 | {
4992 | "snippets": "['to Acquire AdeS Soy-Based Beverage Business From Unilever']",
4993 | "target": "Coca-Cola FEMSA",
4994 | "sentiment_score": "0.293",
4995 | "aspects": "['Corporate/M&A/M&A']"
4996 | }
4997 | ]
4998 | },
4999 | "1717": {
5000 | "sentence": "HSBC Says Unit to Book $585 Million Charge on Settlement",
5001 | "info": [
5002 | {
5003 | "snippets": "['$585 Million Charge on Settlement']",
5004 | "target": "HSBC",
5005 | "sentiment_score": "-0.434",
5006 | "aspects": "['Corporate/Legal']"
5007 | }
5008 | ]
5009 | },
5010 | "1718": {
5011 | "sentence": "Hammerson, JV Partner secure ownership of Ireland's Dundrum - Quick Facts",
5012 | "info": [
5013 | {
5014 | "snippets": "['secure ownership of Ireland's Dundrum - Quick Facts']",
5015 | "target": "JV Partner",
5016 | "sentiment_score": "0.427",
5017 | "aspects": "['Corporate/M&A/M&A']"
5018 | }
5019 | ]
5020 | },
5021 | "1728": {
5022 | "sentence": "Aviva promises higher dividends to boost flagging share price",
5023 | "info": [
5024 | {
5025 | "snippets": "['higher dividends']",
5026 | "target": "Aviva",
5027 | "sentiment_score": "0.281",
5028 | "aspects": "['Corporate/Dividend Policy']"
5029 | }
5030 | ]
5031 | },
5032 | "1734": {
5033 | "sentence": "CompaniesFresnillo shares jump 8% as silver price breaks $21",
5034 | "info": [
5035 | {
5036 | "snippets": "['shares jump 8%']",
5037 | "target": "Fresnillo",
5038 | "sentiment_score": "0.874",
5039 | "aspects": "['Stock/Price Action']"
5040 | }
5041 | ]
5042 | },
5043 | "1735": {
5044 | "sentence": "Should you buy Associated British Foods plc, Great Portland Estates plc and Dunelm Group plc following today's news?",
5045 | "info": [
5046 | {
5047 | "snippets": "['Should you buy…. following today's news?']",
5048 | "target": "Dunelm Group plc",
5049 | "sentiment_score": "0.14",
5050 | "aspects": "['Corporate/Rumors/Rumors']"
5051 | },
5052 | {
5053 | "snippets": "['Should you buy…. following today's news?']",
5054 | "target": "Great Portland Estates plc",
5055 | "sentiment_score": "0.165",
5056 | "aspects": "['Corporate/Rumors/Rumors']"
5057 | }
5058 | ]
5059 | },
5060 | "1737": {
5061 | "sentence": "Berkshire seeks to boost its Wells Fargo stake above 10 percent",
5062 | "info": [
5063 | {
5064 | "snippets": "['seeks to boost its Wells Fargo stake above 10 percen']",
5065 | "target": "Wells Fargo",
5066 | "sentiment_score": "0.429",
5067 | "aspects": "['Stock/Signal/Buy Signal']"
5068 | }
5069 | ]
5070 | },
5071 | "1741": {
5072 | "sentence": "Tesco share price tumbles after negative broker note",
5073 | "info": [
5074 | {
5075 | "snippets": "['share price tumbles a']",
5076 | "target": "Tesco",
5077 | "sentiment_score": "-0.779",
5078 | "aspects": "['Stock/Price Action']"
5079 | }
5080 | ]
5081 | },
5082 | "1742": {
5083 | "sentence": "London Stock Exchange Shareholders Approve Merger With Deutsche Börse",
5084 | "info": [
5085 | {
5086 | "snippets": "['Shareholders Approve Merger With']",
5087 | "target": "London Stock Exchange",
5088 | "sentiment_score": "0.406",
5089 | "aspects": "['Corporate/M&A/M&A']"
5090 | }
5091 | ]
5092 | },
5093 | "1743": {
5094 | "sentence": "UPDATE 1-Berkshire applies to boost Wells Fargo stake above 10 pct",
5095 | "info": [
5096 | {
5097 | "snippets": "['applies to boost Wells Fargo stake above 10 percen']",
5098 | "target": "Wells Fargo",
5099 | "sentiment_score": "0.432",
5100 | "aspects": "['Stock/Signal/Sell Signal']"
5101 | }
5102 | ]
5103 | },
5104 | "1748": {
5105 | "sentence": "Berkshire applies to boost Wells Fargo stake above 10 percent",
5106 | "info": [
5107 | {
5108 | "snippets": "['applies to boost Wells Fargo stake above 10 percen']",
5109 | "target": "Wells Fargo",
5110 | "sentiment_score": "0.484",
5111 | "aspects": "['Stock/Signal/Buy Signal']"
5112 | }
5113 | ]
5114 | },
5115 | "1750": {
5116 | "sentence": "Aviva, M&G suspend property funds as investors panic",
5117 | "info": [
5118 | {
5119 | "snippets": "['M&G suspend property funds as investors panic']",
5120 | "target": "M&G",
5121 | "sentiment_score": "-0.807",
5122 | "aspects": "['Corporate/Risks']"
5123 | }
5124 | ]
5125 | },
5126 | "1754": {
5127 | "sentence": "UK housing market steadies after Brexit dip, Persimmon says",
5128 | "info": [
5129 | {
5130 | "snippets": "['housing market']",
5131 | "target": "Perssimon",
5132 | "sentiment_score": "0.339",
5133 | "aspects": "['Market/Market']"
5134 | }
5135 | ]
5136 | },
5137 | "1755": {
5138 | "sentence": "BRIEF-Aviva aims to increase dividend pay-out ratio to 50 pct in 2017",
5139 | "info": [
5140 | {
5141 | "snippets": "['increase dividend pay-out']",
5142 | "target": "Aviva",
5143 | "sentiment_score": "0.439",
5144 | "aspects": "['Corporate/Dividend Policy']"
5145 | }
5146 | ]
5147 | },
5148 | "1764": {
5149 | "sentence": "Builder Persimmon hails 6% rise in house sales",
5150 | "info": [
5151 | {
5152 | "snippets": "['6% rise in house sales']",
5153 | "target": "Persimmon",
5154 | "sentiment_score": "0.435",
5155 | "aspects": "['Corporate/Sales']"
5156 | }
5157 | ]
5158 | },
5159 | "1779": {
5160 | "sentence": "EasyJet attracts more passengers in June but still lags Ryanair",
5161 | "info": [
5162 | {
5163 | "snippets": "['attracts more passengers']",
5164 | "target": "Ryanair",
5165 | "sentiment_score": "0.259",
5166 | "aspects": "['Corporate/Sales/Sales']"
5167 | }
5168 | ]
5169 | }
5170 | }
5171 |
--------------------------------------------------------------------------------
/dataset/task1_post_ABSA_test.json:
--------------------------------------------------------------------------------
1 | {
2 | "19167$GILD": {
3 | "sentence": "$GILD Back in Bullish",
4 | "info": [
5 | {
6 | "target": "GILD",
7 | "snippets": "['Back in']"
8 | }
9 | ]
10 | },
11 | "19168$LE": {
12 | "sentence": "$LE Back in for a swing on this one @ 15.35/sh. Last time was +50% within 3 months",
13 | "info": [
14 | {
15 | "target": "LE",
16 | "snippets": "['Back in for a swing']"
17 | }
18 | ]
19 | },
20 | "19169$WLL": {
21 | "sentence": "$WLL In for a quarter position @ 8.10...",
22 | "info": [
23 | {
24 | "target": "WLL",
25 | "snippets": "['In for a quarter position']"
26 | }
27 | ]
28 | },
29 | "19170$VNR": {
30 | "sentence": "$VNR Just added 2,300 @ .77 Going in for long term as this will hit $1.20 next month",
31 | "info": [
32 | {
33 | "target": "VNR",
34 | "snippets": "['Just added 2,300']"
35 | }
36 | ]
37 | },
38 | "19171$TSLA": {
39 | "sentence": "Bought back into $TSLA, previously sold at $362",
40 | "info": [
41 | {
42 | "target": "TSLA",
43 | "snippets": "['Bought']"
44 | }
45 | ]
46 | },
47 | "19172$ZTO": {
48 | "sentence": "$ZTO accumulating more at the $15s",
49 | "info": [
50 | {
51 | "target": "ZTO",
52 | "snippets": "['accumulating more']"
53 | }
54 | ]
55 | },
56 | "19173$TSLA": {
57 | "sentence": "@TradeIdea might buy $TSLA after hours if I can get in on a dip after earnings",
58 | "info": [
59 | {
60 | "target": "TSLA",
61 | "snippets": "['might buy']"
62 | }
63 | ]
64 | },
65 | "19174$MSFT": {
66 | "sentence": "$MSFT plenty of green, early sign of an upbeat day coming. Just buy back at open if u sold too soon.",
67 | "info": [
68 | {
69 | "target": "MSFT",
70 | "snippets": "['Just buy back at open']"
71 | }
72 | ]
73 | },
74 | "19175$BZUN": {
75 | "sentence": "$BZUN good entry right now",
76 | "info": [
77 | {
78 | "target": "BZUN",
79 | "snippets": "['good entry right now']"
80 | }
81 | ]
82 | },
83 | "19176$MU": {
84 | "sentence": "$MU 34.18, I ll buy 5 thousand shares and put it a side! I am calling the bottom, always bullish but in between sometimes bear.",
85 | "info": [
86 | {
87 | "target": "MU",
88 | "snippets": "['I ll buy 5 thousand shares']"
89 | }
90 | ]
91 | },
92 | "19177$UGAZ": {
93 | "sentence": "$UGAZ Guess I'll buy another 1k shares",
94 | "info": [
95 | {
96 | "target": "UGAZ",
97 | "snippets": "[\"Guess I'll buy another 1k shares\"]"
98 | }
99 | ]
100 | },
101 | "19178$UWTI": {
102 | "sentence": "$UWTI 25K shares left in U. Might sell all by Monday",
103 | "info": [
104 | {
105 | "target": "UWTI",
106 | "snippets": "['Might sell all by Monday']"
107 | }
108 | ]
109 | },
110 | "19179$MU ": {
111 | "sentence": "$MU Im out... Sold at 13.84",
112 | "info": [
113 | {
114 | "target": "MU ",
115 | "snippets": "['Im out... Sold']"
116 | }
117 | ]
118 | },
119 | "19180$PLX": {
120 | "sentence": "$PLX investors like me will sell off. i sold my 50k shares of plx until i know the plan",
121 | "info": [
122 | {
123 | "target": "PLX",
124 | "snippets": "['i sold my 50k shares']"
125 | }
126 | ]
127 | },
128 | "19181$DRYS": {
129 | "sentence": "$DRYS I sold my position! 9% profit",
130 | "info": [
131 | {
132 | "target": "DRYS",
133 | "snippets": "['sold my position!']"
134 | }
135 | ]
136 | },
137 | "19182$PEIX": {
138 | "sentence": "I sold my $PEIX shares today @ $6.07 but will buy them back lower.",
139 | "info": [
140 | {
141 | "target": "PEIX",
142 | "snippets": "['sold my $PEIX shares today']"
143 | }
144 | ]
145 | },
146 | "19183$AAPL": {
147 | "sentence": "$AAPL Closed below 8ema. Sold position",
148 | "info": [
149 | {
150 | "target": "AAPL",
151 | "snippets": "['Sold position']"
152 | }
153 | ]
154 | },
155 | "19184$AZO": {
156 | "sentence": "Sold remaining 1/3 $AZO at $700 - 30% above my $535 average",
157 | "info": [
158 | {
159 | "target": "AZO",
160 | "snippets": "['Sold remaining']"
161 | }
162 | ]
163 | },
164 | "19185$BABA": {
165 | "sentence": "$BABA I added on the dip yesterday. Rick holding over night. But I’m running away from this.",
166 | "info": [
167 | {
168 | "target": "BABA",
169 | "snippets": "['But I’m running away from this.']"
170 | }
171 | ]
172 | },
173 | "19186$SPY": {
174 | "sentence": "$SPY lost too much of hard earned money. Sold my 240 puts yesterday!!!! So, mad",
175 | "info": [
176 | {
177 | "target": "SPY",
178 | "snippets": "['Sold my 240 puts']"
179 | }
180 | ]
181 | },
182 | "19187$DRYS": {
183 | "sentence": "$DRYS i exited very riskyyyy",
184 | "info": [
185 | {
186 | "target": "DRYS",
187 | "snippets": "['i exited']"
188 | }
189 | ]
190 | },
191 | "19188$SHOP": {
192 | "sentence": "RSI is overbought on $SHOP and momentum is falling",
193 | "info": [
194 | {
195 | "target": "SHOP",
196 | "snippets": "['overbought on $SHOP and momentum is falling']"
197 | }
198 | ]
199 | },
200 | "19189$JNUG": {
201 | "sentence": "$JNUG overbought, need to reset technicals",
202 | "info": [
203 | {
204 | "target": "JNUG",
205 | "snippets": "['overbought, need to reset technicals']"
206 | }
207 | ]
208 | },
209 | "19190$GV": {
210 | "sentence": "$GV markets overbought ...feel the correction is close",
211 | "info": [
212 | {
213 | "target": "GV",
214 | "snippets": "['markets overbought ...feel the correction is close']"
215 | }
216 | ]
217 | },
218 | "19191$KATE": {
219 | "sentence": "$KATE overbought, shooting star candle Friday, lots of bull ppl on this board. 3 extremely reliable indicators of impending doom next week",
220 | "info": [
221 | {
222 | "target": "KATE",
223 | "snippets": "['overbought, shooting star candle']"
224 | }
225 | ]
226 | },
227 | "19192$IO": {
228 | "sentence": "$IO sell the pop, market extreme overbought here $SDRL $X $CHK",
229 | "info": [
230 | {
231 | "target": "IO",
232 | "snippets": "['market extreme overbought here']"
233 | }
234 | ]
235 | },
236 | "19193$DCTH": {
237 | "sentence": "$DCTH is this seriously over bought.",
238 | "info": [
239 | {
240 | "target": "DCTH",
241 | "snippets": "['seriously over bought']"
242 | }
243 | ]
244 | },
245 | "19194$SQ": {
246 | "sentence": "$SQ overbought by all the FOMO traders",
247 | "info": [
248 | {
249 | "target": "SQ",
250 | "snippets": "['overbought by all the FOMO traders']"
251 | }
252 | ]
253 | },
254 | "19195$AZO": {
255 | "sentence": "$AZO does it look overbought yet at this level..",
256 | "info": [
257 | {
258 | "target": "AZO",
259 | "snippets": "['look overbought yet at this level..']"
260 | }
261 | ]
262 | },
263 | "19196$GMED": {
264 | "sentence": "$GMED looks overbought at this level and time frame",
265 | "info": [
266 | {
267 | "target": "GMED",
268 | "snippets": "['looks overbought at this level']"
269 | }
270 | ]
271 | },
272 | "19197$NVDA": {
273 | "sentence": "$NVDA what a bubble this stock is",
274 | "info": [
275 | {
276 | "target": "NVDA",
277 | "snippets": "['what a bubble this stock is']"
278 | }
279 | ]
280 | },
281 | "19198$CIE": {
282 | "sentence": "$CIE stock is oversold and shorted to death. I don't really think it matters what ER says, the shorts will be out Monday",
283 | "info": [
284 | {
285 | "target": "CIE",
286 | "snippets": "['stock is oversold and shorted to death']"
287 | }
288 | ]
289 | },
290 | "19199$FTR": {
291 | "sentence": "Bought $FTR on belief stock oversold. Dividend cut and bad news priced in.",
292 | "info": [
293 | {
294 | "target": "FTR",
295 | "snippets": "['Bought $FTR on belief stock oversold']"
296 | }
297 | ]
298 | },
299 | "19200$VIAV": {
300 | "sentence": "$VIAV is in Stochastic Oversold winning 62.65% in the past",
301 | "info": [
302 | {
303 | "target": "VIAV",
304 | "snippets": "['Oversold winning 62.65% in the past']"
305 | }
306 | ]
307 | },
308 | "19201 $AGRX ": {
309 | "sentence": "ONE STOCK OVERSOLD RSI 20 TO WATCH FOR POSSIBLE REVERSEAL $AGRX ",
310 | "info": [
311 | {
312 | "target": "AGRX ",
313 | "snippets": "['STOCKS OVERSOLD RSI 20']"
314 | }
315 | ]
316 | },
317 | "19202$RH": {
318 | "sentence": "$RH Huge short interest. All of retail oversold. RSI below 20 today. Big squeeze coming. Likely back to upper 30s before earnings",
319 | "info": [
320 | {
321 | "target": "RH",
322 | "snippets": "['All of retail oversold']"
323 | }
324 | ]
325 | },
326 | "19203$SINO": {
327 | "sentence": "These stocks are OVERSOLD & UNDERVALUED! So we need to buy @ support! $SINO $SCON $LTBR $ITEK $GALE $HGG $GBR $OPTT",
328 | "info": [
329 | {
330 | "target": "SINO",
331 | "snippets": "['These stocks are OVERSOLD & UNDERVALUED!']"
332 | }
333 | ]
334 | },
335 | "19204$KEM": {
336 | "sentence": "$KEM looks like oversold already, unless there is other fundamentally bearish factor... good for first small entry.",
337 | "info": [
338 | {
339 | "target": "KEM",
340 | "snippets": "['looks like oversold already']"
341 | }
342 | ]
343 | },
344 | "19205$ENDP": {
345 | "sentence": "Both RSI and Stochastic are in oversold territory on $ENDP",
346 | "info": [
347 | {
348 | "target": "ENDP",
349 | "snippets": "['in oversold territory']"
350 | }
351 | ]
352 | },
353 | "19206$FB": {
354 | "sentence": "$FB $AMZN $AAPL $NFLX $GOOG $NVDA waaaay too hot!!! due for another tech sell off!!!",
355 | "info": [
356 | {
357 | "target": "FB",
358 | "snippets": "['waaaay too hot!!! / due for another tech sell off!!!']"
359 | }
360 | ]
361 | },
362 | "19207$WY": {
363 | "sentence": "$WY overvalued....sorry folks but with merger costs/ housing slowdowns & less paper product demand then WY shares too high",
364 | "info": [
365 | {
366 | "target": "WY",
367 | "snippets": "['overvalued']"
368 | }
369 | ]
370 | },
371 | "19208$MTN": {
372 | "sentence": "$MTN this stock is so overvalued its ridiculous, can we go back down to the 80s",
373 | "info": [
374 | {
375 | "target": "MTN",
376 | "snippets": "['this stock is so overvalued its ridiculous']"
377 | }
378 | ]
379 | },
380 | "19209$PCLN": {
381 | "sentence": "$PCLN overvalued by 51.76%, mediocre fundamentals, not a strong buy",
382 | "info": [
383 | {
384 | "target": "PCLN",
385 | "snippets": "['overvalued by 51.76%, mediocre fundamentals']"
386 | }
387 | ]
388 | },
389 | "19210$DPZ": {
390 | "sentence": "$DPZ Domino's is an overvalued and leveraged company in a high-flying sector of a market near all-time highs..",
391 | "info": [
392 | {
393 | "target": "DPZ",
394 | "snippets": "['overvalued and leveraged company']"
395 | }
396 | ]
397 | },
398 | "19211$RIG": {
399 | "sentence": "$RIG $AMZN $NFLX $TSLA lol, Amazon and Tesla are overvalued...",
400 | "info": [
401 | {
402 | "target": "RIG",
403 | "snippets": "['are overvalued...']"
404 | }
405 | ]
406 | },
407 | "19212$NFX": {
408 | "sentence": "$NFX still looks overpriced (rated 1.7 as price is down to 34.97).",
409 | "info": [
410 | {
411 | "target": "NFX",
412 | "snippets": "['still looks overpriced']"
413 | }
414 | ]
415 | },
416 | "19213$AAPL": {
417 | "sentence": "$AAPL Selling pressure aided by put buyers trying to exploit S-T opp. Same thing creates bullish pressure on call",
418 | "info": [
419 | {
420 | "target": "AAPL",
421 | "snippets": "['Selling pressure']"
422 | }
423 | ]
424 | },
425 | "19214$AAPL": {
426 | "sentence": "$AAPL under more selling pressure today - down 2.5%",
427 | "info": [
428 | {
429 | "target": "AAPL",
430 | "snippets": "['under more selling pressure today']"
431 | }
432 | ]
433 | },
434 | "19215$AAPL": {
435 | "sentence": "$AAPL gravestone doji indicating downward selling pressure. After long upward trajectory,healthy to retest 108/106 ",
436 | "info": [
437 | {
438 | "target": "AAPL",
439 | "snippets": "['indicating downward selling pressure']"
440 | }
441 | ]
442 | },
443 | "19216$TVIX": {
444 | "sentence": "$TVIX in @$10.07 please stop selling people. Get a hold of reality and let's get this back to $12 ish. Buy buy buy buy buy buy and MORE BUY!",
445 | "info": [
446 | {
447 | "target": "TVIX",
448 | "snippets": "['please stop selling people']"
449 | }
450 | ]
451 | },
452 | "19217$XNET": {
453 | "sentence": "$XNET don't catch this falling Knife taders. protect yourselves.",
454 | "info": [
455 | {
456 | "target": "XNET",
457 | "snippets": "[\"don't catch this falling Knife\"]"
458 | }
459 | ]
460 | },
461 | "19218$CYTX": {
462 | "sentence": "$CYTX 3 day trading is oversold at 28.44 RSI stock price reversal will happen ",
463 | "info": [
464 | {
465 | "target": "CYTX",
466 | "snippets": "['3 day trading is oversold']"
467 | }
468 | ]
469 | },
470 | "19219$SBGL": {
471 | "sentence": "$SBGL The most undervalued gold/platinum stock in the world! Target 60",
472 | "info": [
473 | {
474 | "target": "SBGL",
475 | "snippets": "['The most undervalued']"
476 | }
477 | ]
478 | },
479 | "19220$ARNC": {
480 | "sentence": "$ARNC Stock is significantly undervalued. The Fastener business alone is worth more than the current stock price and it's a cash cow",
481 | "info": [
482 | {
483 | "target": "ARNC",
484 | "snippets": "['Stock is significantly undervalued']"
485 | }
486 | ]
487 | },
488 | "19221$CXW": {
489 | "sentence": "$CXW is currently way undervalued and will rise back to the $19's soon",
490 | "info": [
491 | {
492 | "target": "CXW",
493 | "snippets": "['is currently way undervalued and will rise back to']"
494 | }
495 | ]
496 | },
497 | "19222$AMZN": {
498 | "sentence": "Macquarie Reiterates “Buy” Rating for http://Amazon.com , Inc. $AMZN",
499 | "info": [
500 | {
501 | "target": "AMZN",
502 | "snippets": "['Reiterates “Buy” Rating']"
503 | }
504 | ]
505 | },
506 | "19223$AMZN": {
507 | "sentence": "Cantor Fitzgerald Sticks to Its Buy Rating for Amazon $AMZN",
508 | "info": [
509 | {
510 | "target": "AMZN",
511 | "snippets": "['Sticks to Its Buy Rating for']"
512 | }
513 | ]
514 | },
515 | "19224$A": {
516 | "sentence": "Analyst Activity – Barclays PLC Reiterates Buy on Agilent Technologies (NYSE:A) https://t.co/SJSMP8qzxs $A",
517 | "info": [
518 | {
519 | "target": "A",
520 | "snippets": "['Reiterates Buy']"
521 | }
522 | ]
523 | },
524 | "19225$AMC": {
525 | "sentence": "$AMC 87% of analysts have a buy rating on $AMC with 20% upside",
526 | "info": [
527 | {
528 | "target": "AMC",
529 | "snippets": "['analysts have a buy rating on']"
530 | }
531 | ]
532 | },
533 | "19226$MGM": {
534 | "sentence": "5-star analyst Robin M. Farley from UBS reiterated a BUY on $MGM",
535 | "info": [
536 | {
537 | "target": "MGM",
538 | "snippets": "['reiterated a BUY']"
539 | }
540 | ]
541 | },
542 | "19227$CHKP": {
543 | "sentence": "Check Point Software Technologies Ltd. $CHKP Receives Outperform Rating from Oppenheimer Holdings, Inc.",
544 | "info": [
545 | {
546 | "target": "CHKP",
547 | "snippets": "['Receives Outperform Rating']"
548 | }
549 | ]
550 | },
551 | "19228$SWI": {
552 | "sentence": "$SWI downgraded to market perform from outperform at FBR & Co.",
553 | "info": [
554 | {
555 | "target": "SWI",
556 | "snippets": "['downgraded to market perform']"
557 | }
558 | ]
559 | },
560 | "19229$DH": {
561 | "sentence": "$DH.CA NA BK analyst dropped rating to under perform with target price to $18 + high likelihood of dividend cut",
562 | "info": [
563 | {
564 | "target": "DH",
565 | "snippets": "['dropped rating to under perform']"
566 | }
567 | ]
568 | },
569 | "19230$SPG": {
570 | "sentence": "$SPG downgraded to Neutral from Buy at Goldman. PT to $185 from $207",
571 | "info": [
572 | {
573 | "target": "SPG",
574 | "snippets": "['downgraded to Neutral']"
575 | }
576 | ]
577 | },
578 | "19231$AMZN": {
579 | "sentence": "Amazon.com , Inc. $AMZN Downgraded by Zacks Investment Research to “Strong Sell”",
580 | "info": [
581 | {
582 | "target": "AMZN",
583 | "snippets": "['Downgraded']"
584 | }
585 | ]
586 | },
587 | "19232$TWTR": {
588 | "sentence": "Twitter, Inc. $TWTR Rating Lowered to Sell at BidaskClub",
589 | "info": [
590 | {
591 | "target": "TWTR",
592 | "snippets": "['Rating Lowered']"
593 | }
594 | ]
595 | },
596 | "19233$GE": {
597 | "sentence": "$GE gets a raise",
598 | "info": [
599 | {
600 | "target": "GE",
601 | "snippets": "['gets a raise']"
602 | }
603 | ]
604 | },
605 | "19234$AMZN": {
606 | "sentence": "Amazon.com Inc $AMZN just had an analyst rating upgrade...",
607 | "info": [
608 | {
609 | "target": "AMZN",
610 | "snippets": "['just had an analyst rating upgrade']"
611 | }
612 | ]
613 | },
614 | "19235$FANG": {
615 | "sentence": "#Google Parent And $FANG Stock Alphabet Gets Rating Upgrade - Investor's Business Daily",
616 | "info": [
617 | {
618 | "target": "FANG",
619 | "snippets": "['Gets Rating Upgrade']"
620 | }
621 | ]
622 | },
623 | "19236$TSO": {
624 | "sentence": "$TSO Tesoro Achieves Investment Grade Credit Rating with Standard & Poor's Upgrade",
625 | "info": [
626 | {
627 | "target": "TSO",
628 | "snippets": "['Achieves Investment Grade Credit Ratin']"
629 | }
630 | ]
631 | },
632 | "19237$ITC": {
633 | "sentence": "CLSA On ITC: Rating: Upgrade To Underperform From Sell, Taget: Rs 285",
634 | "info": [
635 | {
636 | "target": "ITC",
637 | "snippets": "['Rating: Upgrade To']"
638 | }
639 | ]
640 | },
641 | "19238$FB": {
642 | "sentence": "$FB Buy rating by MKM Partners with a $105 PT",
643 | "info": [
644 | {
645 | "target": "FB",
646 | "snippets": "['Buy rating']"
647 | }
648 | ]
649 | },
650 | "19239$CLI": {
651 | "sentence": "Barclays reiterated Mack-Cali Realty $CLI at Sell. Maybe wanna stay away Value investors",
652 | "info": [
653 | {
654 | "target": "CLI",
655 | "snippets": "['Barclays reiterated Mack-Cali Realty $CLI at Sell']"
656 | }
657 | ]
658 | },
659 | "19240$UAA": {
660 | "sentence": "Under Armour downgraded to Sell from Hold at Deutsche Bank - $UAA",
661 | "info": [
662 | {
663 | "target": "UAA",
664 | "snippets": "['downgraded to Sell']"
665 | }
666 | ]
667 | },
668 | "19241$AMD": {
669 | "sentence": "$AMD GS reiterated Sell rating, so that isn't helping",
670 | "info": [
671 | {
672 | "target": "AMD",
673 | "snippets": "['reiterated Sell rating']"
674 | }
675 | ]
676 | },
677 | "19242$AMD": {
678 | "sentence": "$AMD Citigroup Inc. issued a sell rating and a $2.00 price objective on the stock",
679 | "info": [
680 | {
681 | "target": "AMD",
682 | "snippets": "['issued a sell rating']"
683 | }
684 | ]
685 | },
686 | "19243$GE": {
687 | "sentence": "$GE notice how insiders have only been buying the last 3 months - not selling",
688 | "info": [
689 | {
690 | "target": "GE",
691 | "snippets": "['insiders have only been buying']"
692 | }
693 | ]
694 | },
695 | "19244$COTY": {
696 | "sentence": "$COTY Recent significant insider buying at $COTY, $REV, and $IFF. ",
697 | "info": [
698 | {
699 | "target": "COTY",
700 | "snippets": "['significant insider buying']"
701 | }
702 | ]
703 | },
704 | "19245$PLXP": {
705 | "sentence": "$PLXP I like the insider buying taking place",
706 | "info": [
707 | {
708 | "target": "PLXP",
709 | "snippets": "['insider buying taking place']"
710 | }
711 | ]
712 | },
713 | "19246$TOL": {
714 | "sentence": "$TOL takes a hit on its earnings miss today.",
715 | "info": [
716 | {
717 | "target": "TOL",
718 | "snippets": "['earnings miss today']"
719 | }
720 | ]
721 | },
722 | "19247$XTNT ": {
723 | "sentence": "$XTNT 10% increase in revenue yoy, 24.5 million in revenue and 25 million is the breakeven point with total cost of operating(debt included)",
724 | "info": [
725 | {
726 | "target": "XTNT ",
727 | "snippets": "['increase in revenue yoy']"
728 | }
729 | ]
730 | },
731 | "19248$PTLA": {
732 | "sentence": "$PTLA why are the insider selling?",
733 | "info": [
734 | {
735 | "target": "PTLA",
736 | "snippets": "['why are the insider selling?']"
737 | }
738 | ]
739 | },
740 | "19249$KO": {
741 | "sentence": "Coca-Cola shares rise after earnings beat expectations",
742 | "info": [
743 | {
744 | "target": "KO",
745 | "snippets": "['earnings beat expectations']"
746 | }
747 | ]
748 | },
749 | "19250$FORD": {
750 | "sentence": "MarketWatch: Ford offers positive 2017 guidance after Q2 earnings beat, but shares wobble",
751 | "info": [
752 | {
753 | "target": "FORD",
754 | "snippets": "['Q2 earnings beat']"
755 | }
756 | ]
757 | },
758 | "19251$ST": {
759 | "sentence": "Sensata Technologies Holding N.V. $ST Shares Gap Up Following Earnings Beat",
760 | "info": [
761 | {
762 | "target": "ST",
763 | "snippets": "['Up Following Earnings Beat']"
764 | }
765 | ]
766 | },
767 | "19252$BBBY": {
768 | "sentence": "$BBBY After earnings it's tanking",
769 | "info": [
770 | {
771 | "target": "BBBY",
772 | "snippets": "[\"After earnings it's tanking\"]"
773 | }
774 | ]
775 | },
776 | "19253$SPPI": {
777 | "sentence": "$SPPI drops sharply after bad earnings. Investors not liking what they see. Say hello to $5's",
778 | "info": [
779 | {
780 | "target": "SPPI",
781 | "snippets": "['bad earnings']"
782 | }
783 | ]
784 | },
785 | "19254$HIMX": {
786 | "sentence": "$HIMX great short entry, earnings miss + bad guide + downgrade next week = more downside",
787 | "info": [
788 | {
789 | "target": "HIMX",
790 | "snippets": "['earnings miss']"
791 | }
792 | ]
793 | },
794 | "19255$MONY": {
795 | "sentence": "Price-comparison site http://Moneysupermarket.com slumps the most in 4 years after profit warning https://bloom.bg/2tK2o0y",
796 | "info": [
797 | {
798 | "target": "MONY",
799 | "snippets": "['profit warning']"
800 | }
801 | ]
802 | },
803 | "19256$GTOFF": {
804 | "sentence": "Gemalto shares slump on third profit warning https://www.ft.com/content/1ee22294-7071-11e7-aca6-c6bd07df1a3c … via @FT",
805 | "info": [
806 | {
807 | "target": "GTOFF",
808 | "snippets": "['profit warning']"
809 | }
810 | ]
811 | },
812 | "19257$HIBB": {
813 | "sentence": "Hibbett Sports shares plummet 30% after profit warning, ‘woefully late’ e-commerce launch",
814 | "info": [
815 | {
816 | "target": "HIBB",
817 | "snippets": "['profit warning']"
818 | }
819 | ]
820 | },
821 | "19258$ITV": {
822 | "sentence": "Brexit drives down profits and advertising revenue at ITV ",
823 | "info": [
824 | {
825 | "target": "ITV",
826 | "snippets": "['drives down profits and advertising revenue']"
827 | }
828 | ]
829 | },
830 | "19259$GM": {
831 | "sentence": "GM Q2 Revenue $37BN, down 1.1% Y/Y, Exp. $40.15BN EPS $1.89, Exp. $1.70",
832 | "info": [
833 | {
834 | "target": "GM",
835 | "snippets": "['Revenue $37BN, down']"
836 | }
837 | ]
838 | },
839 | "19260$CTG": {
840 | "sentence": "CTG revenue falls 9%, lowers full-year revenue guidance",
841 | "info": [
842 | {
843 | "target": "CTG",
844 | "snippets": "['revenue falls']"
845 | }
846 | ]
847 | },
848 | "19261$IBM": {
849 | "sentence": "IBM revenue growth down 3% over the past year, its 20th consecutive YoY decline. $IBM",
850 | "info": [
851 | {
852 | "target": "IBM",
853 | "snippets": "['revenue growth dow']"
854 | }
855 | ]
856 | },
857 | "19262$CAT": {
858 | "sentence": "Caterpillar has big revenue & sales increases in Asia-Pacific. Sales are marginally up domestically",
859 | "info": [
860 | {
861 | "target": "CAT",
862 | "snippets": "['big revenue & sales increases']"
863 | }
864 | ]
865 | },
866 | "19263$GOOG": {
867 | "sentence": "Alphabet revenue up 21 percent to $26B",
868 | "info": [
869 | {
870 | "target": "GOOG",
871 | "snippets": "['revenue up 21 percent']"
872 | }
873 | ]
874 | },
875 | "19264$PEP": {
876 | "sentence": "$PEP Q2'17 delivered 6% organic revenue D&E growth & 3% reported net revenue D&E ... $PEP Q2 organic revenue up 3.1%; reported net revenue up 2.0%",
877 | "info": [
878 | {
879 | "target": "PEP",
880 | "snippets": "['reported net revenue up 2.0%']"
881 | }
882 | ]
883 | },
884 | "19265$SHOP": {
885 | "sentence": "$SHOP Shopify revenue up 86% year-over-year (long) ",
886 | "info": [
887 | {
888 | "target": "SHOP",
889 | "snippets": "['revenue up 86% year-over-year']"
890 | }
891 | ]
892 | }
893 | }
--------------------------------------------------------------------------------