{"id":35827,"date":"2024-11-01T09:42:58","date_gmt":"2024-11-01T09:42:58","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35827"},"modified":"2024-11-01T11:10:42","modified_gmt":"2024-11-01T11:10:42","slug":"machine-learning-and-deep-learning-algorithm-trading-latent-topic-learning-purpose-and-approach","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35827\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach"},"content":{"rendered":"<p><body><\/p>\n<p>\n    Automation and algorithmic trading in financial markets have gained significant attention in recent years, thanks to advancements in data analysis, machine learning, and deep learning. This article will explore the fundamental concepts of algorithmic trading using machine learning and deep learning, the necessity for latent topic modeling, and its approaches in detail.\n<\/p>\n<h2>1. Understanding Algorithmic Trading<\/h2>\n<p>\n    Algorithmic trading refers to the automated buying and selling of stocks or assets based on pre-defined rules or models. This trading approach can lead to better decisions based on data and statistics while eliminating human emotions. The crux of algorithmic trading is to collect data, analyze it to understand market trends, and make immediate trading decisions based on that understanding.\n<\/p>\n<h3>1.1. Importance of Data<\/h3>\n<p>\n    In algorithmic trading, data is the foundation of everything. Millions of data points enhance insights necessary for understanding market trends. Machine learning models primarily process this large-scale data to discover intrinsic patterns. Data types include price data, trading volume, news articles, social media mentions, etc.\n<\/p>\n<h3>1.2. Role of Machine Learning<\/h3>\n<p>\n    Machine learning is a branch of artificial intelligence used to learn data and build predictive models. This allows us to predict future price movements or trends based on past data. Various algorithms exist in machine learning, and the performance of each algorithm varies depending on the characteristics of the data and the objectives.\n<\/p>\n<h2>2. Evolution of Deep Learning<\/h2>\n<p>\n    Deep learning is a type of machine learning that utilizes artificial neural networks to process data. It shows strengths particularly in image or speech recognition and natural language processing, and these traits can be applied to financial data analysis as well. By utilizing deep learning, it is possible to model complex non-linear relationships, leading to higher predictive performance.\n<\/p>\n<h3>2.1. Structure of Neural Networks<\/h3>\n<p>\n    Deep learning models are built as neural networks consisting of multiple layers. They typically consist of an input layer, hidden layer(s), and an output layer. Each layer modifies the information it receives from the previous layer, generating meaningful results in the process. In this process, algorithms like Backpropagation are used to update the weights of the neural network.\n<\/p>\n<h3>2.2. Trading Strategies Using Deep Learning<\/h3>\n<p>\n    Algorithmic trading strategies that utilize deep learning generally leverage the strength of pattern recognition in high-dimensional feature spaces. For instance, Long Short-Term Memory (LSTM) networks are suitable for learning long-term dependencies in time-ordered data, making them useful for stock price prediction. This structure takes historical stock price data as input to predict future price changes.\n<\/p>\n<h2>3. Overview of Latent Topic Modeling<\/h2>\n<p>\n    Latent Topic Modeling is a technique that analyzes large sets of text data to uncover hidden themes within them. This technique is useful for identifying key topics in unstructured data such as news articles and social media data. Through this, one can predict market reactions and understand the psychological factors needed for making investment decisions.\n<\/p>\n<h3>3.1. Techniques for Latent Topic Modeling<\/h3>\n<p>\n    There are various techniques for latent topic modeling, but the most widely used method is Latent Dirichlet Allocation (LDA). LDA views each document as a mixture of multiple topics, with each topic represented as a distribution of words. This allows for the analysis of investors&#8217; sentiments regarding a company, and combining this information with existing price data can build more refined predictive models.\n<\/p>\n<h3>3.2. Data Collection and Preprocessing<\/h3>\n<p>\n    To conduct latent topic modeling, text data must first be collected. This can be achieved using news APIs, Twitter APIs, or web scraping techniques. The collected data undergoes preprocessing, typically involving the removal of unnecessary words, stopword processing, tokenization, and stemming.\n<\/p>\n<h2>4. Application of Latent Topic Modeling<\/h2>\n<p>\n    There are several ways to apply latent topic modeling to algorithmic trading. One major approach is to combine price data and text data to create new features. For instance, including the probability distributions of each topic alongside price data as inputs to the final model allows deep learning models to utilize richer information.\n<\/p>\n<h3>4.1. Improvement of Predictive Power in Algorithmic Trading<\/h3>\n<p>\n    Insights gained from latent topic modeling can be used to enhance predictive models, thereby improving the performance of algorithmic trading strategies. This can help anticipate potential market volatility in advance and determine the timing for selling. For example, if a topic with a lot of positive news articles is discovered, it can be interpreted as a buy signal for that stock.\n<\/p>\n<h3>4.2. Evaluation of Combined Model Performance<\/h3>\n<p>\n    To evaluate the performance of the combined model, methodologies like cross-validation can be used to check the model&#8217;s generalization capability. Additionally, by comparing the model&#8217;s predictive results with actual returns, one can analyze performance metrics (e.g., Sharpe ratio) to assess the practical investment value.\n<\/p>\n<h2>5. Practical Implementation of Algorithmic Trading Using Machine Learning and Deep Learning<\/h2>\n<p>\n    This section will introduce the actual implementation process of algorithmic trading using machine learning and deep learning. Each step will be conducted using the Python programming language and relevant libraries. This will provide readers with a guide to transform theoretical knowledge into practical skills.\n<\/p>\n<h3>5.1. Environment Setup<\/h3>\n<p>\n    To implement algorithmic trading, an environment is needed to build models and process the collected data. Commonly used libraries include <code>pandas<\/code>, <code>numpy<\/code>, <code>scikit-learn<\/code>, <code>tensorflow<\/code>, and <code>keras<\/code>, helping with data processing and model design.\n<\/p>\n<h3>5.2. Data Collection<\/h3>\n<p>\n    The following code can be used to collect stock price data. Here, an example using the Yahoo Finance API is shown:\n<\/p>\n<pre><code>import pandas as pd\nimport yfinance as yf\n\n# Collecting data for a specific stock\nticker = \"AAPL\"\ndata = yf.download(ticker, start=\"2020-01-01\", end=\"2023-01-01\")\ndata.reset_index(inplace=True)\nprint(data)\n<\/code><\/pre>\n<h3>5.3. Data Preprocessing<\/h3>\n<p>\n    The collected data typically undergoes preprocessing, addressing missing values and outliers using methods such as:\n<\/p>\n<pre><code># Handling missing values\ndata.fillna(method='ffill', inplace=True)\n\n# Creating necessary features\ndata['Returns'] = data['Close'].pct_change()\ndata.dropna(inplace=True)\n<\/code><\/pre>\n<h3>5.4. Building Machine Learning Models<\/h3>\n<p>\n    The <code>scikit-learn<\/code> library can be utilized to build machine learning models. For example, a random forest model can be employed:\n<\/p>\n<pre><code>from sklearn.model_selection import train_test_split\nfrom sklearn.ensemble import RandomForestClassifier\n\n# Setting independent and dependent variables\nX = data[['Open', 'High', 'Low', 'Volume']]\ny = (data['Returns'] > 0).astype(int)\n\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Training the random forest model\nmodel = RandomForestClassifier()\nmodel.fit(X_train, y_train)\n<\/code><\/pre>\n<h3>5.5. Building Deep Learning Models<\/h3>\n<p>\n    A deep learning model can be constructed using <code>tensorflow<\/code> and <code>keras<\/code>. Below is an example of building a basic LSTM model.\n<\/p>\n<pre><code>from keras.models import Sequential\nfrom keras.layers import LSTM, Dense, Dropout\n\n# Reshaping the data\nX = X.values.reshape((X.shape[0], X.shape[1], 1))\n\n# Building the LSTM model\nmodel = Sequential()\nmodel.add(LSTM(50, return_sequences=True, input_shape=(X.shape[1], 1)))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(50, return_sequences=False))\nmodel.add(Dropout(0.2))\nmodel.add(Dense(1, activation='sigmoid'))\n\n# Compiling the model\nmodel.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])\nmodel.fit(X, y, epochs=50, batch_size=32)\n<\/code><\/pre>\n<h3>5.6. Model Evaluation and Testing<\/h3>\n<p>\n    Finally, the model&#8217;s performance can be evaluated, and predictions can be made on actual data. It is crucial to assess the model&#8217;s generalization capability through its performance on validation datasets:\n<\/p>\n<pre><code>y_pred = model.predict(X_test)\naccuracy = (y_pred.round() == y_test).mean()\nprint(f'Accuracy: {accuracy * 100:.2f}%')\n<\/code><\/pre>\n<h2>6. Conclusion<\/h2>\n<p>\n    Machine learning and deep learning can serve as powerful tools for algorithmic trading, maximizing the value of unstructured data through latent topic modeling. This article introduced the necessity and methodology of such approaches, hoping to provide readers with a deep understanding of algorithmic trading. These technologies are believed to enhance the precision of data analysis and prediction and ultimately contribute to improving investment performance.\n<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Automation and algorithmic trading in financial markets have gained significant attention in recent years, thanks to advancements in data analysis, machine learning, and deep learning. This article will explore the fundamental concepts of algorithmic trading using machine learning and deep learning, the necessity for latent topic modeling, and its approaches in detail. 1. Understanding Algorithmic &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35827\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-35827","post","type-post","status-publish","format-standard","hentry","category-deep-learning-automated-trading"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/35827\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Automation and algorithmic trading in financial markets have gained significant attention in recent years, thanks to advancements in data analysis, machine learning, and deep learning. This article will explore the fundamental concepts of algorithmic trading using machine learning and deep learning, the necessity for latent topic modeling, and its approaches in detail. 1. Understanding Algorithmic &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35827\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:42:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:10:42+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35827\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35827\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach\",\"datePublished\":\"2024-11-01T09:42:58+00:00\",\"dateModified\":\"2024-11-01T11:10:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35827\/\"},\"wordCount\":1041,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35827\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35827\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:42:58+00:00\",\"dateModified\":\"2024-11-01T11:10:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35827\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35827\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35827\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/35827\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Automation and algorithmic trading in financial markets have gained significant attention in recent years, thanks to advancements in data analysis, machine learning, and deep learning. This article will explore the fundamental concepts of algorithmic trading using machine learning and deep learning, the necessity for latent topic modeling, and its approaches in detail. 1. Understanding Algorithmic &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach\"","og_url":"https:\/\/atmokpo.com\/w\/35827\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:42:58+00:00","article_modified_time":"2024-11-01T11:10:42+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35827\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35827\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach","datePublished":"2024-11-01T09:42:58+00:00","dateModified":"2024-11-01T11:10:42+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35827\/"},"wordCount":1041,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35827\/","url":"https:\/\/atmokpo.com\/w\/35827\/","name":"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:42:58+00:00","dateModified":"2024-11-01T11:10:42+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35827\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35827\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35827\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Machine Learning and Deep Learning Algorithm Trading, Latent Topic Learning Purpose and Approach"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35827","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=35827"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35827\/revisions"}],"predecessor-version":[{"id":35828,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35827\/revisions\/35828"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35827"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35827"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35827"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}