{"id":8608,"date":"2022-10-21T15:26:54","date_gmt":"2022-10-21T14:26:54","guid":{"rendered":"https:\/\/www.simtrade.fr\/blog_simtrade\/?p=8608"},"modified":"2022-10-21T15:26:54","modified_gmt":"2022-10-21T14:26:54","slug":"time-series-forecasting-applications-artificial-neural-networks","status":"publish","type":"post","link":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/","title":{"rendered":"Time Series Forecasting: Applications and Artificial Neural Networks"},"content":{"rendered":"<h1>Time Series Forecasting: Applications and Artificial Neural Networks<\/h1>\n<p><a href=\"https:\/\/www.linkedin.com\/in\/micha-fischer-93a345181\/\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" style=\"padding: 5px\" title=\"\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg\" alt=\"Micha FISHER\" width=\"133\" align=\"right\" \/><\/a><\/p>\n<p>In this article, <a href=\"https:\/\/www.linkedin.com\/in\/micha-fischer-93a345181\/\" target=\"_blank\" rel=\"noopener\">Micha FISHER<\/a> (University of Mannheim, MSc. Management, 2021-2023) discusses on the applications of time series forecasting and the use of artificial neural networks for this purpose.<\/p>\n<p>This article will offer a short introduction to the different applications of time-series forecasting and forecasting in general, will then describe the theoretical aspects of simple artificial neural networks and finish with a practical example on how to implement a forecast based on these networks.<\/p>\n<h2> Overview<\/h2>\n<p>The American economist and diplomat John Kenneth Galbraith once said: <i>&#8220;The function of economic forecasting is to make astrology look respectable&#8221;<\/i>. Certainly, the failure of mainstream economics to predict several financial crises is testimony to this quote.<\/p>\n<p>However, on a smaller scale, forecast can be very useful in different applications and this article describes several use cases for the forecasting of time series data and a special method to perform such analyses.<\/p>\n<h2> Different Applications of Time Series Forecasting<\/h2>\n<p>Different methods of forecasting are used in various settings. Central banks and economic research institutes use complex forecasting methods with a vast amount of input factors to forecast GDP growth and other macroeconomic figures. Technical analysts forecast the evolution of asset prices based on historical patterns to make trading gains. Businesses forecast the demand for their products by including seasonal trends (e.g., utility providers) and economic developments.<\/p>\n<p>This article will deal with the latter two applications of forecasting that is focused on the analysis of historical patterns and seasonality. Using different input factors to come up with a prediction, like for example a multivariate regression analysis does, can be a successful way of making prediction. However, it also inherently includes the problem of determining those input factors as well in the first place.<\/p>\n<p>The practical methods described in this article circumvent this problem by exclusively using historical time series data (e.g., past sales per month, historical electricity demand per hour of the day, etc.).  This makes the use of those methods easy and both methods can be used to predict helpful input parameters of DCF models for example.<\/p>\n<h2> Artificial neural networks<\/h2>\n<p>Artificial Intelligence (AI) is a frequently used buzzword in the advertising of products and services. However, the concept of artificial intelligence is going back to the 1940s, when mathematicians McCulloch and Pitts first presented a mathematical model that was based on the neural activity of the human brain.<\/p>\n<p>Before delving into the practical aspects of an exemplary simple artificial neural network, it is important to understand the terminology. These networks are one \u2013 although not the only one &#8211; of the key aspects of \u201cMachine Learning\u201d. Machine Learning itself is in turn a subtopic of Artificial Intelligence, which itself employs different tools besides Machine Learning.<\/p>\n<p style=\"text-align:center\">Figure 1. Neural network.<br \/>\n<img decoding=\"async\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_Neural_network.png\" alt=\"Neural network\" width=\"400\"><\/a><br \/>\nSource: internet.<\/p>\n<p>To give a simple example of an artificial neural network we will focus on a so-called feedforward neural network. Those networks deliver and transform information from the left side to the right side of the schematic picture below without using any loops. This process is called Forward Propagation. Historic time series data is simply put into the first layer of neurons. The actual transformation of the data is done by the individual neurons of the network. Some neurons simply put different weights on the input parameter. Neurons of the hidden layers then use several non-linear functions to manipulate the data given to them by the initial layer. Eventually the manipulated data is consolidated in the output layer.<\/p>\n<p>This sounds all very random and indeed it is. At the beginning, a neural network is totally unaware of its actual best solution and the first computations are done via random weights and functions. But after a first result is compiled, the algorithm compares the result with the actual true value. Of course, this is not possible for values that lye in the future. Therefore, the algorithm divides the historic time series into a section used for training (data that is put into the network) and into a section for testing (data that can be compared to the transformed training data). The deviation between compiled value and true value is then minimized via the process of so-called backpropagation. Weights and functions are changed iteratively until an optimal solution is reached and the network it sufficiently trained. This optimal solution then servers to compute the \u201creal\u201d future values.<\/p>\n<p>This description is a very theoretical presentation of such an artificial neural network and the question arises, how to handle such complex algorithms. Therefore, the last part of this article focuses on the implementation of such a forecasting tool. One very useful tool for statistical forecasting via artificial neural networks is the programming language R and the well-known development environment RStudio. RStudio enables the user to directly download user-created packages, to import historical data from Excel sheets and to export graphical presentations of forecasts.<\/p>\n<p>A very easy first approach is the <i>nnetar<\/i> function of R. This function can be simply used to analyze existing time series data and it will automatically define an artificial neural network (number of layers, neurons etc.) and train it. Eventually it also allows to use the trained model to forecast future data points.<\/p>\n<p>The chart below is a result of this function used on simulated sales data between 2015 and 2021 to forecast the sales of 2022. In this case the nnetar function used one layer of hidden neurons and correctly recognized a 12-month seasonality in the data.<\/p>\n<p style=\"text-align:center\">Figure 2. Simulated sales data.<br \/>\n<img decoding=\"async\" src=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_Simulated_sales_data.png\" alt=\"Simulated sales data \" width=\"600\"><\/a><br \/>\nSource: internet.<\/p>\n<h2> Why should I be interested in this post?<\/h2>\n<p>Artificial neural networks are a powerful tool to forecast time-series data. By using development environments like RStudio, even users without a sophisticated background in data science can make apply those networks to forecast data they might need for other purposes like DCF models, logistical planning, or internal financial modelling.<\/p>\n<h2> Useful resources<\/h2>\n<p><a href=\"https:\/\/www.rstudio.com\/\" target=\"_blank\" rel=\"noopener\">RStudio Official Website<\/a><\/p>\n<p>Rob Hyndman and George Athanasopoulos  <a href=\"https:\/\/www.rstudio.com\/\" target=\"_blank\" rel=\"noopener\">Forecasting: Principles and Practice<\/a><\/p>\n<h2>Related posts on the SimTrade blog<\/h2>\n<p>&nbsp;&nbsp;&nbsp;&#9654; <a href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/category\/financial-techniques\/\" target=\"_parent\" rel=\"noopener\">All posts about financial techniques<\/a><\/p>\n<p>&nbsp;&nbsp;&nbsp;&#9654; Jayati WALIA <a href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/logistic-regression\/\" target=\"_parent\" rel=\"noopener\">Logistic regression<\/a><\/p>\n<p>&nbsp;&nbsp;&nbsp;&#9654; Daksh GARG <a href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/use-ai-investment-banking\/\" target=\"_parent\" rel=\"noopener\">Use of AI in investment banking<\/a><\/p>\n<h2>About the author<\/h2>\n<p>The article was written in October 2022 by <a href=\"https:\/\/www.linkedin.com\/in\/micha-fischer-93a345181\/\" target=\"_blank\" rel=\"noopener\">Micha FISHER<\/a> (University of Mannheim, MSc. Management, 2021-2023).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Time Series Forecasting: Applications and Artificial Neural Networks In this article, Micha FISHER (University of Mannheim, MSc. Management, 2021-2023) discusses on the applications of time series forecasting and the use of artificial neural networks for this purpose. This article will offer a short introduction to the different applications of time-series forecasting and forecasting in general, &#8230; <a title=\"Time Series Forecasting: Applications and Artificial Neural Networks\" class=\"read-more\" href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\" aria-label=\"Read more about Time Series Forecasting: Applications and Artificial Neural Networks\">Read more<\/a><\/p>\n","protected":false},"author":76,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[5,10],"tags":[418,589],"class_list":["post-8608","post","type-post","status-publish","format-standard","hentry","category-contributors","category-financial-techniques","tag-neural-networks","tag-time-series-forecasting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.3 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Time Series Forecasting: Applications and Artificial Neural Networks - SimTrade blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Time Series Forecasting: Applications and Artificial Neural Networks\" \/>\n<meta property=\"og:description\" content=\"Time Series Forecasting: Applications and Artificial Neural Networks In this article, Micha FISHER (University of Mannheim, MSc. Management, 2021-2023) discusses on the applications of time series forecasting and the use of artificial neural networks for this purpose. This article will offer a short introduction to the different applications of time-series forecasting and forecasting in general, ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\" \/>\n<meta property=\"og:site_name\" content=\"SimTrade blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/fr-fr.facebook.com\/simtrade.fr\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-21T14:26:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg\" \/>\n<meta name=\"author\" content=\"Micha FISCHER\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@simtrade\" \/>\n<meta name=\"twitter:site\" content=\"@simtrade\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Micha FISCHER\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\"},\"author\":{\"name\":\"Micha FISCHER\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/15836c9a4c876086c013637d04fb739e\"},\"headline\":\"Time Series Forecasting: Applications and Artificial Neural Networks\",\"datePublished\":\"2022-10-21T14:26:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\"},\"wordCount\":1042,\"publisher\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg\",\"keywords\":[\"Neural networks\",\"Time series forecasting\"],\"articleSection\":[\"Contributors\",\"Financial techniques\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\",\"name\":\"Time Series Forecasting: Applications and Artificial Neural Networks - SimTrade blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg\",\"datePublished\":\"2022-10-21T14:26:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg\",\"contentUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Time Series Forecasting: Applications and Artificial Neural Networks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#website\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/\",\"name\":\"SimTrade blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization\",\"name\":\"SimTrade\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg\",\"contentUrl\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg\",\"width\":940,\"height\":126,\"caption\":\"SimTrade\"},\"image\":{\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/fr-fr.facebook.com\/simtrade.fr\/\",\"https:\/\/x.com\/simtrade\",\"https:\/\/www.linkedin.com\/company\/sim-trade\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/15836c9a4c876086c013637d04fb739e\",\"name\":\"Micha FISCHER\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/b9e8da0562638f382f04fb6e12205cdd3cf23c490e616731c357a3f43d55ce82?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b9e8da0562638f382f04fb6e12205cdd3cf23c490e616731c357a3f43d55ce82?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b9e8da0562638f382f04fb6e12205cdd3cf23c490e616731c357a3f43d55ce82?s=96&d=mm&r=g\",\"caption\":\"Micha FISCHER\"},\"url\":\"https:\/\/www.simtrade.fr\/blog_simtrade\/author\/mfischer\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Time Series Forecasting: Applications and Artificial Neural Networks - SimTrade blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/","og_locale":"en_US","og_type":"article","og_title":"Time Series Forecasting: Applications and Artificial Neural Networks","og_description":"Time Series Forecasting: Applications and Artificial Neural Networks In this article, Micha FISHER (University of Mannheim, MSc. Management, 2021-2023) discusses on the applications of time series forecasting and the use of artificial neural networks for this purpose. This article will offer a short introduction to the different applications of time-series forecasting and forecasting in general, ... Read more","og_url":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/","og_site_name":"SimTrade blog","article_publisher":"https:\/\/fr-fr.facebook.com\/simtrade.fr\/","article_published_time":"2022-10-21T14:26:54+00:00","og_image":[{"url":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg","type":"","width":"","height":""}],"author":"Micha FISCHER","twitter_card":"summary_large_image","twitter_creator":"@simtrade","twitter_site":"@simtrade","twitter_misc":{"Written by":"Micha FISCHER","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#article","isPartOf":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/"},"author":{"name":"Micha FISCHER","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/15836c9a4c876086c013637d04fb739e"},"headline":"Time Series Forecasting: Applications and Artificial Neural Networks","datePublished":"2022-10-21T14:26:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/"},"wordCount":1042,"publisher":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization"},"image":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg","keywords":["Neural networks","Time series forecasting"],"articleSection":["Contributors","Financial techniques"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/","name":"Time Series Forecasting: Applications and Artificial Neural Networks - SimTrade blog","isPartOf":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage"},"image":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg","datePublished":"2022-10-21T14:26:54+00:00","breadcrumb":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#primaryimage","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg","contentUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2022\/10\/img_SimTrade_Photo1_Micha_Fisher.jpg","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/time-series-forecasting-applications-artificial-neural-networks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.simtrade.fr\/blog_simtrade\/"},{"@type":"ListItem","position":2,"name":"Time Series Forecasting: Applications and Artificial Neural Networks"}]},{"@type":"WebSite","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#website","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/","name":"SimTrade blog","description":"","publisher":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.simtrade.fr\/blog_simtrade\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#organization","name":"SimTrade","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/","url":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg","contentUrl":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-content\/uploads\/2014\/01\/cropped-cropped-Banner_blog_SimTrade2.jpg","width":940,"height":126,"caption":"SimTrade"},"image":{"@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/fr-fr.facebook.com\/simtrade.fr\/","https:\/\/x.com\/simtrade","https:\/\/www.linkedin.com\/company\/sim-trade"]},{"@type":"Person","@id":"https:\/\/www.simtrade.fr\/blog_simtrade\/#\/schema\/person\/15836c9a4c876086c013637d04fb739e","name":"Micha FISCHER","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b9e8da0562638f382f04fb6e12205cdd3cf23c490e616731c357a3f43d55ce82?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b9e8da0562638f382f04fb6e12205cdd3cf23c490e616731c357a3f43d55ce82?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b9e8da0562638f382f04fb6e12205cdd3cf23c490e616731c357a3f43d55ce82?s=96&d=mm&r=g","caption":"Micha FISCHER"},"url":"https:\/\/www.simtrade.fr\/blog_simtrade\/author\/mfischer\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/posts\/8608","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/users\/76"}],"replies":[{"embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/comments?post=8608"}],"version-history":[{"count":0,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/posts\/8608\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/media?parent=8608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/categories?post=8608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.simtrade.fr\/blog_simtrade\/wp-json\/wp\/v2\/tags?post=8608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}