{"id":35971,"date":"2024-11-01T09:44:19","date_gmt":"2024-11-01T09:44:19","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35971"},"modified":"2024-11-01T11:09:40","modified_gmt":"2024-11-01T11:09:40","slug":"learning-about-machine-learning-and-deep-learning-algorithm-trading-characteristics-and-how-to-generate-data-over-time","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35971\/","title":{"rendered":"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time"},"content":{"rendered":"<p><body><\/p>\n<div class=\"section\">\n<h2>1. Introduction<\/h2>\n<p>\n            In recent years, algorithmic trading has rapidly developed in the financial markets. Machine learning and deep learning technologies have significantly contributed to improving data analysis and prediction accuracy, thereby becoming essential elements in the composition and operation of automated trading systems. In this course, we will understand the basic concepts and characteristics of algorithmic trading based on machine learning and deep learning, and learn about data generation and processing over time.\n        <\/p>\n<\/div>\n<div class=\"section\">\n<h2>2. Understanding the Basics of Machine Learning and Deep Learning<\/h2>\n<p>\n            Machine learning is an algorithm that learns patterns and makes predictions from data. The main goal of machine learning is to derive outcomes from given input data. Deep learning is a field of machine learning that uses artificial neural networks to learn more complex patterns. In the stock market, three types of machine learning models are commonly used:\n        <\/p>\n<ul>\n<li><strong>Supervised Learning:<\/strong> The model learns based on given input data and output data.<\/li>\n<li><strong>Unsupervised Learning:<\/strong> Only input data is provided, and the model learns the patterns or structures of the data on its own.<\/li>\n<li><strong>Reinforcement Learning:<\/strong> An agent selects actions and learns the optimal policy by receiving rewards as a result of those actions.<\/li>\n<\/ul>\n<\/div>\n<div class=\"section\">\n<h2>3. Data Generation and Preprocessing<\/h2>\n<h3>3.1. Data Collection<\/h3>\n<p>\n            For algorithmic trading, financial data is needed first. Data such as stock prices, trading volumes, and technical analysis indicators are primarily used. This data can be collected from various APIs or financial data providers. For example, you can collect stock data using the <code>yfinance<\/code> library in Python.\n        <\/p>\n<div class=\"code-block\">\n<pre>\nimport yfinance as yf\n\n# Get Apple's stock data.\ndata = yf.download(\"AAPL\", start=\"2020-01-01\", end=\"2023-01-01\")\nprint(data.head())\n            <\/pre>\n<\/div>\n<h3>3.2. Data Preprocessing<\/h3>\n<p>\n            Collected data often includes noise or incompleteness. Therefore, it needs to be preprocessed into a suitable form for analysis. The preprocessing stage generally includes handling missing values, normalization, scaling, and so on. For example, to scale the data, you can use Min-Max scaler to convert stock prices to a range between 0 and 1.\n        <\/p>\n<div class=\"code-block\">\n<pre>\nfrom sklearn.preprocessing import MinMaxScaler\n\n# Initialize and fit MinMaxScaler\nscaler = MinMaxScaler()\nscaled_data = scaler.fit_transform(data[['Close']])\n            <\/pre>\n<\/div>\n<\/div>\n<div class=\"section\">\n<h2>4. Feature Generation and Selection<\/h2>\n<p>\n            The performance of machine learning models greatly depends on the features. Therefore, the process of generating and selecting appropriate features is very important. Commonly used feature generation methods include technical indicators and statistical indicators such as moving averages and the Relative Strength Index (RSI).\n        <\/p>\n<h3>4.1. Moving Average<\/h3>\n<p>\n            The moving average is used to determine the trend of stock prices by calculating the average price over a specific period. For example, the code to calculate the 20-day moving average is as follows.\n        <\/p>\n<div class=\"code-block\">\n<pre>\ndata['SMA_20'] = data['Close'].rolling(window=20).mean()\n            <\/pre>\n<\/div>\n<h3>4.2. Relative Strength Index (RSI)<\/h3>\n<p>\n            The RSI is an indicator used to determine whether the stock price is overbought or oversold. To calculate the RSI, the averages of gains and losses must be utilized.\n        <\/p>\n<div class=\"code-block\">\n<pre>\ndef compute_rsi(data, window=14):\n    delta = data['Close'].diff()\n    gain = (delta.where(delta > 0, 0)).rolling(window=window).mean()\n    loss = (-delta.where(delta < 0, 0)).rolling(window=window).mean()\n    rs = gain \/ loss\n    rsi = 100 - (100 \/ (1 + rs))\n    return rsi\n\ndata['RSI'] = compute_rsi(data)\n            <\/pre>\n<\/div>\n<\/div>\n<div class=\"section\">\n<h2>5. Model Training and Evaluation<\/h2>\n<h3>5.1. Model Selection<\/h3>\n<p>\n            Machine learning models include regression models, decision trees, random forests, and SVMs, while deep learning models include LSTM (Long Short-Term Memory) and CNN (Convolutional Neural Network). Each model has its unique characteristics and advantages, and it is important to choose the model suitable for the given problem.\n        <\/p>\n<h3>5.2. Model Training<\/h3>\n<p>\n            The chosen model is trained using the training data. Model training is generally carried out in the direction of minimizing the loss function. For example, the code to configure an LSTM model using TensorFlow is shown below.\n        <\/p>\n<div class=\"code-block\">\n<pre>\nimport tensorflow as tf\nfrom tensorflow.keras.models import Sequential\nfrom tensorflow.keras.layers import LSTM, Dense\n\nmodel = Sequential()\nmodel.add(LSTM(50, activation='relu', input_shape=(X_train.shape[1], X_train.shape[2])))\nmodel.add(Dense(1))\nmodel.compile(optimizer='adam', loss='mean_squared_error')\nmodel.fit(X_train, y_train, epochs=50, batch_size=32)\n            <\/pre>\n<\/div>\n<h3>5.3. Model Evaluation<\/h3>\n<p>\n            During the model evaluation stage, the test data is used to measure the model's performance. Various metrics, such as MSE (Mean Squared Error), can be used for evaluation. Additionally, the predictions of the trained model can be visualized for intuitive evaluation.\n        <\/p>\n<div class=\"code-block\">\n<pre>\nimport matplotlib.pyplot as plt\n\npredictions = model.predict(X_test)\nplt.plot(y_test, label='Actual Values')\nplt.plot(predictions, label='Predicted Values')\nplt.legend()\nplt.show()\n            <\/pre>\n<\/div>\n<\/div>\n<div class=\"section\">\n<h2>6. Building an Actual Algorithmic Trading System<\/h2>\n<p>\n            Based on what we have learned so far, we can build a real algorithmic trading system. This system will include the ability to make decisions based on given data and automatically execute orders.\n        <\/p>\n<h3>6.1. Generating Trade Signals<\/h3>\n<p>\n            Trade signals are indicators that determine the timing of buying or selling stocks. For example, you can generate trade signals using a moving average crossover. The code below is an example of implementing a simple trading strategy.\n        <\/p>\n<div class=\"code-block\">\n<pre>\ndata['Signal'] = 0\ndata['Signal'][20:] = np.where(data['SMA_20'][20:] > data['Close'][20:], 1, 0)\n            <\/pre>\n<\/div>\n<h3>6.2. Order Execution and Portfolio Management<\/h3>\n<p>\n            Once trade signals are generated, actual orders are executed based on them. Most trading platforms support executing orders automatically via APIs, and there should also be features for managing the performance of the portfolio.\n        <\/p>\n<div class=\"code-block\">\n<pre>\nimport requests\n\ndef send_order(signal):\n    if signal == 1:\n        # Code to execute a buy order\n        requests.post(\"API_ENDPOINT\", data={\"action\": \"buy\", \"quantity\": 1})\n    elif signal == -1:\n        # Code to execute a sell order\n        requests.post(\"API_ENDPOINT\", data={\"action\": \"sell\", \"quantity\": 1})\n            <\/pre>\n<\/div>\n<\/div>\n<div class=\"section\">\n<h2>7. Conclusion<\/h2>\n<p>\n            Machine learning and deep learning algorithmic trading are powerful tools for gaining profits in the financial markets. This course covered the process from data collection, preprocessing, feature generation, model training and evaluation, to building a real algorithmic trading system. Above all, it is important to remember that the success of algorithmic trading relies on continuous data analysis and model improvement.\n        <\/p>\n<\/div>\n<div class=\"section\">\n<h2>8. References<\/h2>\n<ul>\n<li>Goodfellow, I., Bengio, Y., & Courville, A. (2016). Deep Learning. MIT Press.<\/li>\n<li>Harvey, C. R., Liu, Y., & Zhu, H. (2016). ...<\/li>\n<li>Kirkpatrick, S., & Hoyer, C. (2020). ...<\/li>\n<\/ul>\n<\/div>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction In recent years, algorithmic trading has rapidly developed in the financial markets. Machine learning and deep learning technologies have significantly contributed to improving data analysis and prediction accuracy, thereby becoming essential elements in the composition and operation of automated trading systems. In this course, we will understand the basic concepts and characteristics of &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35971\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time&#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-35971","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>Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time - \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\/35971\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction In recent years, algorithmic trading has rapidly developed in the financial markets. Machine learning and deep learning technologies have significantly contributed to improving data analysis and prediction accuracy, thereby becoming essential elements in the composition and operation of automated trading systems. In this course, we will understand the basic concepts and characteristics of &hellip; \ub354 \ubcf4\uae30 &quot;Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35971\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:44:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:40+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\/35971\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35971\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time\",\"datePublished\":\"2024-11-01T09:44:19+00:00\",\"dateModified\":\"2024-11-01T11:09:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35971\/\"},\"wordCount\":770,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35971\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35971\/\",\"name\":\"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:44:19+00:00\",\"dateModified\":\"2024-11-01T11:09:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35971\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35971\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35971\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time\"}]},{\"@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":"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time - \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\/35971\/","og_locale":"ko_KR","og_type":"article","og_title":"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction In recent years, algorithmic trading has rapidly developed in the financial markets. Machine learning and deep learning technologies have significantly contributed to improving data analysis and prediction accuracy, thereby becoming essential elements in the composition and operation of automated trading systems. In this course, we will understand the basic concepts and characteristics of &hellip; \ub354 \ubcf4\uae30 \"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time\"","og_url":"https:\/\/atmokpo.com\/w\/35971\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:44:19+00:00","article_modified_time":"2024-11-01T11:09:40+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\/35971\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35971\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time","datePublished":"2024-11-01T09:44:19+00:00","dateModified":"2024-11-01T11:09:40+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35971\/"},"wordCount":770,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35971\/","url":"https:\/\/atmokpo.com\/w\/35971\/","name":"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:44:19+00:00","dateModified":"2024-11-01T11:09:40+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35971\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35971\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35971\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Learning about machine learning and deep learning algorithm trading, characteristics, and how to generate data over time"}]},{"@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\/35971","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=35971"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35971\/revisions"}],"predecessor-version":[{"id":35972,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35971\/revisions\/35972"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35971"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35971"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}