{"id":35813,"date":"2024-11-01T09:42:51","date_gmt":"2024-11-01T09:42:51","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35813"},"modified":"2024-11-01T11:10:45","modified_gmt":"2024-11-01T11:10:45","slug":"machine-learning-and-deep-learning-algorithm-trading-long-short-signal-for-japanese-stocks","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35813\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks"},"content":{"rendered":"<p><body><\/p>\n<p>\n    Today, financial markets are becoming increasingly complex, and as a result, investment strategies are evolving. In particular, advancements in artificial intelligence (AI) and machine learning (ML) have become powerful tools for implementing algorithmic trading and long\/short strategies. This course will take a closer look at how to generate long\/short signals using machine learning and deep learning focused on the Japanese stock market.\n<\/p>\n<h2>1. Overview<\/h2>\n<p>\n    Long\/short strategies involve investors buying (long) a specific asset while simultaneously selling (short) another asset to capitalize on market volatility. These strategies focus on generating profits through relative changes in asset prices. The Japanese stock market is a place where numerous investors and traders operate, making it very attractive for testing and implementing these strategies.\n<\/p>\n<h3>1.1 Difference Between Machine Learning and Deep Learning<\/h3>\n<p>\n    Machine learning is a technology that learns patterns from data to make predictions and decisions. In contrast, deep learning is a subset of machine learning that uses neural networks to learn more complex patterns. Deep learning requires large amounts of data and high computational power, but it allows for more refined predictions.\n<\/p>\n<h2>2. Data Collection and Preparation<\/h2>\n<p>\n    To build an algorithmic trading system, one must first collect and prepare data. Here are some data sources available for the Japanese stock market.\n<\/p>\n<h3>2.1 Data Sources<\/h3>\n<ul>\n<li><strong>Yahoo Finance<\/strong>: A great source for downloading historical data on Japanese stocks.<\/li>\n<li><strong>Quandl<\/strong>: Provides various financial data APIs, including data from the Japanese stock market.<\/li>\n<li><strong>Tiingo<\/strong>: A service that provides historical price data and stock news APIs.<\/li>\n<\/ul>\n<h3>2.2 Data Preprocessing<\/h3>\n<p>\n    The collected data needs to undergo a preprocessing phase. This stage involves tasks such as handling missing values, data normalization, and feature engineering to transform the data into a suitable format for machine learning models.\n<\/p>\n<h3>Example: Data Preprocessing Code<\/h3>\n<div class=\"example\">\n<pre><code>import pandas as pd\n\n# Load data\ndata = pd.read_csv('japan_stock_data.csv')\n\n# Handle missing values\ndata = data.fillna(method='ffill')\n\n# Normalization\nfrom sklearn.preprocessing import MinMaxScaler\nscaler = MinMaxScaler()\ndata_scaled = scaler.fit_transform(data[['Close']])\n<\/code><\/pre>\n<\/div>\n<h2>3. Implementing Machine Learning Models<\/h2>\n<p>\n    Using the preprocessed data, we will build machine learning models. Here, we will use methods such as logistic regression, random forest, and support vector machine (SVM).\n<\/p>\n<h3>3.1 Logistic Regression<\/h3>\n<p>\n    Logistic regression is a simple model suitable for binary classification problems. This model can predict whether the price of a stock will rise or fall.\n<\/p>\n<h3>Example Code<\/h3>\n<div class=\"example\">\n<pre><code>from sklearn.linear_model import LogisticRegression\nfrom sklearn.model_selection import train_test_split\n\n# Create features\ndata['Returns'] = data['Close'].pct_change()\ndata['Signal'] = (data['Returns'] > 0).astype(int)\n\n# Split into training and testing data\nX = data[['Close']]\ny = data['Signal']\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Train model\nmodel = LogisticRegression()\nmodel.fit(X_train, y_train)\n<\/code><\/pre>\n<\/div>\n<h3>3.2 Random Forest<\/h3>\n<p>\n    Random forest is a method that enhances prediction performance by ensembling multiple decision trees. It is particularly good at learning non-linear relationships.\n<\/p>\n<h3>Example Code<\/h3>\n<div class=\"example\">\n<pre><code>from sklearn.ensemble import RandomForestClassifier\n\n# Train model\nrf_model = RandomForestClassifier(n_estimators=100, random_state=42)\nrf_model.fit(X_train, y_train)\n<\/code><\/pre>\n<\/div>\n<h3>3.3 Support Vector Machine (SVM)<\/h3>\n<p>\n    Support vector machines are classification techniques that exhibit outstanding performance, especially on high-dimensional data. They can also be suitably applied here.\n<\/p>\n<h3>Example Code<\/h3>\n<div class=\"example\">\n<pre><code>from sklearn.svm import SVC\n\n# Train model\nsvm_model = SVC(kernel='linear')\nsvm_model.fit(X_train, y_train)\n<\/code><\/pre>\n<\/div>\n<h2>4. Implementing Deep Learning Models<\/h2>\n<p>\n    Deep learning can be used to learn more complex patterns. Here, we will use TensorFlow and Keras to create a simple neural network model.\n<\/p>\n<h3>4.1 Implementing Neural Networks with Keras<\/h3>\n<p>\n    Keras is a high-level deep learning API that allows rapid prototyping. Below is the code for implementing a simple neural network model.\n<\/p>\n<h3>Example Code<\/h3>\n<div class=\"example\">\n<pre><code>import tensorflow as tf\nfrom tensorflow import keras\n\n# Build model\nmodel = keras.Sequential([\n    keras.layers.Dense(64, activation='relu', input_shape=(X_train.shape[1],)),\n    keras.layers.Dense(64, activation='relu'),\n    keras.layers.Dense(1, activation='sigmoid')\n])\n\n# Compile\nmodel.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])\n\n# Train\nmodel.fit(X_train, y_train, epochs=10, batch_size=32)\n<\/code><\/pre>\n<\/div>\n<h2>5. Model Evaluation<\/h2>\n<p>\n    This is the process of evaluating the trained model to verify its performance. You can quantitatively measure the model&#8217;s performance using confusion matrices, precision, recall, etc.\n<\/p>\n<h3>Example Code<\/h3>\n<div class=\"example\">\n<pre><code>from sklearn.metrics import classification_report, confusion_matrix\n\n# Predictions\ny_pred = model.predict(X_test)\ny_pred_classes = (y_pred > 0.5).astype(int)\n\n# Performance evaluation\nprint(classification_report(y_test, y_pred_classes))\nprint(confusion_matrix(y_test, y_pred_classes))\n<\/code><\/pre>\n<\/div>\n<h2>6. Generating Long\/Short Signals<\/h2>\n<p>\n    Finally, we utilize the predicted results to generate long\/short signals. If an increase is expected, a long position is taken, and if a decrease is anticipated, a short position is taken.\n<\/p>\n<h3>Example Code<\/h3>\n<div class=\"example\">\n<pre><code>data['Predicted_Signal'] = model.predict(data[['Close']])\ndata['Long_Signal'] = (data['Predicted_Signal'] > 0.5).astype(int)\ndata['Short_Signal'] = (data['Predicted_Signal'] <= 0.5).astype(int)\n<\/code><\/pre>\n<\/div>\n<h2>7. Conclusion and Future Work<\/h2>\n<p>\n    Generating long\/short signals using machine learning and deep learning can yield significant results in the Japanese stock market as well. This course covered the entire process from data collection, preprocessing, model building and evaluation, to signal generation.\n<\/p>\n<p>\n    In the future, more features can be added, or different algorithms can be tried to improve performance. Additionally, techniques like reinforcement learning can be applied to enhance the efficiency of algorithmic trading even further.\n<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today, financial markets are becoming increasingly complex, and as a result, investment strategies are evolving. In particular, advancements in artificial intelligence (AI) and machine learning (ML) have become powerful tools for implementing algorithmic trading and long\/short strategies. This course will take a closer look at how to generate long\/short signals using machine learning and deep &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35813\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks&#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-35813","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, Long Short Signal for Japanese Stocks - \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\/35813\/\" \/>\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, Long Short Signal for Japanese Stocks - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Today, financial markets are becoming increasingly complex, and as a result, investment strategies are evolving. In particular, advancements in artificial intelligence (AI) and machine learning (ML) have become powerful tools for implementing algorithmic trading and long\/short strategies. This course will take a closer look at how to generate long\/short signals using machine learning and deep &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35813\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:42:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:10:45+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\/35813\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35813\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks\",\"datePublished\":\"2024-11-01T09:42:51+00:00\",\"dateModified\":\"2024-11-01T11:10:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35813\/\"},\"wordCount\":615,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35813\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35813\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:42:51+00:00\",\"dateModified\":\"2024-11-01T11:10:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35813\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35813\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35813\/#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, Long Short Signal for Japanese Stocks\"}]},{\"@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, Long Short Signal for Japanese Stocks - \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\/35813\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Today, financial markets are becoming increasingly complex, and as a result, investment strategies are evolving. In particular, advancements in artificial intelligence (AI) and machine learning (ML) have become powerful tools for implementing algorithmic trading and long\/short strategies. This course will take a closer look at how to generate long\/short signals using machine learning and deep &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks\"","og_url":"https:\/\/atmokpo.com\/w\/35813\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:42:51+00:00","article_modified_time":"2024-11-01T11:10:45+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\/35813\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35813\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks","datePublished":"2024-11-01T09:42:51+00:00","dateModified":"2024-11-01T11:10:45+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35813\/"},"wordCount":615,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35813\/","url":"https:\/\/atmokpo.com\/w\/35813\/","name":"Machine Learning and Deep Learning Algorithm Trading, Long Short Signal for Japanese Stocks - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:42:51+00:00","dateModified":"2024-11-01T11:10:45+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35813\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35813\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35813\/#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, Long Short Signal for Japanese Stocks"}]},{"@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\/35813","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=35813"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35813\/revisions"}],"predecessor-version":[{"id":35814,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35813\/revisions\/35814"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35813"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35813"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35813"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}