{"id":35989,"date":"2024-11-01T09:44:33","date_gmt":"2024-11-01T09:44:33","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35989"},"modified":"2024-11-01T11:09:35","modified_gmt":"2024-11-01T11:09:35","slug":"machine-learning-and-deep-learning-algorithm-trading-backtesting-performance-measurement-using-python","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35989\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python"},"content":{"rendered":"<p><body><\/p>\n<p>The importance of algorithmic trading in financial markets has increased significantly in recent years. In particular, research is actively being conducted to improve investment strategies and increase prediction accuracy using machine learning and deep learning techniques. This course will explain trading systems that utilize machine learning and deep learning algorithms and cover how to measure backtesting performance using the PyPortfolio library in Python.<\/p>\n<h2>1. Understanding Algorithmic Trading<\/h2>\n<p>Algorithmic trading refers to the method of automatically trading financial assets such as stocks, bonds, and foreign exchange using rule-based trading strategies. Unlike traditional trading, algorithmic trading makes trading decisions through computer algorithms, offering significant advantages in speed and precision of transactions.<\/p>\n<h3>1.1 Advantages of Algorithmic Trading<\/h3>\n<ul>\n<li>Speedy Transactions: Algorithms can make decisions within milliseconds, eliminating the worry of missing a timing.<\/li>\n<li>Emotional Exclusion: Algorithms do not trade based on emotions, thus maintaining a consistent strategy.<\/li>\n<li>Efficient Trading: Capable of executing large trades efficiently, minimizing slippage and transaction costs.<\/li>\n<\/ul>\n<h3>1.2 Disadvantages of Algorithmic Trading<\/h3>\n<ul>\n<li>System Dependency: Losses can occur due to system errors or network issues.<\/li>\n<li>Complexity: Designing and maintaining algorithms can be complex.<\/li>\n<li>Market Inefficiency: There may be limitations to algorithms exploiting market inefficiencies.<\/li>\n<\/ul>\n<h2>2. Basics of Machine Learning and Deep Learning<\/h2>\n<p>Machine learning is a technology that enables computers to learn from data and make predictions. Deep learning is a subset of machine learning that uses artificial neural networks to recognize more complex patterns.<\/p>\n<h3>2.1 Machine Learning Algorithms<\/h3>\n<ul>\n<li><strong>Regression Analysis<\/strong>: Models the relationship between a specific dependent variable and one or more independent variables.<\/li>\n<li><strong>Classification Algorithms<\/strong>: Used to predict the label of a given data point.<\/li>\n<li><strong>Clustering Algorithms<\/strong>: Group similar data points to discover patterns.<\/li>\n<\/ul>\n<h3>2.2 Deep Learning Algorithms<\/h3>\n<ul>\n<li><strong>Neural Networks<\/strong>: Composed of multiple layers of artificial neurons to recognize complex patterns.<\/li>\n<li><strong>Convolutional Neural Networks (CNN)<\/strong>: Specialized in recognizing patterns in images or time series data.<\/li>\n<li><strong>Recurrent Neural Networks (RNN)<\/strong>: Suitable for processing sequence data.<\/li>\n<\/ul>\n<h2>3. Data Collection for Algorithmic Trading<\/h2>\n<p>The success of algorithmic trading depends on high-quality data. We will introduce the process of collecting and preprocessing financial data from various sources.<\/p>\n<h3>3.1 Data Sources<\/h3>\n<ul>\n<li>Stock Exchange APIs: Data can be collected through APIs provided by Yahoo Finance, Alpha Vantage, Quandl, and others.<\/li>\n<li>Crawling: News articles and other relevant information can be collected through web scraping techniques.<\/li>\n<li>Alternative Data: Unstructured data like social media data and satellite imagery can also assist in investment decision-making.<\/li>\n<\/ul>\n<h3>3.2 Data Preprocessing<\/h3>\n<pre><code>import pandas as pd\n\n# Load data\ndata = pd.read_csv('stock_data.csv')\n\n# Handle missing values\ndata.dropna(inplace=True)\n\n# Change data type\ndata['date'] = pd.to_datetime(data['date'])\n<\/code><\/pre>\n<h2>4. Building Machine Learning Models<\/h2>\n<p>Once the data is prepared, we will explain the process of building a machine learning model to develop trading strategies.<\/p>\n<h3>4.1 Model Selection<\/h3>\n<p>Choosing an appropriate machine learning model for the trading strategy is important. For instance, regression analysis can be used for stock price prediction, while classification models can be used for buy\/sell decisions of stocks.<\/p>\n<h3>4.2 Model Training<\/h3>\n<p>Model training involves splitting the data into training and testing sets, training the model on the training set, and evaluating performance on the testing set.<\/p>\n<pre><code>from sklearn.model_selection import train_test_split\nfrom sklearn.ensemble import RandomForestClassifier\n\n# Features and Labels\nX = data[['feature1', 'feature2']]\ny = data['target']\n\n# Train-Test Split\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Create and train the model\nmodel = RandomForestClassifier()\nmodel.fit(X_train, y_train)\n<\/code><\/pre>\n<h3>4.3 Model Evaluation<\/h3>\n<p>To evaluate the performance of the model, appropriate metrics must be selected. These include Accuracy, Precision, Recall, and F1-score.<\/p>\n<pre><code>from sklearn.metrics import classification_report\n\n# Predictions\ny_pred = model.predict(X_test)\n\n# Performance evaluation\nprint(classification_report(y_test, y_pred))\n<\/code><\/pre>\n<h2>5. Building Deep Learning Models<\/h2>\n<p>We will look at the procedures for building deep learning models that can learn complex patterns compared to machine learning models.<\/p>\n<h3>5.1 Introduction to Deep Learning Libraries<\/h3>\n<p>Deep learning models can be built using Keras and TensorFlow. These libraries offer ease of use and powerful capabilities.<\/p>\n<h3>5.2 Designing Neural Network Structure<\/h3>\n<pre><code>import numpy as np\nfrom keras.models import Sequential\nfrom keras.layers import Dense\n\n# Data preparation\nX_train = np.array(X_train)\ny_train = np.array(y_train)\n\n# Design model structure\nmodel = Sequential()\nmodel.add(Dense(64, activation='relu', input_shape=(X_train.shape[1],)))\nmodel.add(Dense(32, activation='relu'))\nmodel.add(Dense(1, activation='sigmoid'))\n\n# Compile the model\nmodel.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])\n<\/code><\/pre>\n<h3>5.3 Model Training and Evaluation<\/h3>\n<pre><code># Model training\nmodel.fit(X_train, y_train, epochs=10, batch_size=32)\n\n# Performance evaluation\nloss, accuracy = model.evaluate(X_test, y_test)\nprint(f'Accuracy: {accuracy}')\n<\/code><\/pre>\n<h2>6. Introduction to PyPortfolio Library<\/h2>\n<p>PyPortfolio is a Python library specialized for backtesting and performance measurement. PyPortfolio allows for easy measurement and comparison of various portfolios&#8217; performances.<\/p>\n<h3>6.1 Installing PyPortfolio<\/h3>\n<pre><code>!pip install pyfolio\n<\/code><\/pre>\n<h3>6.2 Basic Example<\/h3>\n<pre><code>import pyfolio as pf\n\n# Calculate portfolio returns\nreturns = data['returns']  # Returns column\n\n# Performance Report\npf.create_full_tear_sheet(returns)\n<\/code><\/pre>\n<h2>7. Importance of Backtesting<\/h2>\n<p>Backtesting is the process of testing a trading strategy based on past data to assess its likelihood of success. This allows investors to increase the reliability of the strategy.<\/p>\n<h3>7.1 Components of Backtesting<\/h3>\n<ul>\n<li>Returns: Calculating returns over the period<\/li>\n<li>Volatility: Measuring the volatility of returns<\/li>\n<li>Maximum Drawdown: Assessing risk by measuring the maximum loss of the portfolio<\/li>\n<\/ul>\n<h3>7.2 Analyzing Backtesting Results<\/h3>\n<p>It is important to analyze the results of backtesting to evaluate the effectiveness of the strategy and derive improvement points. Visualization helps to understand the result analysis more easily.<\/p>\n<pre><code>import matplotlib.pyplot as plt\n\n# Visualize cumulative returns\nplt.plot(data['cumulative_returns'])\nplt.title('Cumulative Returns')\nplt.xlabel('Time')\nplt.ylabel('Cumulative Return')\nplt.show()\n<\/code><\/pre>\n<h2>8. Conclusion<\/h2>\n<p>Trading systems that utilize machine learning and deep learning algorithms can achieve high performance in the investment decision-making process. However, the quality of the data and the choice of model are the keys to success. Additionally, using the PyPortfolio library makes backtesting and performance measurement simple and efficient. The potential of machine learning and deep learning is limitless, and it is essential to research and apply these technologies to capture opportunities in the financial markets.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The importance of algorithmic trading in financial markets has increased significantly in recent years. In particular, research is actively being conducted to improve investment strategies and increase prediction accuracy using machine learning and deep learning techniques. This course will explain trading systems that utilize machine learning and deep learning algorithms and cover how to measure &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35989\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python&#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-35989","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, Backtesting Performance Measurement Using Python - \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\/35989\/\" \/>\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, Backtesting Performance Measurement Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"The importance of algorithmic trading in financial markets has increased significantly in recent years. In particular, research is actively being conducted to improve investment strategies and increase prediction accuracy using machine learning and deep learning techniques. This course will explain trading systems that utilize machine learning and deep learning algorithms and cover how to measure &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35989\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:44:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:35+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\/35989\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35989\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python\",\"datePublished\":\"2024-11-01T09:44:33+00:00\",\"dateModified\":\"2024-11-01T11:09:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35989\/\"},\"wordCount\":765,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35989\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35989\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:44:33+00:00\",\"dateModified\":\"2024-11-01T11:09:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35989\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35989\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35989\/#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, Backtesting Performance Measurement Using Python\"}]},{\"@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, Backtesting Performance Measurement Using Python - \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\/35989\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"The importance of algorithmic trading in financial markets has increased significantly in recent years. In particular, research is actively being conducted to improve investment strategies and increase prediction accuracy using machine learning and deep learning techniques. This course will explain trading systems that utilize machine learning and deep learning algorithms and cover how to measure &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python\"","og_url":"https:\/\/atmokpo.com\/w\/35989\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:44:33+00:00","article_modified_time":"2024-11-01T11:09:35+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\/35989\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35989\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python","datePublished":"2024-11-01T09:44:33+00:00","dateModified":"2024-11-01T11:09:35+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35989\/"},"wordCount":765,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35989\/","url":"https:\/\/atmokpo.com\/w\/35989\/","name":"Machine Learning and Deep Learning Algorithm Trading, Backtesting Performance Measurement Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:44:33+00:00","dateModified":"2024-11-01T11:09:35+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35989\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35989\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35989\/#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, Backtesting Performance Measurement Using Python"}]},{"@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\/35989","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=35989"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35989\/revisions"}],"predecessor-version":[{"id":35990,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35989\/revisions\/35990"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35989"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35989"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}