{"id":35247,"date":"2024-11-01T09:37:18","date_gmt":"2024-11-01T09:37:18","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35247"},"modified":"2024-11-01T11:15:16","modified_gmt":"2024-11-01T11:15:16","slug":"machine-learning-and-deep-learning-algorithm-trading-signal-generation-with-lightgbm-and-catboost","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35247\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost"},"content":{"rendered":"<p><body><\/p>\n<h2>1. Introduction<\/h2>\n<p>\n        In modern financial markets, data-driven trading strategies have become more important than ever. Machine learning and deep learning have established themselves as powerful tools for data analysis and signal generation in these trading strategies. In this course, we will implement signal generation (the process of deriving trading signals) using two state-of-the-art machine learning algorithms, LightGBM and CatBoost.\n    <\/p>\n<h2>2. Machine Learning and Algorithmic Trading<\/h2>\n<p>\n        Algorithmic trading refers to the automated execution of trades using computer programs. In this case, trading decisions are based on signals derived from data analysis. While traditional trading strategies rely on technical or fundamental analysis, machine learning-based strategies aim to predict future price movements by learning patterns from historical data.\n    <\/p>\n<h3>2.1 The Role of Machine Learning<\/h3>\n<p>\n        Machine learning algorithms learn from data to generate predictions for new inputs. Through this, we can recognize complex patterns in the market and generate important signals for trading decisions. Each algorithm processes data differently, so it is important to choose the appropriate algorithm for specific situations.\n    <\/p>\n<h3>2.2 The Advancement of Deep Learning<\/h3>\n<p>\n        Deep learning is a subset of machine learning that utilizes neural networks and particularly excels in handling large amounts of data. It is excellent at recognizing complex patterns, such as those in time series data, and in recent years, various trading companies have adopted deep learning-based models. However, deep learning models can be resource-intensive and time-consuming to train, so efficiency must be considered in signal generation.\n    <\/p>\n<h2>3. Introduction to LightGBM and CatBoost<\/h2>\n<p>\n        LightGBM and CatBoost are gradient boosting machine algorithms developed by Microsoft and Yandex, respectively. These algorithms are generally aimed at achieving high performance while providing relatively fast training speeds.\n    <\/p>\n<h3>3.1 LightGBM<\/h3>\n<p>\n        LightGBM is a boosting library designed to operate efficiently on large datasets. It excels in terms of performance and speed, especially when handling large-scale data.\n    <\/p>\n<ul>\n<li>Uses histogram-based algorithms for data processing<\/li>\n<li>Supports multi-class problems through instance weighting<\/li>\n<li>Supports various loss functions<\/li>\n<\/ul>\n<h3>3.2 CatBoost<\/h3>\n<p>\n        CatBoost offers a powerful way to handle categorical data and operates effectively without preprocessing like one-hot encoding. This is particularly useful for processing categorical features that frequently appear in trading data.\n    <\/p>\n<ul>\n<li>Native support for categorical data<\/li>\n<li>Automatic hyperparameter tuning<\/li>\n<li>Suitability for various problems<\/li>\n<\/ul>\n<h2>4. Data Preparation<\/h2>\n<p>\n        To train LightGBM and CatBoost using the code in this course, an appropriate dataset is required. Financial data typically consists of stock prices and trading volumes over time. The main steps are as follows:\n    <\/p>\n<h3>4.1 Data Collection<\/h3>\n<p>\n        Data can be collected from data providers such as Yahoo Finance, Alpha Vantage, or Quandl. Here, we start by using the pandas_datareader library to fetch the data.\n    <\/p>\n<pre><code>\nimport pandas as pd\nimport pandas_datareader.data as web\nfrom datetime import datetime\n\nstart = datetime(2010, 1, 1)\nend = datetime(2023, 5, 1)\ndata = web.DataReader('AAPL', 'yahoo', start, end)\n    <\/code><\/pre>\n<h3>4.2 Data Preprocessing<\/h3>\n<p>\n        The collected data must undergo preprocessing steps such as handling missing values and feature transformation. During this process, technical indicators like moving averages and the relative strength index (RSI) can be added.\n    <\/p>\n<pre><code>\ndata['MA20'] = data['Close'].rolling(window=20).mean()\ndata['RSI'] = compute_rsi(data['Close'])\ndata.dropna(inplace=True)\n    <\/code><\/pre>\n<h2>5. Model Training<\/h2>\n<p>\n        Once the data is prepared, we can train the LightGBM and CatBoost models. It is important to adjust the hyperparameters of each algorithm to achieve the best performance.\n    <\/p>\n<h3>5.1 Training the LightGBM Model<\/h3>\n<pre><code>\nimport lightgbm as lgb\nfrom sklearn.model_selection import train_test_split\n\nX = data[['MA20', 'RSI']]\ny = data['Signal']  # Generating trading signals\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\nlgb_model = lgb.LGBMClassifier()\nlgb_model.fit(X_train, y_train)\n    <\/code><\/pre>\n<h3>5.2 Training the CatBoost Model<\/h3>\n<pre><code>\nfrom catboost import CatBoostClassifier\n\ncat_model = CatBoostClassifier(cat_features=['CategoricalFeature1'], verbose=0)\ncat_model.fit(X_train, y_train)\n    <\/code><\/pre>\n<h2>6. Model Evaluation<\/h2>\n<p>\n        To evaluate the predictive performance of the models, various metrics can be used. Precision, recall, and F1 Score can help judge the quality of the models.\n    <\/p>\n<pre><code>\nfrom sklearn.metrics import accuracy_score, classification_report\n\nlgb_pred = lgb_model.predict(X_test)\ncat_pred = cat_model.predict(X_test)\n\nprint(\"LightGBM Accuracy:\", accuracy_score(y_test, lgb_pred))\nprint(\"CatBoost Accuracy:\", accuracy_score(y_test, cat_pred))\nprint(classification_report(y_test, lgb_pred))\nprint(classification_report(y_test, cat_pred))\n    <\/code><\/pre>\n<h2>7. Signal Generation and Trading Strategies<\/h2>\n<p>\n        Finally, based on the signals generated by the models, we will construct actual trading strategies and evaluate their profitability.\n    <\/p>\n<pre><code>\ndata['Predicted_LGBM'] = lgb_model.predict(X)\ndata['Predicted_CatBoost'] = cat_model.predict(X)\n\n# Generating buy\/sell signals\ndata['Trading_Signal'] = data['Predicted_LGBM'].diff()\n    <\/code><\/pre>\n<h2>8. Conclusion and Future Research Directions<\/h2>\n<p>\n        In this course, we explored the method of signal generation using LightGBM and CatBoost. These methods can continue to evolve with the introduction of more advanced algorithms and real-time data streaming. Machine learning and deep learning are expected to further strengthen their role in trading strategies.\n    <\/p>\n<h3>8.1 Additional Research<\/h3>\n<p>\n        In the future, it will be necessary to explore ways to increase predictive accuracy by adding more features and using ensemble techniques. Additionally, new approaches such as reinforcement learning could further expand the domain of algorithmic trading.\n    <\/p>\n<h2>9. References<\/h2>\n<ul>\n<li>1. &#8216;Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow&#8217; &#8211; Aur\u00e9lien G\u00e9ron<\/li>\n<li>2. &#8216;Introduction to Statistical Learning&#8217; &#8211; Gareth James et al.<\/li>\n<li>3. &#8216;Pattern Recognition and Machine Learning&#8217; &#8211; Christopher Bishop<\/li>\n<li>4. LightGBM Documentation: <a href=\"https:\/\/lightgbm.readthedocs.io\/en\/latest\/\">lightgbm.readthedocs.io<\/a><\/li>\n<li>5. CatBoost Documentation: <a href=\"https:\/\/catboost.ai\/en\/docs\/\">catboost.ai<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction In modern financial markets, data-driven trading strategies have become more important than ever. Machine learning and deep learning have established themselves as powerful tools for data analysis and signal generation in these trading strategies. In this course, we will implement signal generation (the process of deriving trading signals) using two state-of-the-art machine learning &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35247\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost&#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-35247","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, Signal Generation with LightGBM and CatBoost - \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\/35247\/\" \/>\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, Signal Generation with LightGBM and CatBoost - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction In modern financial markets, data-driven trading strategies have become more important than ever. Machine learning and deep learning have established themselves as powerful tools for data analysis and signal generation in these trading strategies. In this course, we will implement signal generation (the process of deriving trading signals) using two state-of-the-art machine learning &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35247\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:37:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:15:16+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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35247\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35247\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost\",\"datePublished\":\"2024-11-01T09:37:18+00:00\",\"dateModified\":\"2024-11-01T11:15:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35247\/\"},\"wordCount\":688,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35247\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35247\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:37:18+00:00\",\"dateModified\":\"2024-11-01T11:15:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35247\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35247\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35247\/#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, Signal Generation with LightGBM and CatBoost\"}]},{\"@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, Signal Generation with LightGBM and CatBoost - \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\/35247\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction In modern financial markets, data-driven trading strategies have become more important than ever. Machine learning and deep learning have established themselves as powerful tools for data analysis and signal generation in these trading strategies. In this course, we will implement signal generation (the process of deriving trading signals) using two state-of-the-art machine learning &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost\"","og_url":"https:\/\/atmokpo.com\/w\/35247\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:37:18+00:00","article_modified_time":"2024-11-01T11:15:16+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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35247\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35247\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost","datePublished":"2024-11-01T09:37:18+00:00","dateModified":"2024-11-01T11:15:16+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35247\/"},"wordCount":688,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35247\/","url":"https:\/\/atmokpo.com\/w\/35247\/","name":"Machine Learning and Deep Learning Algorithm Trading, Signal Generation with LightGBM and CatBoost - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:37:18+00:00","dateModified":"2024-11-01T11:15:16+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35247\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35247\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35247\/#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, Signal Generation with LightGBM and CatBoost"}]},{"@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\/35247","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=35247"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35247\/revisions"}],"predecessor-version":[{"id":35248,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35247\/revisions\/35248"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}