{"id":35557,"date":"2024-11-01T09:40:10","date_gmt":"2024-11-01T09:40:10","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35557"},"modified":"2024-11-01T11:12:15","modified_gmt":"2024-11-01T11:12:15","slug":"machine-learning-and-deep-learning-algorithm-trading-how-to-train-models","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35557\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, How to Train Models"},"content":{"rendered":"<p><body><\/p>\n<p>In the modern financial market, algorithmic trading is a rapidly growing field that uses data analysis and machine learning technologies to assist in making effective trading decisions. This course will closely examine how to train trading models using machine learning and deep learning.<\/p>\n<h2>1. Overview of Algorithmic Trading<\/h2>\n<p>Algorithmic trading refers to the method of executing trades automatically using trading algorithms. These algorithms operate based on predefined rules and can be applied to various financial assets, including stocks, foreign exchange, and futures. One of the main advantages of algorithmic trading is that it reduces uncertainty and enables fast and efficient trading.<\/p>\n<h3>1.1 Key Elements of Algorithmic Trading<\/h3>\n<ul>\n<li>Strategy: The rules and criteria used for trading<\/li>\n<li>Data: Market data, price data, trading volume, etc.<\/li>\n<li>Model: Mathematical algorithms for predictions and judgments based on the strategy<\/li>\n<li>Execution: The system that automatically executes trades as directed by the algorithm<\/li>\n<\/ul>\n<h2>2. Basics of Machine Learning<\/h2>\n<p>Machine learning is a technology that enables computers to learn patterns from data and make predictions or decisions based on what they have learned. Machine learning is broadly classified into three categories: supervised learning, unsupervised learning, and reinforcement learning.<\/p>\n<h3>2.1 Supervised Learning<\/h3>\n<p>Supervised learning is a method of training a model using input data along with corresponding output data (answers). This approach is primarily used for prediction problems. For example, a model can be developed to predict whether a stock&#8217;s price will rise or fall.<\/p>\n<h3>2.2 Unsupervised Learning<\/h3>\n<p>Unsupervised learning is a method where the model learns patterns from input data without any output data. Clustering algorithms are representative of this approach. It can be utilized to cluster stock data to find stocks with similar patterns.<\/p>\n<h3>2.3 Reinforcement Learning<\/h3>\n<p>Reinforcement learning is a method where an agent learns the optimal actions to maximize rewards through interactions with the environment. By using reinforcement learning in a trading system, it is possible to find optimal trading strategies for various market conditions.<\/p>\n<h2>3. Basics of Deep Learning<\/h2>\n<p>Deep learning is a subset of machine learning based on artificial neural networks (ANN). Notably, deep neural networks (DNN) have a multi-layer structure that allows them to learn more complex patterns. They demonstrate powerful performance in processing high-dimensional data, such as stock market data.<\/p>\n<h3>3.1 Components of Neural Networks<\/h3>\n<ul>\n<li>Input Layer: The layer that receives input data<\/li>\n<li>Hidden Layer: The layer that transforms input data and extracts features<\/li>\n<li>Output Layer: The layer that produces the final output<\/li>\n<\/ul>\n<h3>3.2 Model Training Process<\/h3>\n<p>The process of training a deep learning model consists of the following steps.<\/p>\n<ol>\n<li>Data Collection<\/li>\n<li>Data Preprocessing<\/li>\n<li>Model Definition<\/li>\n<li>Model Compilation<\/li>\n<li>Model Training<\/li>\n<li>Model Evaluation<\/li>\n<li>Model Tuning<\/li>\n<\/ol>\n<h2>4. Data Collection and Preprocessing<\/h2>\n<p>The first step in model training is data collection. APIs such as Yahoo Finance and Alpha Vantage can be used to collect various data from the stock market. Additionally, data refinement and preprocessing are necessary.<\/p>\n<h3>4.1 Data Collection<\/h3>\n<pre><code>\nimport pandas as pd\nimport yfinance as yf\n\n# Download data\ndata = yf.download(\"AAPL\", start=\"2010-01-01\", end=\"2023-01-01\")\nprint(data.head())\n<\/code><\/pre>\n<h3>4.2 Data Preprocessing<\/h3>\n<p>The data preprocessing process includes handling missing values, data normalization, or standardization. These processes help the model learn effectively.<\/p>\n<pre><code>\nfrom sklearn.preprocessing import StandardScaler\n\n# Select closing price data\nprices = data['Close'].values.reshape(-1, 1)\n\n# Normalize\nscaler = StandardScaler()\nnormalized_prices = scaler.fit_transform(prices)\n<\/code><\/pre>\n<h2>5. Model Definition and Training<\/h2>\n<p>It\u2019s time to define and train the model. We will create and train a simple deep learning model using TensorFlow and Keras.<\/p>\n<h3>5.1 Model Definition<\/h3>\n<pre><code>\nfrom keras.models import Sequential\nfrom keras.layers import Dense, LSTM\n\n# Define model\nmodel = Sequential()\nmodel.add(LSTM(50, return_sequences=True, input_shape=(timesteps, features))) \nmodel.add(LSTM(50))\nmodel.add(Dense(1))  # Final output layer\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n<\/code><\/pre>\n<h3>5.2 Model Training<\/h3>\n<p>After splitting into training and testing data, we train the model.<\/p>\n<pre><code>\n# Data split\ntrain_size = int(len(normalized_prices) * 0.8)\ntrain, test = normalized_prices[:train_size], normalized_prices[train_size:]\n\n# Train model\nmodel.fit(train, epochs=50, batch_size=32)\n<\/code><\/pre>\n<h2>6. Model Evaluation and Performance Analysis<\/h2>\n<p>Evaluating the results of the trained model and analyzing its performance is an important step. We verify the model&#8217;s performance through testing data and compare the prediction results.<\/p>\n<h3>6.1 Performance Evaluation Metrics<\/h3>\n<ul>\n<li>MSE (Mean Squared Error)<\/li>\n<li>RMSE (Root Mean Squared Error)<\/li>\n<li>R\u00b2 Score<\/li>\n<\/ul>\n<h3>6.2 Result Visualization<\/h3>\n<p>Visualizing the results for better understanding is also important.<\/p>\n<pre><code>\nimport matplotlib.pyplot as plt\n\n# Predicted prices\npredicted_prices = model.predict(test)\n\n# Result visualization\nplt.plot(test, label='Actual Price')\nplt.plot(predicted_prices, label='Predicted Price')\nplt.legend()\nplt.show()\n<\/code><\/pre>\n<h2>7. Model Tuning and Optimization<\/h2>\n<p>Various hyperparameters can be tuned to improve the model&#8217;s performance. Factors that can be tuned include the number of layers, the number of neurons in each layer, learning rate, and batch size.<\/p>\n<h3>7.1 Hyperparameter Search<\/h3>\n<p>Techniques such as Grid Search or Random Search can be used, and TensorBoard can be utilized to monitor the model training process.<\/p>\n<h3>7.2 Cross-Validation<\/h3>\n<p>Cross-validation can enhance the model\u2019s generalization performance.<\/p>\n<h2>8. Trading Using Reinforcement Learning<\/h2>\n<p>Reinforcement learning is a highly effective method for optimizing trading strategies. The agent learns through simulation in the environment and sees how each action affects rewards.<\/p>\n<h3>8.1 Basic Reinforcement Learning Algorithms<\/h3>\n<ul>\n<li>Q-Learning<\/li>\n<li>DQN (Deep Q-Network)<\/li>\n<li>Policy Gradient<\/li>\n<\/ul>\n<h3>8.2 Setting the Environment<\/h3>\n<p>To use reinforcement learning, a trading environment must be set up. Libraries like OpenAI&#8217;s Gym can be utilized for this purpose.<\/p>\n<h2>9. Practical Application and Strategy Development<\/h2>\n<p>The final step is to apply the model to real trading. It is essential to experiment with various strategies and consistently validate the model&#8217;s performance.<\/p>\n<h3>9.1 Backtesting<\/h3>\n<p>This process verifies the model&#8217;s performance based on historical data to determine whether it can yield profits in the long term.<\/p>\n<h3>9.2 Risk Management<\/h3>\n<p>Analyzing and managing the potential risks of the model is also essential. Asset allocation and portfolio diversification can help minimize losses.<\/p>\n<h2>10. Conclusion and Future Outlook<\/h2>\n<p>This course covered how to train algorithmic trading models based on machine learning and deep learning. With the advancement of algorithmic trading, the technologies of machine learning and deep learning will become increasingly important.<\/p>\n<p>Continuous learning and research in this field should enhance your expertise. In the future, building your own trading system using actual data would be advisable.<\/p>\n<p>Finally, I hope you can use the concepts and example codes covered in this course to build your trading system. Wishing you success in algorithmic trading!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the modern financial market, algorithmic trading is a rapidly growing field that uses data analysis and machine learning technologies to assist in making effective trading decisions. This course will closely examine how to train trading models using machine learning and deep learning. 1. Overview of Algorithmic Trading Algorithmic trading refers to the method of &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35557\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, How to Train Models&#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-35557","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, How to Train Models - \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\/35557\/\" \/>\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, How to Train Models - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In the modern financial market, algorithmic trading is a rapidly growing field that uses data analysis and machine learning technologies to assist in making effective trading decisions. This course will closely examine how to train trading models using machine learning and deep learning. 1. Overview of Algorithmic Trading Algorithmic trading refers to the method of &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, How to Train Models&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35557\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:40:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:12:15+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35557\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35557\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, How to Train Models\",\"datePublished\":\"2024-11-01T09:40:10+00:00\",\"dateModified\":\"2024-11-01T11:12:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35557\/\"},\"wordCount\":900,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35557\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35557\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, How to Train Models - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:40:10+00:00\",\"dateModified\":\"2024-11-01T11:12:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35557\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35557\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35557\/#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, How to Train Models\"}]},{\"@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, How to Train Models - \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\/35557\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, How to Train Models - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In the modern financial market, algorithmic trading is a rapidly growing field that uses data analysis and machine learning technologies to assist in making effective trading decisions. This course will closely examine how to train trading models using machine learning and deep learning. 1. Overview of Algorithmic Trading Algorithmic trading refers to the method of &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, How to Train Models\"","og_url":"https:\/\/atmokpo.com\/w\/35557\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:40:10+00:00","article_modified_time":"2024-11-01T11:12:15+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35557\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35557\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, How to Train Models","datePublished":"2024-11-01T09:40:10+00:00","dateModified":"2024-11-01T11:12:15+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35557\/"},"wordCount":900,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35557\/","url":"https:\/\/atmokpo.com\/w\/35557\/","name":"Machine Learning and Deep Learning Algorithm Trading, How to Train Models - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:40:10+00:00","dateModified":"2024-11-01T11:12:15+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35557\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35557\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35557\/#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, How to Train Models"}]},{"@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\/35557","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=35557"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35557\/revisions"}],"predecessor-version":[{"id":35558,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35557\/revisions\/35558"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35557"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35557"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35557"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}