{"id":37847,"date":"2024-11-01T10:00:56","date_gmt":"2024-11-01T10:00:56","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37847"},"modified":"2024-11-01T11:09:17","modified_gmt":"2024-11-01T11:09:17","slug":"automated-trading-using-deep-learning-and-machine-learning-trading-strategy-using-k-nearest-neighbors-knn-to-make-trading-decisions-based-on-similar-past-data","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37847\/","title":{"rendered":"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data."},"content":{"rendered":"<h2>Automated Trading Using Deep Learning and Machine Learning: Trading Strategy Utilizing K-Nearest Neighbors (KNN)<\/h2>\n<p>Today, automated trading systems in financial markets play a significant role in learning complex market patterns using technologies such as data science, deep learning, and machine learning to make trading decisions based on this knowledge. Especially in cryptocurrency markets such as Bitcoin, where volatility is high and sudden price changes are common, these technologies are even more crucial. In this course, we will explore how to design a Bitcoin trading strategy by analyzing similar past data using the K-Nearest Neighbors (KNN) algorithm.<\/p>\n<h3>1. Overview of K-Nearest Neighbors (KNN) Algorithm<\/h3>\n<p>KNN is one of the unsupervised learning techniques in machine learning, used to find similar data based on given data and make predictions. The core idea of KNN is that when a new data point is given, it identifies the K closest neighbor data points and determines the result based on the majority class among them. While KNN is mainly used for classification problems, it can also be applied to regression problems.<\/p>\n<h3>2. Principles of KNN<\/h3>\n<p>The KNN algorithm operates in the following steps:<\/p>\n<ol>\n<li>Calculate the distance between all points in the dataset.<\/li>\n<li>Select the K nearest neighbors to the given point.<\/li>\n<li>Return the most frequently occurring class or average value for prediction.<\/li>\n<\/ol>\n<p>A significant advantage of KNN is its simplicity in implementation and ease of understanding. However, a drawback is that as the amount of data increases, the computational cost rises, and it is sensitive to the curse of dimensionality.<\/p>\n<h3>3. Designing an Automated Trading System<\/h3>\n<p>To design a Bitcoin automated trading system, the following steps should be taken:<\/p>\n<ol>\n<li>Data Collection: Collect historical price data of Bitcoin.<\/li>\n<li>Data Preprocessing: Organize the collected data and convert it into a format suitable for the KNN model.<\/li>\n<li>Model Training: Use the KNN algorithm to train the model based on past data.<\/li>\n<li>Establish Trading Strategy: Design an algorithm to make trading decisions based on the predicted results.<\/li>\n<\/ol>\n<h3>4. Data Collection<\/h3>\n<p>Various data provider APIs can be used to collect Bitcoin price data. Here, we will introduce how to fetch data from the CoinGecko API using Python. The code below is an example of collecting daily price data for Bitcoin:<\/p>\n<pre><code>import requests\nimport pandas as pd\nfrom datetime import datetime\n\n# API Call\nurl = 'https:\/\/api.coingecko.com\/api\/v3\/coins\/bitcoin\/market_chart'\nparams = {\n    'vs_currency': 'usd',\n    'days': '30',  # Last 30 days of data\n    'interval': 'daily'\n}\nresponse = requests.get(url, params=params)\ndata = response.json()\n\n# Create DataFrame\nprices = data['prices']\ndf = pd.DataFrame(prices, columns=['timestamp', 'price'])\n\n# Convert Timestamp\ndf['timestamp'] = pd.to_datetime(df['timestamp'], unit='ms')\n\n# Display Data\nprint(df.head())<\/code><\/pre>\n<h3>5. Data Preprocessing<\/h3>\n<p>The collected data must be transformed into a suitable format for the model by removing outliers, handling missing values, and performing feature engineering. For example, technical indicators can be added based on price data. Commonly used technical indicators include Moving Average (MA), Relative Strength Index (RSI), and MACD. The code below is an example of adding a moving average:<\/p>\n<pre><code># Adding Moving Averages\ndf['MA_10'] = df['price'].rolling(window=10).mean()\ndf['MA_50'] = df['price'].rolling(window=50).mean()\ndf.dropna(inplace=True)\n<\/code><\/pre>\n<h3>6. Training the KNN Model<\/h3>\n<p>Once the data is prepared, the KNN model can be trained. The sklearn library can be used for this purpose, and the K value can be optimized through experimentation. Below is the code for training the KNN model and making predictions:<\/p>\n<pre><code>from sklearn.model_selection import train_test_split\nfrom sklearn.neighbors import KNeighborsClassifier\nfrom sklearn.metrics import classification_report\n\n# Separating Features and Labels\nX = df[['MA_10', 'MA_50']].values\ny = (df['price'].shift(-1) > df['price']).astype(int)  # If the next day's price increases, 1; if decreases, 0\n\n# Split into Training and Test Sets\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Train KNN Model\nknn = KNeighborsClassifier(n_neighbors=5)\nknn.fit(X_train, y_train)\n\n# Prediction and Evaluation\ny_pred = knn.predict(X_test)\nprint(classification_report(y_test, y_pred))<\/code><\/pre>\n<h3>7. Implementing Trading Strategy<\/h3>\n<p>An algorithm can be implemented to make trading decisions based on the model&#8217;s prediction results. For example, if the model predicts that the price of Bitcoin will rise, a buy order can be placed, and if it predicts that it will fall, a sell order can be executed:<\/p>\n<pre><code>def trading_signal(prediction):\n    if prediction == 1:\n        return 'Buy'  # Predicted to rise\n    else:\n        return 'Sell'  # Predicted to fall\n\n# Generate Signal for Last Data\nlast_prediction = knn.predict(X[-1].reshape(1, -1))\nsignal = trading_signal(last_prediction[0])\nprint(f\"Trading Signal: {signal}\")<\/code><\/pre>\n<h3>8. Performance Evaluation<\/h3>\n<p>The performance of the trading strategy can be evaluated through various metrics. Return, Sharpe ratio, and maximum drawdown can be considered, and the effectiveness of the strategy can be validated through experimental backtesting methods. The following code example simulates trading results based on past data:<\/p>\n<pre><code>initial_balance = 1000  # Initial Investment\nbalance = initial_balance\n\nfor i in range(len(X_test)):\n    if y_pred[i] == 1:  # Buy\n        balance *= (1 + (df['price'].iloc[i+len(X_train)] - df['price'].iloc[i+len(X_train)-1]) \/ df['price'].iloc[i+len(X_train)-1])\n    else:  # Sell\n        balance *= (1 - (df['price'].iloc[i+len(X_train)] - df['price'].iloc[i+len(X_train)-1]) \/ df['price'].iloc[i+len(X_train)-1])\n\nfinal_balance = balance\nprofit = final_balance - initial_balance\nprint(f\"Initial Balance: {initial_balance}, Final Balance: {final_balance}, Profit: {profit}\")<\/code><\/pre>\n<h3>9. Conclusion<\/h3>\n<p>KNN is a simple yet effective machine learning algorithm, which can be a useful tool for establishing automated trading strategies for Bitcoin. In this course, we have learned how to build an automated trading system and establish trading strategies using KNN. However, since KNN may have limitations by itself, it is recommended to develop more sophisticated strategies by combining it with other algorithms or using ensemble techniques. Continuously validating and adjusting existing trading strategies is also important.<\/p>\n<p>If you seek more information and strategies on Bitcoin automated trading, please refer to related literature and research materials to expand your in-depth knowledge.<\/p>\n<footer>\n<p>All code used in this course is provided for guidance purposes, and thorough review and analysis are needed before actual investment. All investment decisions should be made at your own risk.<\/p>\n<\/footer>\n","protected":false},"excerpt":{"rendered":"<p>Automated Trading Using Deep Learning and Machine Learning: Trading Strategy Utilizing K-Nearest Neighbors (KNN) Today, automated trading systems in financial markets play a significant role in learning complex market patterns using technologies such as data science, deep learning, and machine learning to make trading decisions based on this knowledge. Especially in cryptocurrency markets such as &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37847\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data.&#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-37847","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>Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data. - \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\/37847\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Automated Trading Using Deep Learning and Machine Learning: Trading Strategy Utilizing K-Nearest Neighbors (KNN) Today, automated trading systems in financial markets play a significant role in learning complex market patterns using technologies such as data science, deep learning, and machine learning to make trading decisions based on this knowledge. Especially in cryptocurrency markets such as &hellip; \ub354 \ubcf4\uae30 &quot;Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37847\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:00:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:17+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\/37847\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37847\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data.\",\"datePublished\":\"2024-11-01T10:00:56+00:00\",\"dateModified\":\"2024-11-01T11:09:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37847\/\"},\"wordCount\":726,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37847\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37847\/\",\"name\":\"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:00:56+00:00\",\"dateModified\":\"2024-11-01T11:09:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37847\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37847\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37847\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data.\"}]},{\"@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":"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data. - \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\/37847\/","og_locale":"ko_KR","og_type":"article","og_title":"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Automated Trading Using Deep Learning and Machine Learning: Trading Strategy Utilizing K-Nearest Neighbors (KNN) Today, automated trading systems in financial markets play a significant role in learning complex market patterns using technologies such as data science, deep learning, and machine learning to make trading decisions based on this knowledge. Especially in cryptocurrency markets such as &hellip; \ub354 \ubcf4\uae30 \"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data.\"","og_url":"https:\/\/atmokpo.com\/w\/37847\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:00:56+00:00","article_modified_time":"2024-11-01T11:09:17+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\/37847\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37847\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data.","datePublished":"2024-11-01T10:00:56+00:00","dateModified":"2024-11-01T11:09:17+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37847\/"},"wordCount":726,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37847\/","url":"https:\/\/atmokpo.com\/w\/37847\/","name":"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:00:56+00:00","dateModified":"2024-11-01T11:09:17+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37847\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37847\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37847\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automated trading using deep learning and machine learning, trading strategy using K-Nearest Neighbors (KNN) to make trading decisions based on similar past data."}]},{"@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\/37847","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=37847"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37847\/revisions"}],"predecessor-version":[{"id":37848,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37847\/revisions\/37848"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37847"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37847"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37847"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}