Skip to Content
ElectronicsElectronics
  • Article
  • Open Access

30 June 2022

Fine-Grained Classification of Announcement News Events in the Chinese Stock Market

,
,
,
and
1
School of Artificial Intelligence and Law, Southwest University of Political Science & Law, Chongqing 401120, China
2
School of Economic Information Engineering, Southwestern University of Finance and Economics, Chengdu 611130, China
3
School of Economics, Xihua University, Chengdu 610039, China
*
Author to whom correspondence should be addressed.

Abstract

Determining the event type is one of the main tasks of event extraction (EE). The announcement news released by listed companies contains a wide range of information, and it is a challenge to determine the event types. Some fine-grained event type frameworks have been built from financial news or stock announcement news by domain experts manually or by clustering, ontology or other methods. However, we think there are still some improvements to be made based on the existing results. For example, a legal category has been created in previous studies, which considers violations of company rules and violations of the law the same thing. However, the penalties they face and the expectations they bring to investors are different, so it is more reasonable to consider them different types. In order to more finely classify the event type of stock announcement news, this paper proposes a two-step method. First, the candidate event trigger words and co-occurrence words satisfying the support value are extracted, and they are arranged in the order of common expressions through the algorithm. Then, the final event types are determined using three proposed criteria. Based on the real data of the Chinese stock market, this paper constructs 54 event types (p = 0.927, f = 0.946), and some reasonable and valuable types have not been discussed in previous studies. Finally, based on the unilateral trading policy of the Chinese stock market, we screened out some event types that may not be valuable to investors.

1. Introduction

Much empirical research has shown that news events have important impacts on the stock market. According to Yin’s classification standard [1], news can be divided into specific news and general news. Specific news refers to news stories where the affected stock entities are clearly specified in the news text, while general news refers to stories where they are not. Specific news usually involves announcements about stocks. General news includes industry news, policy news, microeconomic news and so on. When analyzing the impact of general news on the stock market, we first need to determine the stock entities that may be affected by such news. Due to the different processing methods for the two kinds of news, this paper only focuses on stock announcement news, which can reflect the recent development of a listed company. It can assist investors in making decisions and can be used in stock return predictions. Determining the event type is one of the main tasks of event extraction. The announcement news covers all aspects of information about listed companies, so it is a challenge to build a maturity event type framework from stock announcement news.
To date, there is no unified classification framework or standard for the news announcements regarding the Chinese stock market. Therefore, the existing research has constructed various event type frameworks using expert domain knowledge and experience [2], clustering [3], ontology [4], and other methods [5]. Some studies have implemented a fine-grained event type framework. Following an analysis of the existing studies, we believe that there is still room for improvement. The existing methods usually focus on the event types that occur more frequently or are generally considered important. Some low-frequency event types are usually neglected, and some event types can be further subdivided. For example, an event type called legal has been constructed in many studies, which regards violations of company policy and violations of the law as being the same. However, the two will receive different penalties, resulting in different expected impacts on investors. Therefore, we think it is more reasonable to regard the two as different event types.
Inspired by the “IDA-CLUSTERING + HUMAN-IDENTIFICATION” strategy [6], we propose a two-step method to divide stock announcement news into more detailed types. Event trigger words play an important role in the event type, which are usually verbs. By combining these with the conventional expressions of a certain kind of announcement news, we can extract expressions from an announcement news set containing event trigger words. In order to take into account the industry characteristics and event emotional tendency, we propose three event type judgment criteria to determine the final event type. The experimental results of real data on the Chinese stock market show that the event type framework constructed in this paper is reasonable and consistent with people’s cognition. Compared with the existing related research results, our method finds some reasonable and valuable event types that have not been discussed yet. Our work enriches the existing research, and the results will help investors.
After extracting all kinds of announcement news events, we did not choose to conduct the stock prediction work in the traditional way. This is due to the fact that we think it is inappropriate to rely solely on announcement news for prediction without considering other types of news such as industry news, financial news and so on. Instead, considering the unilateral trading policy in the Chinese stock market, we screened out some event types that are not valuable to investors.

3. Proposed Method

3.1. Extracting Event Trigger Words

Event trigger words are key words that help us to identify event types, which are usually verbs. Firstly, this paper proposes an algorithm and a support calculation formula, which takes all stock announcement news texts as the input, extracts all verbs from the text, marks the emotional polarity according to the emotional dictionary, takes the verb as a candidate event trigger word and takes the announcement news containing the verb as a class. Then it calculates the support between the other words and the verb, takes the other words that meet the threshold as collocations and judges the word order between collocations. Finally, it extracts candidate event trigger words and co-occurrence words and arranges them in the order of common expressions. It can be described as Algorithm 1:
Algorithm 1: Extract Candidate Trigger Words and Collocations from Announcement News
  • Input: Announcement news text set C
  • Output: event trigger words and collocation sequence set E
  • #Text preprocessing, put all verbs into set V, and judge the emotional polarity of verbs
  • For text in C
  • wlist1 = Segment(text)
  • wlist2 = NotStopWord(word1)
  • Postagger(wlist2)
  • if Postagger[word in wlist2] = Verb
  • add word in V
  • SentimentTag(V)
  • #From the announcement news set Ci containing verb Vi, judge the best position of other words, trigger words and the best order between other words according to word co-occurrence, and calculate the support
  • For word in Ci
  • beforeValueocc = Count(word, vi)/Count(Ci)
  • afterValueocc = Count(vi, word)/Count(Ci)
  • if beforeValueocc > afterValueocc and beforeValueocc > thred1
  • add word in listbfi
  • else if afterValueocc > thred1
  • add word in listafi
  • Add first word from listbfi, listafi in Ebefore and Eafter
  • For every word as w1 in listbfi
  • For every word as w2 in Ebefore
  • if Count(w1, w2) > Count(w2,w1)
  • add w1 in Ebefore and put w1 before w2
  • else
  • for next w2
  • if w1 not in Ebefore
  • // If a word is not placed before the sorted word, it is placed in the last position
  • add w1 in Ebefore and put in the last location.
  • Judge the position of words in listafi as shown above
  • Connect the words in ebefore and eafter in order to form vlist
  • if exist (beforeValueocc or afterValueocc)>thred2
  • put vList in E
  • else if Sentiment(vi) > 0
  • put vList in E
  • END
The function of Formula (1) involves calculating the support between words and the verb, where CountB() represents the number of times the word appears before the verb, and CountA() stands for the opposite. If the absolute value of Formula (1) exceeds the threshold, this means that it is a conventional expression with a verb in the announcement news. If the result is positive, it means the word is usually in front of the verb. If the probability of a word appearing before and after the verb is close, it means that the word has no value in the representation of the event type.
S u p p o r t ( w i , w t ) = C o u n t B ( w i , w t ) C o u n t ( w t ) C o u n t A ( w i , w t ) C o u n t ( w t )

3.2. Three Classification Criteria

Based on the results of the above Algorithm 1, this paper puts forward three criteria to judge whether it constitutes the final event type from the perspective of data mining. The purpose of the three criteria is to select regular announcement news from the stock announcement news set containing verbs and construct it into a type. When constructing the event type of stock announcement news, the event extraction template is determined according to the criteria. The three criteria are as follows:
(1) For verbs without emotional polarity, if there is a collocation with more than 0.95 support around the verb, combine the collocation with the verb as the event trigger words. For example, there is a collocation of “扩股/capital increase (0.99)” to the left of the verb “增资/share expansion”, so “增资扩股/capital increase and share expansion” is used as the event trigger words. If the event trigger word itself contains independent type information, it is determined as a type of event, and the event trigger word is directly used as the extraction template. If the event trigger word does not constitute independent type information, the collocation words whose support exceeds the threshold and the event trigger words are constructed as a type of event. The form of word combination is used as the event extraction template.
We take the “垃圾焚烧/garbage burn” event as an example to illustrate the advantages of the classification method. Firstly, through the algorithm, the output results about the verb “焚烧/burn” are as follows:
[中标/winning the bid (0.38)-环保/environmental protection (0.54)-生活/domestic (0.61)-垃圾/garbage (0.93)-焚烧/burn-发电/power generation (0.90)-项目/project (0.93)-投资/investment (0.45)-建设/construction (0.24)-处理/treatment (0.32)]
Since there is no combinatorial collocation around the word “焚烧/burn”, the word “burn” itself is used as an event trigger word, and the word itself does not constitute independent type information. Therefore, the type is constructed together with the collocation whose support exceeds the threshold, which forms the “garbage burn” event. The extraction template is:
[…]垃圾/garbage […]焚烧/burn […]发电/power generation […]项目/project […]
Through the event extraction template, the announcement news events related to environmental protection can be screened out from the meaningless stock announcement news containing “burn”. For example, announcement news 3 (shown below) can be excluded.
公告新闻3:辉丰股份(002496)公告,子公司华通化学收到环保局出具行政处罚决定书,要求对吡氟酰草胺项目责令限期改正,对RTO废气焚烧装置责令立即停止建设。
NEWS 3: (SZ002496) announced that Huatong Chemical, a subsidiary company, received the decision of administrative punishment issued by the Environmental Protection Bureau, demanding it to order the correction within a time limit for the pyruvic oxalamide project and order the construction of RTO waste gas burn unit to stop immediately.
At the same time, the advantages of the event extraction template compared with the word similarity calculation method and clustering method can be seen in announcements 4 and 5.
公告新闻4:绿色动力(601330)11月28日晚间公告,公司成为葫芦岛东部垃圾焚烧发电综合处理厂生活垃圾焚烧发电项目的社会资本合作方,项目估算总投资不超过6.3亿元。
NEWS 4: (SH601330) announced on the evening of November 28 that the company has become a social capital partner of the domestic garbage burn power generation project of the waste incineration power generation comprehensive treatment plant in the east of Huludao, with an estimated total investment of no more than 630 million yuan.
公告新闻5:城发环境(000885)9月26日晚间公告,公司为宜阳县生活垃圾焚烧发电项目的中标人,项目总投资3.60亿元,项目合作期30年,含2年建设期。
News 5: (SZ000885) announced on the evening of September 26 that the company is the bid winner of Yiyang domestic garbage burn power generation project, with a total investment of 360 million yuan and a cooperation period of 30 years, including a two-year construction period.
(2) If the verb or the collocation around the verb is combined to form an industry characteristic word, the verb or the combined words are used as the event trigger words, and the event trigger words are used as the event extraction template. Taking the “评价/evaluate” verb as an example, the output of the algorithm is:
仿制/Imitation (0.50)-药/medical (0.76)-药品/drug (0.41)-制药/Pharmaceutical (0.57)-通过/pass (0.67)-收到/receive (0.33)-一致性/consistency (0.78)-评价/Evaluate
The word “evaluate” itself does not constitute event type information, but it becomes a word with the characteristics of the pharmaceutical industry after being combined with the collocation word “consistency”. The introduction of “consistency evaluate” in Baidu Encyclopedia is as follows:
“Drug consistency evaluation” is a drug quality requirement in the 12th Five Year Plan for national drug safety, that is, the state requires that the imitated drugs should be consistent with the quality and efficacy of the original drugs. Specifically, it is required that the impurity spectrum is consistent, the stability is consistent, and the dissolution law in vivo and in vitro is consistent.
(3) The verbs with emotional polarity are screened, the words with clear semantics are retained as event trigger words and the event recognition template is constructed according to the trigger words. For example, emotional words such as “支持/support, 通过/pass and 指导/guide” are filtered out, and words such as “犯罪/crime” and “违纪/violation of discipline” are retained.

3.3. Event Types of Chinese Stock Announcement News

We used data on Chinese stock announcements collected from the EASTMONEY website (https://www.eastmoney.com/ (accessed on 21 April 2020)) from March 2015 to December 2019. A total of 59 types of events were constructed using the proposed method. After sorting and merging, 54 types of events were finally obtained. The types of events can also be optimized by evolutionary algorithms [29,30]. Table 1 shows the “put into production” event type as an example.
Table 1. “投产/Put into production” event.
The processing flow of our model is shown in Figure 1.
Figure 1. Processing flow of the proposed method.

4. Experimental Verification

4.1. Data Description

The main problem faced by experiments on event extraction methods in a specific domain is a lack of a unified corpus and type division standards. Existing studies generally label the experimental data manually and then verify the event extraction method on the labeled data set. The purpose of this section is to verify whether the classification of event types in the stock announcement news proposed by this paper is reasonable. Therefore, we first build the evaluation dataset and randomly select 60 stock announcements for each type of event, of which 30 meet the event identification template (the actual number shall prevail if less than 30). If the event identification template is in the form of a word combination, then the remaining announcement news is extracted from the announcement news that contains event trigger words but does not meet the identification template. For example, the announcement news that contains the word “焚烧/burn” is selected from the garbage burn event. If the recognition template is in the form of non-compound words, it will be randomly selected from other announcements. Finally, each evaluation sample contains 54 × 60 = 3240 announcements.
We select five teachers from Southwest University of Political Science and Law who hold doctoral degrees or a vice senior academic title and have more than three years of practical experience in the stock market as the evaluators. A random evaluation sample is generated for each evaluator. In the evaluation sample, an example announcement is provided for each type of event. The evaluator marks the announcement news similar to the example as 1 and those not similar as 0.

4.2. Evaluation Results

In this paper, the precision p, recall R and F values are used to calculate the results of five evaluation samples, and then the average value is taken as the final experimental result. The formal definitions of p, R, and F are as follows:
p = T h e   n u m b e r   o f   a n n o u n c e m e n t s   t h a t   t h e   e v a l u a t o r s   c o n s i d e r   c o n s i s t e n t   w i t h   t h e   m e t h o d   i n   t h i s   p a p e r T h e   n u m b e r   o f   a n n o u n c e m e n t s   o f   t h i s   e v e n t   t y p e   i d e n t i f i e d   i n   t h i s   p a p e r
R = T h e   n u m b e r   o f   a n n o u n c e m e n t s   t h a t   t h e   e v a l u a t o r s   c o n s i d e r   c o n s i s t e n t   w i t h   t h e   m e t h o d   i n   t h i s   p a p e r T h e   n u m b e r   o f   a n n o u n c e m e n t s   o f   t h i s   e v e n t   t y p e m a k e d   a s   1   b y   t h e   e v a l u t o r
F = 2 P R ( P + R )
The final experimental results are shown in Table 2.
Table 2. Experimental results of event types.
From the overall results, all event types identified have an average p value of 0.927, R value of 0.969 and F value of 0.946, which shows that the type of announcements constructed in this paper is reasonable. From the individual point of view, the p value of some event types is poor, far lower than the average value. Through discussions with the evaluators, we found that the reasons are as follows:
  • The average p value of “signing” is 0.796, which is far lower than the average since one of the legal professional evaluators believes that there is a semantic difference between the word “签署” and the word “签订”, although the two meanings are very similar.
  • The average p value of the “profit” event is 0.743, which is much lower than the average since the specific information about the “profit” event is described in detail in the sample text. Announcements that do not describe the specific information of profit in detail shifted the focus of the evaluators.
  • The average p value of “impairment” is 0.752, which is much lower than the average value. The reason is that the sample text describes the event of “asset impairment”. The evaluators exclude the remaining “goodwill impairment” and “accrued (excluding asset) impairment” from the type, so the p value is low.
  • The average p value of “planning” is 0.759, which is much lower than the average since the example text contains the word “major event” in addition to the planning trigger word. The evaluators believe that “major events” play an important role in representing the planned events, so they marked the evaluation text without “major events” as different.

4.3. Comparison to Existing Results

At present, there have been few studies focusing on event extraction from stock announcements [12,19,21], and more studies are focusing on event extraction from financial news. We select some representative related studies and list them in Table 3 for comparison. We roughly divide the methods of generating the event type framework into two categories: full-manual and semi-manual. Full-manual means that the event type framework is completely determined by domain experts; semi-manual means a combination of some model or algorithm and manual identification.
Table 3. The results of related studies.
Due to a lack of a unified event type standard and framework for stock announcements, we cannot compare our work with the existing related studies with numerical indicators. Based on the fact that we have built a fine-grained event type framework, we mainly compare our work with [18,19,21].
The model proposed in [18] identifies 11 types and 41 sub-types of events from the business domain. The p value is 0.95, and the F value is 0.79. References [19,21] both use full-manual methods to determine the event types, and both focus on the stock announcement news. The event type framework in [19] includes 12 types and 30 sub-types of events. Reference [21] includes 4 types and 34 sub-types of events. The p value in [19] is 0.673, and the F1 value is 0.60. The p value in [21] is 0.967, and the F value is missing in the paper. The p value of our work is 0.927, which is lower than those of [18,21] but higher than that of [19]. The F value of our work is 0.946, higher than [18,19].
From the classification results, the fine-grained event type framework built in this paper finds some reasonable and valuable event types that have not been discussed yet. An example is the violation of company policies and violation of the law discussed in the previous section. Another interesting example is that we built an event called throughput, which is usually issued by listed companies in the airline or port sector. According to our knowledge, this event type has not been discussed in existing studies, which only list a related type called “performance change”. Technically, the throughput event is actually a sub-type of the performance change. Performance change news is usually announced on a quarterly, semi-annual and annual basis, and thus cannot reflect short-term changes. Unlike listed companies in other sectors, throughput events usually involve the company’s main business. For example, Air China’s (SH601111) passenger transport business achieved a revenue of 58.317 billion yuan in 2021, accounting for 78.24% of the operation revenue; CMB Shekou’s (SZ001872) port business accounted for 95.76% of its revenue in 2021.
Due to various limitations, the event type framework constructed in this paper cannot be directly compared with those of other studies. However, through the analysis of the results we did find some event types that have not been discussed in the existing literature, and these types are effective and reasonable. Therefore, we can say that the event type framework constructed by the method proposed in this paper enriches the existing research, and thus it has certain value and significance.

5. Filtering of Event Types

In this section, we did not choose to conduct stock return prediction in the traditional way since we think it is inappropriate to rely solely on stock announcement news. Instead, based on the unilateral trading policy of the Chinese stock market, we filtered out some event types that are not valuable to investors. Our approach is that after the announcement news is released, we enter the market and sell at the highest price in the short term. Although in real life, the possibility of selling at the highest price is very low, here we are describing the best-case scenario. We believe that if in the ideal situation the return obtained based on a certain event type is small or the probability is low, combined with the unilateral trading policy, we think such an event type is not valuable to investors.

5.1. Return Calculation Method

If the official announcement time of the event is between the opening in the morning of the day and the closing in the afternoon of the day, mark the day as t = 1. Otherwise, mark the first trading day after the event as t = 1. We consider the best return and probability of entering the market at t = 1 and selling stocks at t = 2 or t = 3. This paper selects three kinds of entry prices: opening price, closing price and the highest price in the worst case, and sells the stock at the highest price of the day at t = 2 or t = 3 to obtain the return. Although the probability of selling at the highest price is small in reality, the purpose of this paper is to provide a reference for investors according to historical data based on the probability of obtaining the best return value. If the return value or proportion is low under the best-case scenario, this indicates that making decisions based on this kind of news is risky and has no investment value. The calculation of the best return obtained at three entry prices is as follows:
D R E T O H 2 = ( H i p r T = 2 O p p r T = 1 ) / O p p r T = 1
D R E T H H 2 = ( H i p r T = 2 H i p r T = 1 ) / H i p r T = 1
D R E T C H 2 = ( H i p r T = 2 C l p r T = 1 ) / C l p r T = 1
DRETOH2 refers to the return from selling stocks at the highest price at t = 2 after entering the market at t = 1; similarly, DRETOH3 is expressed as the return of entering the market at t = 1 and selling stocks at the highest price at t = 3. DRETHH2 and DRETCH2 represent the best return when entering the market at the highest price and closing price of the day at t = 1 and when selling stocks at the highest price at t = 2, respectively.

5.2. Investment Results

According to the 54 types of announcement events constructed in this paper, the transaction data within the time span from March 2015 to December 2019 are selected. In this period, by using the above return calculation method, the results of some types of investment return are shown in Table 4.
Table 4. Investment return for some event types.
Due to space limitations, we only list the results of several event types in Table 4. Eight event types have low returns or probabilities, even under the best conditions. Among these eight types of events, the event types with the smallest benefit value are “Illegal” and “Restructuring” which only come with an average positive return of 0.8%. The remaining events in the order of return from small to large are: “Expiration” (0.9%), “order to correct” (1.0%), “Resignation” (1.1%), “Recall” (1.1%), “Freeze” (1.3%) and “Planning” (2.7%).
The event type with the smallest probability value is “Freeze” (68.8%). The remaining events in the order of probability from small to large are: “Planning” (69%), “Illegal” (70.5%), “Recall” (75%), “Resignation” (75.9%), “Expiration” (78%), “order to correct” (78.9%), and “Restructuring” (79.7%).

6. Conclusions

Stock announcements contains much information about all aspects of a company, which are important for investors and stock forecasting. It is difficult to determine the event types from stock announcements. As there is no unified classification standard, existing studies have constructed various event type frameworks based on domain experts’ experience, Clustering, ontology and other methods. Some studies have resulted in a fine-grained classification framework. However, we believe that there is still room for improvement on the basis of the existing research (e.g., the abovementioned violations of laws and violations of company policy events). Based on different punishments and expectations for investors, we think that it is more reasonable to classify events into different types rather than into one type in the manner of the extant literature.
In order to obtain more detailed event types of stock announcement news, we proposed a two-step method. First, all verbs extracted from the announcement news are used as candidate event triggers. Due to the common expressions in Chinese announcement news, if there is an event type, it usually has a conventional expression form. On the contrary, if a candidate event trigger word (verb) does not suggest an event type, the expression of the news containing the verb is chaotic. Therefore, we combine co-occurrence words with the candidate event trigger words and express them in an ordered sequence of words. Then, we use three proposed criteria to determine the final event types.
Based on real data on the Chinese stock market, we finally constructed 54 event types from the announcement news. The verification results of the constructed event types (p = 0.927, f = 0.946) show that it is reasonable and consistent with people’s cognition. Further, we compare our work with other similar studies (summarized in Table 3). First of all, most of the existing studies focus on the event types in the financial news, and only regard the stock announcement news as part of this greater whole. Therefore, the event type frameworks built are usually rough. Then, we compared our results with those of [18,19,21], which also constructed fine-grained event types from stock announcement news. The p value of our work is lower than those of [18] (0.95) and [21] (0.967) but higher than that of [19] (0.673). The F value of our work is higher than those of [18] (0.79) and [19] (0.6). From the results of the constructed event types, our method has found some reasonable and valuable event types that have not been discussed yet. For example, an event type named “throughput” is constructed in this paper. To the best of our knowledge, this is the first of its kind, and only one similar event type called “performance change” can be found in the existing research. In the Chinese stock market, companies usually release quarterly, semi-annual or annual performance change news, so this method cannot reflect short-term changes. “Throughput” events are released by airline or port sector stocks. Unlike in other stock sectors, a “throughput” event is usually the main business. For example, CMB Shekou’s (SZ001872) port business accounted for 95.76% of its revenue in 2021. “Throughput” events can reflect the short-term performance changes of these companies and are valuable for investors.
In conclusion, our research on event extraction from stock announcements has enriched the existing literature, so it is of value and significance.
After constructing a fine-grained announcement news event type framework, we did not choose to conduct stock prediction work in a traditional way since we believe that it is inappropriate to consider announcements without other types of news, such as industry news and macroeconomic news (as has been proven in the literature). Instead, based on the unilateral trading policy of the Chinese stock market, we screen out some event types that are not valuable to investors according to their performance under the best-case scenario. We did not carry out a precise calculation here but consider the event performance under special circumstances.

Author Contributions

Formal analysis, F.M.; investigation, P.W.; methodology, F.M., Y.X. and W.L.; software, F.M. and H.J.; supervision, F.M.; writing—original draft, F.M., P.W., Y.X., H.J. and W.L.; writing—review and editing, F.M., Y.X., P.W., H.J. and W.L. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Data Availability Statement

The data presented in this study are available on request from the corresponding author.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Yi, Z. Research on Deep Learning Based Event-Driven Stock Prediction. Ph.D. Thesis, Harbin Institute of Technology, Harbin, China, 2019. [Google Scholar]
  2. Yang, H.; Chen, Y.; Liu, K.; Xiao, Y.; Zhao, J. DCFEE: A document-level Chinese financial event extraction system based on automatically labeled training data. In Proceedings of the ACL 2018, System Demonstrations, Melbourne, Australia, 15–20 July 2018; pp. 50–55. [Google Scholar]
  3. Linghao, W.U. Empirical Analysis of the Impact of Stock Events on Abnormal Volatility of Stock Prices. Master’s Thesis, Huazhong University of Science and Technology, Wuhan, China, 2019. [Google Scholar]
  4. Balali, A.; Asadpour, M.; Jafari, S.H. COfEE: A Comprehensive Ontology for Event Extraction from text. arXiv 2021, arXiv:2107.10326. [Google Scholar] [CrossRef]
  5. Guda, V.; Sanampudi, S.K. Rules based event extraction from natural language text. In Proceedings of the 2016 IEEE International Conference on Recent Trends in Electronics, Information & Communication Technology (RTEICT), Bangalore, India, 20–21 May 2016; pp. 9–13. [Google Scholar]
  6. Ritter, A.; Etzioni, O.; Clark, S. Open domain event extraction from twitter. In Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Beijing, China, 12–16 August 2012; pp. 1104–1112. [Google Scholar]
  7. Fung GP, C.; Yu, J.X.; Lam, W. Stock prediction: Integrating text mining approach using real-time news. In Proceedings of the 2003 IEEE International Conference on Computational Intelligence for Financial Engineering, Hong Kong, China, 20–23 March 2003; pp. 395–402. [Google Scholar]
  8. Wong, K.F.; Xia, Y.; Xu, R.; Wu, M.; Li, W. Pattern-based opinion mining for stock market trend prediction. Int. J. Comput. Processing Lang. 2008, 21, 347–361. [Google Scholar] [CrossRef]
  9. Du, M.; Pivovarova, L.; Yangarber, R. PULS: Natural language processing for business intelligence. In Proceedings of the 2016 Workshop on Human Language Technology, New York, NY, USA, 9–15 July 2016; pp. 1–8. [Google Scholar]
  10. Chen, C.; Ng, V. Joint modeling for Chinese event extraction with rich linguistic features. In Proceedings of the COLING 2012, Mumbai, India, 8–15 December 2012; pp. 529–544. [Google Scholar]
  11. Liu, L. Heterogeneous Information Based Financial Event Detection. Ph.D. Thesis, Harbin Institute of Technology, Harbin, China, 2010. [Google Scholar]
  12. Feldman, R.; Rosenfeld, B.; Bar-Haim, R.; Fresko, M. The stock sonar—sentiment analysis of stocks based on a hybrid approach. In Proceedings of the AAAI Conference on Artificial Intelligence, San Francisco, CA, USA, 7–11 August 2011; pp. 1642–1647. [Google Scholar]
  13. He, Y. Research on Ontology-Based Case Base Building and Reasoning for Theme Events in the Stock Markets. Master’s Thesis, Hefei University of Technology, Hefei, China, 2017. [Google Scholar]
  14. Wang, Y. Research on Financial Events Detection by Incorporating Text and Time-Series Data. Master’s Thesis, Harbin Institute of Technology, Harbin, China, 2015. [Google Scholar]
  15. Chen, H. Research and Application of Event Extraction Technology in Financial Field. Ph.D. Thesis, Beijing Institute of Technology, Beijing, China, 2017. [Google Scholar]
  16. Han, S.; Hao, X.; Huang, H. An event-extraction approach for business analysis from online Chinese news. Electron. Commer. Res. Appl. 2018, 28, 244–260. [Google Scholar] [CrossRef]
  17. Boudoukh, J.; Feldman, R.; Kogan, S.; Richardson, M. Information, trading, and volatility: Evidence from firm-specific news. Rev. Financ. Stud. 2019, 32, 992–1033. [Google Scholar] [CrossRef]
  18. Arendarenko, E.; Kakkonen, T. Ontology-based information and event extraction for business intelligence. In Proceedings of the 2012 International Conference on Artificial Intelligence: Methodology, Systems, and Applications, Varna, Bulgaria, 13–15 September 2012; pp. 89–102. [Google Scholar]
  19. Zhang, W. Research on key technologies of event-driven stock market prediction. Ph.D. Thesis, Harbin Institute of Technology, Harbin, China, 2018. [Google Scholar]
  20. Turchi, M.; Zavarella, V.; Tanev, H. Pattern learning for event extraction using monolingual statistical machine translation. In Proceedings of the International Conference Recent Advances in Natural Language Processing 2011, Hissar, Bulgaria, 10–16 September 2011; pp. 371–377. [Google Scholar]
  21. Zhou, X. Research on Financial Event Extraction Technology Based on Deep Learning. Ph.D. Thesis, University of Electronic Science and Technology of China, Chengdu, China, 2020. [Google Scholar]
  22. Wang, Y.; Luo, S.; Hu, Z.; Han, M. A Study of event elements extraction on Chinese bond news texts. In Proceedings of the 2018 IEEE International Conference on Progress in Informatics and Computing (PIC), Suzhou, China, 14–16 December 2018; pp. 420–424. [Google Scholar]
  23. Ding, P.; Zhuoqian, L.; Yuan, D. Textual information extraction model of financial reports. In Proceedings of the 2019 7th International Conference on Information Technology: IoT and Smart City, Shanghai, China, 20–23 December 2019; pp. 404–408. [Google Scholar]
  24. Wang, A. Study on the Impact of Change on Interest Rate on Real Estate Listed Companies Stock Price. Master’s thesis, Southwestern University of Finance and Economics, Chengdu, China, 2012. [Google Scholar]
  25. Jinmei Zhao Yu Shen Fengyun, W.U. Natural disasters, man-made disasters and stock prices: A study based on earthquakes and mass riots. J. Manag. Sci. China 2014, 17, 19–33. [Google Scholar]
  26. Yi, Z.; Lu, H.; Pan, B. The impact of Sino US trade war on China’s stock market—An analysis based on event study method. J. Manag. 2020, 33, 18–28. [Google Scholar]
  27. Li, T.; Qian, Z.; Deng, W.; Zhang, D.; Lu, H.; Wang, S. Forecasting crude oil prices based on variational mode decomposition and random sparse Bayesian learning. Appl. Soft Comput. 2021, 113, 108032. [Google Scholar] [CrossRef]
  28. Brandt, M.; Gao, L. Macro fundamentals or geopolitical events? A textual analysis of news events for crude oil. J. Empir. Financ. 2019, 51, 64–94. [Google Scholar] [CrossRef]
  29. Li, T.; Shi, J.; Deng, W.; Hu, Z. Pyramid particle swarm optimization with novel strategies of competition and cooperation. Appl. Soft Comput. 2022, 121, 108731. [Google Scholar] [CrossRef]
  30. Deng, W.; Shang, S.; Cai, X.; Zhao, H.; Zhou, Y.; Chen, H.; Deng, W. Quantum differential evolution with cooperative coevolution framework and hybrid mutation strategy for large scale optimization. Knowl.-Based Syst. 2021, 224, 107080. [Google Scholar] [CrossRef]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.