{"id":35559,"date":"2024-11-01T09:40:11","date_gmt":"2024-11-01T09:40:11","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35559"},"modified":"2024-11-01T11:12:15","modified_gmt":"2024-11-01T11:12:15","slug":"machine-learning-and-deep-learning-algorithm-trading-momentum-indicator","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35559\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator"},"content":{"rendered":"<p><body><\/p>\n<p>\n    In recent years, trading strategies in financial markets have generally focused on algorithmic trading.<br \/>\n    At the core of this algorithmic trading are innovative technologies such as machine learning and deep learning.<br \/>\n    This article will discuss algorithmic trading utilizing machine learning and deep learning,<br \/>\n    focusing specifically on the implementation of momentum indicators.\n<\/p>\n<h2>1. Basic Concepts of Algorithmic Trading<\/h2>\n<p>\n    Algorithmic trading refers to a system that automatically executes trades based on predefined conditions.<br \/>\n    These systems include processes such as market data analysis, trade signal generation, and order execution.<br \/>\n    The advantages of algorithmic trading include consistency in trading, improved performance, and the elimination of emotional factors.\n<\/p>\n<h2>2. Basics of Machine Learning and Deep Learning<\/h2>\n<p>\n    Machine learning is a technique that learns patterns from given data to make predictions.<br \/>\n    It generally involves transforming data into features and building models based on these features to perform prediction or classification tasks.\n<\/p>\n<p>\n    Deep learning is a subfield of machine learning that uses artificial neural networks to learn more complex data structures.<br \/>\n    It demonstrates particularly strong performance in analyzing unstructured data such as images and text.\n<\/p>\n<h2>3. What are Momentum Indicators?<\/h2>\n<p>\n    Momentum indicators are technical indicators used to analyze the lasting trends in asset prices to predict future price movements.<br \/>\n    Momentum is based on the assumption that &#8220;price movements will continue&#8221; and is widely used to generate trade signals.\n<\/p>\n<p>\n    Representative momentum indicators include various forms such as the Relative Strength Index (RSI) and the Stochastic Oscillator.<br \/>\n    These indicators usually help to determine overbought or oversold conditions.\n<\/p>\n<h3>3.1. Relative Strength Index (RSI)<\/h3>\n<p>\n    RSI generates a value between 0 and 100 by comparing recent price increases and decreases.<br \/>\n    Generally, a value above 70 is considered overbought, while a value below 30 is considered oversold, thus providing trade signals.\n<\/p>\n<h3>3.2. Stochastic Oscillator<\/h3>\n<p>\n    The Stochastic Oscillator compares the current price to a specified price range over a period and expresses it as a percentage,<br \/>\n    resulting in a value between 0 and 100. Similarly, a value above 80 is interpreted as overbought, while a value below 20 is considered oversold.\n<\/p>\n<h2>4. Momentum Trading Strategies Using Machine Learning and Deep Learning<\/h2>\n<p>\n    There are various ways to construct momentum trading strategies using machine learning and deep learning.<br \/>\n    In this section, we will examine the process of developing trading strategies using these technologies step by step.\n<\/p>\n<h3>4.1. Data Collection<\/h3>\n<p>\n    To create a good algorithmic trading strategy, high-quality data is essential.<br \/>\n    Several providers are available for collecting financial data, and data can be obtained from sources such as Yahoo Finance, Alpha Vantage, and Quandl.\n<\/p>\n<pre><code>import pandas as pd\nimport yfinance as yf\n\n# Example of data collection: Daily data for S&amp;P 500 over the past 5 years\ndata = yf.download('^GSPC', start='2018-01-01', end='2023-01-01', interval='1d')\ndata.head()<\/code><\/pre>\n<h3>4.2. Data Preprocessing<\/h3>\n<p>\n    The collected data often contains missing values, outliers, and other unnecessary elements, so preprocessing is needed.<br \/>\n    This process includes handling missing values, adjusting for volatility, and calculating indicators.\n<\/p>\n<pre><code># Example of handling missing values\ndata.fillna(method='ffill', inplace=True)\n\n# Calculating momentum indicators (RSI example)\ndef compute_RSI(data, period=14):\n    delta = data['Close'].diff()\n    gain = (delta.where(delta &gt; 0, 0)).rolling(window=period).mean()\n    loss = (-delta.where(delta &lt; 0, 0)).rolling(window=period).mean()\n    RS = gain \/ loss\n    RSI = 100 - (100 \/ (1 + RS))\n    return RSI\n\ndata['RSI'] = compute_RSI(data)<\/code><\/pre>\n<h3>4.3. Feature Selection<\/h3>\n<p>\n    The next step is to select features to use for training machine learning models.<br \/>\n    In addition to momentum indicators, additional features such as moving averages, trading volumes, and volatility indicators can be included.\n<\/p>\n<h3>4.4. Model Selection<\/h3>\n<p>\n    Various models can be used in machine learning, including linear regression, decision trees, random forests, XGBoost, and even deep learning models.<br \/>\n    After understanding the strengths and weaknesses of each model, it is necessary to select a model that fits the objectives.\n<\/p>\n<pre><code>from sklearn.model_selection import train_test_split\nfrom sklearn.ensemble import RandomForestClassifier\n\n# Split training and testing data\nfeatures = data[['RSI', 'Volume']]\ntarget = (data['Close'].shift(-1) &gt; data['Close']).astype(int)  # Set the target as whether the price will rise the next day\nX_train, X_test, y_train, y_test = train_test_split(features, target, test_size=0.2, random_state=42)\n\n# Train the model\nmodel = RandomForestClassifier(n_estimators=100)\nmodel.fit(X_train, y_train)<\/code><\/pre>\n<h3>4.5. Performance Evaluation<\/h3>\n<p>\n    To evaluate the trained model&#8217;s performance, confusion matrices, precision, recall, and F1 scores are generally used.<br \/>\n    These metrics help verify the predictive power of the model and explore ways to improve the model.\n<\/p>\n<pre><code>from sklearn.metrics import classification_report\n\n# Predict and output report\ny_pred = model.predict(X_test)\nprint(classification_report(y_test, y_pred))<\/code><\/pre>\n<h3>4.6. Signal Generation for Trading<\/h3>\n<p>\n    After training the model, the next step is generating actual trading signals.<br \/>\n    Based on the model&#8217;s outputs, buy and sell signals are generated and used to implement the strategy.\n<\/p>\n<pre><code># Generating trading signals\ndata['Signal'] = model.predict(features)\ndata['Position'] = data['Signal'].shift()  # Shift timestamps\n<\/code><\/pre>\n<h2>5. Strategy Improvement and Optimization<\/h2>\n<p>\n    Algorithmic trading strategies are not static and need to be continuously improved and optimized.<br \/>\n    Therefore, tuning parameters, cross-validation, and ensemble methods are important to enhance the strategy&#8217;s performance.\n<\/p>\n<h3>5.1. Parameter Tuning<\/h3>\n<p>\n    The process of adjusting the hyperparameters of a model to maximize performance is called parameter tuning.<br \/>\n    Techniques such as Grid Search and Random Search are widely used.\n<\/p>\n<h3>5.2. Cross-Validation<\/h3>\n<p>\n    Cross-validation involves splitting the dataset into several subsets to evaluate the model,<br \/>\n    and through this evaluation, it maximizes the generalization performance of the model.\n<\/p>\n<h3>5.3. Ensemble Methods<\/h3>\n<p>\n    Ensemble methods, which combine predictions from multiple models to enhance performance, are particularly effective due to the uncertainty in financial markets.\n<\/p>\n<h2>6. Conclusion<\/h2>\n<p>\n    Algorithmic trading utilizing machine learning and deep learning can be a powerful tool for investors.<br \/>\n    In particular, strategies using momentum indicators have shown proven results, and<br \/>\n    there is potential for further advancement through continuous research and improvement.\n<\/p>\n<p>\n    In the future, the use of machine learning in algorithmic trading strategies is expected to be increasingly emphasized,<br \/>\n    and experience and learning in real-world investments will need to go hand in hand.\n<\/p>\n<p>\n    I hope this article has provided useful information for developing your investment strategies. Thank you.\n<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, trading strategies in financial markets have generally focused on algorithmic trading. At the core of this algorithmic trading are innovative technologies such as machine learning and deep learning. This article will discuss algorithmic trading utilizing machine learning and deep learning, focusing specifically on the implementation of momentum indicators. 1. Basic Concepts of &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35559\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator&#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-35559","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, Momentum Indicator - \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\/35559\/\" \/>\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, Momentum Indicator - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, trading strategies in financial markets have generally focused on algorithmic trading. At the core of this algorithmic trading are innovative technologies such as machine learning and deep learning. This article will discuss algorithmic trading utilizing machine learning and deep learning, focusing specifically on the implementation of momentum indicators. 1. Basic Concepts of &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35559\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:40:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:12:15+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\/35559\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35559\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator\",\"datePublished\":\"2024-11-01T09:40:11+00:00\",\"dateModified\":\"2024-11-01T11:12:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35559\/\"},\"wordCount\":784,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35559\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35559\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:40:11+00:00\",\"dateModified\":\"2024-11-01T11:12:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35559\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35559\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35559\/#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, Momentum Indicator\"}]},{\"@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, Momentum Indicator - \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\/35559\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, trading strategies in financial markets have generally focused on algorithmic trading. At the core of this algorithmic trading are innovative technologies such as machine learning and deep learning. This article will discuss algorithmic trading utilizing machine learning and deep learning, focusing specifically on the implementation of momentum indicators. 1. Basic Concepts of &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator\"","og_url":"https:\/\/atmokpo.com\/w\/35559\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:40:11+00:00","article_modified_time":"2024-11-01T11:12:15+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\/35559\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35559\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator","datePublished":"2024-11-01T09:40:11+00:00","dateModified":"2024-11-01T11:12:15+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35559\/"},"wordCount":784,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35559\/","url":"https:\/\/atmokpo.com\/w\/35559\/","name":"Machine Learning and Deep Learning Algorithm Trading, Momentum Indicator - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:40:11+00:00","dateModified":"2024-11-01T11:12:15+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35559\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35559\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35559\/#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, Momentum Indicator"}]},{"@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\/35559","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=35559"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35559\/revisions"}],"predecessor-version":[{"id":35560,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35559\/revisions\/35560"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35559"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35559"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35559"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}