{"id":35995,"date":"2024-11-01T09:44:38","date_gmt":"2024-11-01T09:44:38","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35995"},"modified":"2024-11-01T11:09:34","modified_gmt":"2024-11-01T11:09:34","slug":"machine-learning-and-deep-learning-algorithm-trading-efficient-data-storage-using-pandas","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35995\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas"},"content":{"rendered":"<p><body><\/p>\n<h2>Introduction<\/h2>\n<p>In today&#8217;s financial markets, algorithmic trading has become an essential component. In particular, trading strategies using machine learning and deep learning techniques enhance the accuracy of data analysis and enable better investment decisions. In this course, we will explore the overview of algorithmic trading through machine learning and deep learning, as well as how to efficiently store and manage data using Python&#8217;s pandas.<\/p>\n<h2>1. Basics of Algorithmic Trading<\/h2>\n<p>Algorithmic trading is a method of automatically executing trades based on predefined rules. This includes various data analysis techniques and automation tools, and can be utilized across various asset classes such as stocks, futures, options, and foreign exchange. The advantage of algorithmic trading is that it eliminates human emotions and executes trades quickly and accurately.<\/p>\n<h3>1.1 History of Algorithmic Trading<\/h3>\n<p>Algorithmic trading began in the late 1970s. Initially, it was a simple rule-based system, but with the advancement of the internet in the 1990s, high-frequency trading (HFT) emerged, leading to the development of various techniques.<\/p>\n<h2>2. Understanding Machine Learning and Deep Learning<\/h2>\n<p>Machine learning is a technology that allows computers to learn and make predictions automatically without explicit programming. Deep learning is a subfield of machine learning that uses artificial neural networks to analyze data more deeply. These two technologies can be used in the financial markets for the following purposes.<\/p>\n<h3>2.1 Machine Learning Techniques<\/h3>\n<p>The following algorithms are primarily used in machine learning:<\/p>\n<ul>\n<li>Linear Regression<\/li>\n<li>Decision Tree<\/li>\n<li>Random Forest<\/li>\n<li>Support Vector Machine (SVM)<\/li>\n<li>Neural Network<\/li>\n<\/ul>\n<h3>2.2 Deep Learning Techniques<\/h3>\n<p>The following structures are used in deep learning for complex pattern recognition:<\/p>\n<ul>\n<li>Multi-layer Perceptron (MLP)<\/li>\n<li>Convolutional Neural Network (CNN)<\/li>\n<li>Recurrent Neural Network (RNN)<\/li>\n<li>Long Short-Term Memory (LSTM)<\/li>\n<\/ul>\n<h2>3. Data Collection and Storage<\/h2>\n<p>Data is crucial in algorithmic trading. Collecting and efficiently storing data greatly impacts the model&#8217;s performance.<\/p>\n<h3>3.1 Methods of Data Collection<\/h3>\n<p>There are various methods to collect financial data. For example, real-time data can be collected through APIs, or historical data can be gathered using web scraping. Purchasing from data providers is also an option.<\/p>\n<h3>3.2 Data Storage Using Pandas<\/h3>\n<p>Pandas is a powerful library in Python for data analysis. It allows easy manipulation and analysis of data using DataFrame objects.<\/p>\n<h4>3.2.1 Saving CSV Files Using Pandas<\/h4>\n<pre><code># Example Code\nimport pandas as pd\n\ndata = {\n    'Date': ['2021-01-01', '2021-01-02', '2021-01-03'],\n    'Close': [100, 101, 102]\n}\n\ndf = pd.DataFrame(data)\ndf.to_csv('stock_data.csv', index=False)\n<\/code><\/pre>\n<h4>3.2.2 Saving Data Through a Database<\/h4>\n<p>Pandas can easily connect to SQL databases. Below is an example using SQLite.<\/p>\n<pre><code># Example Code\nimport sqlite3\n\n# Connecting to SQLite database\nconn = sqlite3.connect('stock_data.db')\n\n# Saving Pandas DataFrame to SQL table\ndf.to_sql('stock_prices', conn, if_exists='replace', index=False)\n<\/code><\/pre>\n<h2>4. Building a Machine Learning Model<\/h2>\n<p>After preparing the data for analysis, it&#8217;s time to build the machine learning model. This will help predict the future movements of stock prices.<\/p>\n<h3>4.1 Data Preprocessing<\/h3>\n<p>Before entering data into the model, preprocessing is necessary. This includes handling missing values, normalizing data, and selecting features.<\/p>\n<h4>4.1.1 Handling Missing Values<\/h4>\n<pre><code># Example Code\ndf.fillna(method='ffill', inplace=True)  # Fill missing values with the previous value\n<\/code><\/pre>\n<h4>4.1.2 Data Normalization<\/h4>\n<pre><code># Example Code\nfrom sklearn.preprocessing import MinMaxScaler\n\nscaler = MinMaxScaler()\ndf['Normalized Close'] = scaler.fit_transform(df[['Close']])\n<\/code><\/pre>\n<h3>4.2 Training the Machine Learning Model<\/h3>\n<p>Once the data is prepared, the model can be trained. Below is an example using the Random Forest algorithm.<\/p>\n<pre><code># Example Code\nfrom sklearn.ensemble import RandomForestRegressor\nfrom sklearn.model_selection import train_test_split\n\nX = df[['Feature1', 'Feature2']]  # Features to use\ny = df['Close']  # Target variable\n\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\nmodel = RandomForestRegressor()\nmodel.fit(X_train, y_train)\n<\/code><\/pre>\n<h2>5. Building a Deep Learning Model<\/h2>\n<p>Deep learning models are powerful tools capable of recognizing more complex patterns. You can create a simple neural network structure using the Keras library.<\/p>\n<h3>5.1 Configuring the Keras Model<\/h3>\n<pre><code># Example Code\nfrom keras.models import Sequential\nfrom keras.layers import Dense\n\nmodel = Sequential()\nmodel.add(Dense(64, activation='relu', input_shape=(X_train.shape[1],)))\nmodel.add(Dense(32, activation='relu'))\nmodel.add(Dense(1))  # Output layer\n\nmodel.compile(optimizer='adam', loss='mean_squared_error')\nmodel.fit(X_train, y_train, epochs=50, batch_size=10)\n<\/code><\/pre>\n<h2>6. Evaluating Results and Visualization<\/h2>\n<p>After the model is trained, performance evaluation and visualization are conducted to analyze the prediction results.<\/p>\n<h3>6.1 Performance Evaluation<\/h3>\n<pre><code># Example Code\nfrom sklearn.metrics import mean_squared_error\n\ny_pred = model.predict(X_test)\nmse = mean_squared_error(y_test, y_pred)\nprint(f'Mean Squared Error: {mse}')\n<\/code><\/pre>\n<h3>6.2 Visualization<\/h3>\n<p>Using Matplotlib, we visualize the prediction results.<\/p>\n<pre><code># Example Code\nimport matplotlib.pyplot as plt\n\nplt.plot(y_test.values, label='Actual')\nplt.plot(y_pred, label='Predicted')\nplt.legend()\nplt.show()\n<\/code><\/pre>\n<h2>7. Conclusion and Future Tasks<\/h2>\n<p>This course provided an introduction to the basic concepts of algorithmic trading using machine learning and deep learning, as well as data storage methods. Future research may involve extending this to other asset classes or applying ensemble techniques to improve the model.<\/p>\n<h2>References<\/h2>\n<ul>\n<li>Friedman, M. (1956). &#8220;The Quantity Theory of Money &#8211; A Restatement&#8221;.<\/li>\n<li>Schleifer, J. (2017). &#8220;Algorithmic Trading: Winning Strategies and Their Rationale&#8221;.<\/li>\n<li>Jang, E. (2020). &#8220;Deep Learning for Finance: A Python-Based Guide&#8221;.<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In today&#8217;s financial markets, algorithmic trading has become an essential component. In particular, trading strategies using machine learning and deep learning techniques enhance the accuracy of data analysis and enable better investment decisions. In this course, we will explore the overview of algorithmic trading through machine learning and deep learning, as well as how &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35995\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas&#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-35995","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, Efficient Data Storage Using Pandas - \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\/35995\/\" \/>\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, Efficient Data Storage Using Pandas - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Introduction In today&#8217;s financial markets, algorithmic trading has become an essential component. In particular, trading strategies using machine learning and deep learning techniques enhance the accuracy of data analysis and enable better investment decisions. In this course, we will explore the overview of algorithmic trading through machine learning and deep learning, as well as how &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35995\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:44:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:34+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\/35995\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35995\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas\",\"datePublished\":\"2024-11-01T09:44:38+00:00\",\"dateModified\":\"2024-11-01T11:09:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35995\/\"},\"wordCount\":610,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35995\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35995\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:44:38+00:00\",\"dateModified\":\"2024-11-01T11:09:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35995\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35995\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35995\/#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, Efficient Data Storage Using Pandas\"}]},{\"@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, Efficient Data Storage Using Pandas - \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\/35995\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Introduction In today&#8217;s financial markets, algorithmic trading has become an essential component. In particular, trading strategies using machine learning and deep learning techniques enhance the accuracy of data analysis and enable better investment decisions. In this course, we will explore the overview of algorithmic trading through machine learning and deep learning, as well as how &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas\"","og_url":"https:\/\/atmokpo.com\/w\/35995\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:44:38+00:00","article_modified_time":"2024-11-01T11:09:34+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\/35995\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35995\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas","datePublished":"2024-11-01T09:44:38+00:00","dateModified":"2024-11-01T11:09:34+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35995\/"},"wordCount":610,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35995\/","url":"https:\/\/atmokpo.com\/w\/35995\/","name":"Machine Learning and Deep Learning Algorithm Trading, Efficient Data Storage Using Pandas - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:44:38+00:00","dateModified":"2024-11-01T11:09:34+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35995\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35995\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35995\/#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, Efficient Data Storage Using Pandas"}]},{"@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\/35995","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=35995"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35995\/revisions"}],"predecessor-version":[{"id":35996,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35995\/revisions\/35996"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35995"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35995"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35995"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}