{"id":35983,"date":"2024-11-01T09:44:28","date_gmt":"2024-11-01T09:44:28","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35983"},"modified":"2024-11-01T11:09:37","modified_gmt":"2024-11-01T11:09:37","slug":"machine-learning-and-deep-learning-algorithm-trading-dynamic-programming-using-python","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35983\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python"},"content":{"rendered":"<p><body><\/p>\n<p>In recent years, with the increase in volatility in the financial markets and the amount of data available, quantitative trading has emerged. This course will lay the foundation of algorithmic trading based on machine learning and deep learning algorithms and will cover dynamic planning for implementing it through Python.<\/p>\n<h2>1. Concept of Algorithmic Trading<\/h2>\n<p>Algorithmic trading is an automated method of executing trades in financial markets, which includes quantitative trading techniques based on algorithms. Algorithmic trading makes trading decisions based on rules, thus eliminating emotional factors. Here, machine learning and deep learning algorithms play a crucial role.<\/p>\n<h3>1.1 Role of Machine Learning and Deep Learning<\/h3>\n<p>Machine learning is a technology that learns patterns and makes predictions based on data. Deep learning, a subset of machine learning, uses artificial neural networks to analyze data more deeply. This plays a vital role in processing complex financial data and capturing trading opportunities.<\/p>\n<h2>2. Algorithmic Trading Using Python<\/h2>\n<p>Python is widely used for data analysis and algorithmic trading due to its powerful libraries and intuitive syntax. In this section, we will set up a basic environment for algorithmic trading using Python.<\/p>\n<h3>2.1 Installing Required Libraries<\/h3>\n<pre><code>pip install numpy pandas matplotlib scikit-learn tensorflow keras<\/code><\/pre>\n<p>By installing the libraries above, you can have an environment for data analysis, machine learning model training, and data visualization.<\/p>\n<h3>2.2 Data Collection<\/h3>\n<p>To perform algorithmic trading, market data needs to be collected. You can obtain data such as stocks, exchange rates, and cryptocurrencies through APIs like Yahoo Finance, Alpha Vantage, and Quandl.<\/p>\n<h4>Example: Data Collection via Yahoo Finance<\/h4>\n<pre><code>import yfinance as yf\n\n# Collecting data for Apple stock\ndata = yf.download('AAPL', start='2020-01-01', end='2023-01-01')\nprint(data.head())<\/code><\/pre>\n<h2>3. Data Preprocessing<\/h2>\n<p>The collected data needs preprocessing before being input into machine learning models. Tasks such as handling missing values, normalization, and feature engineering can improve data quality and enhance model performance.<\/p>\n<h3>3.1 Handling Missing Values<\/h3>\n<pre><code>data.fillna(method='ffill', inplace=True)<\/code><\/pre>\n<p>The above code fills missing values with the previous value.<\/p>\n<h3>3.2 Data Normalization<\/h3>\n<p>Normalizing data inputted into the model can increase training speed and improve performance. Min-Max scaling or Z-score scaling can be used.<\/p>\n<pre><code>from sklearn.preprocessing import MinMaxScaler\n\nscaler = MinMaxScaler()\nscaled_data = scaler.fit_transform(data[['Close']])<\/code><\/pre>\n<h2>4. Selecting a Machine Learning Model<\/h2>\n<p>Now, based on the preprocessed data, we need to select and train a machine learning model. Commonly used algorithms include regression analysis, decision trees, random forests, SVM, and LSTM.<\/p>\n<h3>4.1 Regression Models for Prediction<\/h3>\n<pre><code>from sklearn.model_selection import train_test_split\nfrom sklearn.linear_model import LinearRegression\n\nX = scaled_data[:-1]\ny = scaled_data[1:]\n\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\nmodel = LinearRegression()\nmodel.fit(X_train, y_train)<\/code><\/pre>\n<h2>5. Applying Deep Learning Models<\/h2>\n<p>When using deep learning, an LSTM (Long Short Term Memory) network can be structured. LSTM is a particularly powerful model for time series data prediction and is widely used for stock price forecasting.<\/p>\n<h3>5.1 Structuring an LSTM Model<\/h3>\n<pre><code>import numpy as np\nfrom keras.models import Sequential\nfrom keras.layers import LSTM, Dense\n\n# Preparing data\nX, y = [], []\nfor i in range(60, len(scaled_data)):\n    X.append(scaled_data[i-60:i, 0])\n    y.append(scaled_data[i, 0])\n\nX, y = np.array(X), np.array(y)\n\nX = np.reshape(X, (X.shape[0], X.shape[1], 1))\n\n# Defining the model\nmodel = Sequential()\nmodel.add(LSTM(units=50, return_sequences=True, input_shape=(X.shape[1], 1)))\nmodel.add(LSTM(units=50))\nmodel.add(Dense(units=1))\n\n# Compiling the model\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n\n# Training the model\nmodel.fit(X, y, epochs=50, batch_size=32)<\/code><\/pre>\n<h2>6. Performance Evaluation<\/h2>\n<p>After training the model, its performance must be evaluated to determine whether it can be used as a real trading strategy. Metrics like MSE (Mean Squared Error) and MAE (Mean Absolute Error) are used to assess performance.<\/p>\n<h3>6.1 Performance Comparison<\/h3>\n<pre><code>from sklearn.metrics import mean_squared_error\n\npredictions = model.predict(X_test)\nmse = mean_squared_error(y_test, predictions)\nprint(f'Mean Squared Error: {mse}') <\/code><\/pre>\n<h2>7. Optimization through Dynamic Programming<\/h2>\n<p>Dynamic Programming (DP) is a technique for solving complex problems by breaking them down into simpler subproblems. In algorithmic trading, dynamic programming can be used to optimize trading strategies.<\/p>\n<h3>7.1 Basics of Dynamic Programming<\/h3>\n<p>Using dynamic programming, you can establish trading strategies for maximum profit while considering the timing of stock purchases and sales. States and decisions must be defined, and this can be done using price data of the assets and the number of shares held at that point in time.<\/p>\n<h3>7.2 Defining the Value Function<\/h3>\n<p>The value function represents the maximum reward for a given state. This function can be learned through reinforcement learning techniques such as Q-learning.<\/p>\n<h3>7.3 Example: Q-Learning<\/h3>\n<pre><code>import numpy as np\n\ndef initialize_q_table(states, actions):\n    return np.zeros((states, actions))\n\ndef update_q_value(q_table, state, action, reward, next_state, alpha, gamma):\n    best_next_action = np.argmax(q_table[next_state])\n    td_target = reward + gamma * q_table[next_state][best_next_action]\n    q_table[state][action] += alpha * (td_target - q_table[state][action])\n<\/code><\/pre>\n<h2>8. Real-World Applications<\/h2>\n<p>We will look at real-world cases where algorithmic trading has been implemented. Analyzing various approaches and models that have achieved results will help you refine your own algorithmic trading strategies.<\/p>\n<h3>8.1 Case Study: The 2008 Financial Crisis<\/h3>\n<p>Analyzing the 2008 financial crisis case, we can evaluate a predictive model based on the data from that time. We will explain how the application of machine learning models helped to prepare for unexpected situations.<\/p>\n<h3>8.2 Research and Performance of Algorithmic Trading Firms<\/h3>\n<p>Many algorithmic trading firms are successfully utilizing data analysis and machine learning. We will explore their approaches and the models used, sharing what can be learned from them.<\/p>\n<h2>9. Conclusion<\/h2>\n<p>Algorithmic trading leveraging machine learning and deep learning algorithms will show more potential in the future. With various libraries available for use with Python and dynamic programming, better investment decisions can be made. We hope you develop successful strategies in algorithmic trading through continuous research and experimentation.<\/p>\n<h2>10. References<\/h2>\n<ul>\n<li>API documentation related to stock market data collection<\/li>\n<li>Books on machine learning and deep learning<\/li>\n<li>Official documentation of Python libraries<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, with the increase in volatility in the financial markets and the amount of data available, quantitative trading has emerged. This course will lay the foundation of algorithmic trading based on machine learning and deep learning algorithms and will cover dynamic planning for implementing it through Python. 1. Concept of Algorithmic Trading Algorithmic &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35983\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python&#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-35983","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, Dynamic Programming Using Python - \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\/35983\/\" \/>\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, Dynamic Programming Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, with the increase in volatility in the financial markets and the amount of data available, quantitative trading has emerged. This course will lay the foundation of algorithmic trading based on machine learning and deep learning algorithms and will cover dynamic planning for implementing it through Python. 1. Concept of Algorithmic Trading Algorithmic &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35983\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:44:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:37+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\/35983\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35983\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python\",\"datePublished\":\"2024-11-01T09:44:28+00:00\",\"dateModified\":\"2024-11-01T11:09:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35983\/\"},\"wordCount\":733,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35983\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35983\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:44:28+00:00\",\"dateModified\":\"2024-11-01T11:09:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35983\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35983\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35983\/#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, Dynamic Programming Using Python\"}]},{\"@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, Dynamic Programming Using Python - \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\/35983\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, with the increase in volatility in the financial markets and the amount of data available, quantitative trading has emerged. This course will lay the foundation of algorithmic trading based on machine learning and deep learning algorithms and will cover dynamic planning for implementing it through Python. 1. Concept of Algorithmic Trading Algorithmic &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python\"","og_url":"https:\/\/atmokpo.com\/w\/35983\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:44:28+00:00","article_modified_time":"2024-11-01T11:09:37+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\/35983\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35983\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python","datePublished":"2024-11-01T09:44:28+00:00","dateModified":"2024-11-01T11:09:37+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35983\/"},"wordCount":733,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35983\/","url":"https:\/\/atmokpo.com\/w\/35983\/","name":"Machine Learning and Deep Learning Algorithm Trading, Dynamic Programming Using Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:44:28+00:00","dateModified":"2024-11-01T11:09:37+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35983\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35983\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35983\/#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, Dynamic Programming Using Python"}]},{"@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\/35983","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=35983"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35983\/revisions"}],"predecessor-version":[{"id":35984,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35983\/revisions\/35984"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35983"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35983"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}