{"id":37305,"date":"2024-11-01T09:56:31","date_gmt":"2024-11-01T09:56:31","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37305"},"modified":"2024-11-01T11:51:21","modified_gmt":"2024-11-01T11:51:21","slug":"automated-trading-development-in-python-pandas-dataframe","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37305\/","title":{"rendered":"Automated Trading Development in Python, pandas DataFrame"},"content":{"rendered":"<p><body><\/p>\n<p>\n        Recently, the development of automated trading systems using Python has been actively occurring.<br \/>\n        Among them, the pandas library for data analysis and processing is essential for many traders and developers.<br \/>\n        This article will explain in detail how to utilize pandas DataFrame for efficient data analysis and strategy development in the process of developing automated trading with Python.\n    <\/p>\n<h2>1. Understanding Automated Trading Systems<\/h2>\n<p>\n        An Automated Trading System (ATS) is a system that automatically executes trades according to set algorithms.<br \/>\n        Such systems are used as part of algorithmic trading and have the advantage of making fast and accurate trading decisions.<br \/>\n        The basic components of an automated trading system are as follows:\n    <\/p>\n<ul>\n<li>Data Collection: The process of collecting market data (prices, volumes, etc.)<\/li>\n<li>Strategy Development: The process of analyzing collected data to establish trading strategies<\/li>\n<li>Trade Execution: The process of automatically executing trades according to developed strategies<\/li>\n<li>Performance Analysis: The process of analyzing trading results to verify the validity of the strategies<\/li>\n<\/ul>\n<h2>2. Introduction to pandas Library<\/h2>\n<p>\n        Pandas is a powerful library for data analysis in Python.<br \/>\n        It is particularly effective for handling structured data (tabular data) and is especially useful for time series data and statistical data analysis.<br \/>\n        The core data structure of pandas, the DataFrame, has a two-dimensional table format that allows for easy manipulation and analysis of data in rows and columns.\n    <\/p>\n<h3>2.1 Creating a DataFrame<\/h3>\n<p>\n        DataFrames can be created in various ways. The most common method is to use dictionaries and lists.<br \/>\n        Here\u2019s a simple example to show how to create a DataFrame.\n    <\/p>\n<pre>\n        <code>\nimport pandas as pd\n\n# Prepare data\ndata = {\n    'Date': ['2023-01-01', '2023-01-02', '2023-01-03'],\n    'Close': [1000, 1010, 1020],\n    'Volume': [150, 200, 250]\n}\n\n# Create DataFrame\ndf = pd.DataFrame(data)\n# Convert date column to datetime format\ndf['Date'] = pd.to_datetime(df['Date'])\nprint(df)\n        <\/code>\n    <\/pre>\n<p>\n        When you run the code above, a DataFrame will be created as follows:\n    <\/p>\n<pre>\n        <code>\n        Date                Close    Volume\n        0 2023-01-01  1000    150\n        1 2023-01-02  1010    200\n        2 2023-01-03  1020    250\n        <\/code>\n    <\/pre>\n<h3>2.2 Basic Operations on DataFrame<\/h3>\n<p>\n        Let&#8217;s perform some basic operations on the created DataFrame.<br \/>\n        Pandas offers various functions for filtering, sorting, grouping, etc.\n    <\/p>\n<h4>Filtering<\/h4>\n<p>\n        We can filter data that meets specific criteria. For example, let&#8217;s output only the data where the closing price is 1010 or higher.\n    <\/p>\n<pre>\n        <code>\nfiltered_df = df[df['Close'] >= 1010]\nprint(filtered_df)\n        <\/code>\n    <\/pre>\n<p>\n        The result will be as follows:\n    <\/p>\n<pre>\n        <code>\n        Date                Close    Volume\n        1 2023-01-02  1010    200\n        2 2023-01-03  1020    250\n        <\/code>\n    <\/pre>\n<h4>Sorting<\/h4>\n<p>\n        Data can also be sorted based on a specific column. Let&#8217;s sort it in descending order based on the closing price.\n    <\/p>\n<pre>\n        <code>\nsorted_df = df.sort_values(by='Close', ascending=False)\nprint(sorted_df)\n        <\/code>\n    <\/pre>\n<p>\n        The result is as follows:\n    <\/p>\n<pre>\n        <code>\n        Date                Close    Volume\n        2 2023-01-03  1020    250\n        1 2023-01-02  1010    200\n        0 2023-01-01  1000    150\n        <\/code>\n    <\/pre>\n<h4>Grouping<\/h4>\n<p>\n        Grouping data is useful when statistical analysis is needed. Let&#8217;s calculate the sum of the volumes.\n    <\/p>\n<pre>\n        <code>\ngrouped_df = df.groupby('Date')['Volume'].sum().reset_index()\nprint(grouped_df)\n        <\/code>\n    <\/pre>\n<p>\n        The output result is as follows:\n    <\/p>\n<pre>\n        <code>\n        Date                Volume\n        0 2023-01-01  150\n        1 2023-01-02  200\n        2 2023-01-03  250\n        <\/code>\n    <\/pre>\n<h2>3. Developing Automated Trading Strategies<\/h2>\n<p>\n        Now, let&#8217;s actively develop automated trading strategies using pandas.<br \/>\n        I will explain the moving average strategy as one of the basic trading strategies.<br \/>\n        The moving average is used to determine price trends by calculating the average price over a specific period.\n    <\/p>\n<h3>3.1 Calculating Moving Averages<\/h3>\n<p>\n        To calculate the moving average, we use pandas&#8217; rolling function.<br \/>\n        We will calculate the short-term and long-term moving averages and generate trading signals based on their crossover.\n    <\/p>\n<pre>\n        <code>\n# Calculate short-term (5 days) and long-term (20 days) moving averages\ndf['Short Moving Average'] = df['Close'].rolling(window=5).mean()\ndf['Long Moving Average'] = df['Close'].rolling(window=20).mean()\nprint(df)\n        <\/code>\n    <\/pre>\n<p>\n        The DataFrame generated by this code will have columns for short and long moving averages added.\n    <\/p>\n<h3>3.2 Generating Trading Signals<\/h3>\n<p>\n        The method for generating trading signals based on the moving averages is as follows.<br \/>\n        When the short moving average crosses above the long moving average, we will set it as a buy signal, and when it crosses below, a sell signal.\n    <\/p>\n<pre>\n        <code>\ndef signal_generator(df):\n    if df['Short Moving Average'][-1] > df['Long Moving Average'][-1]:\n        return \"BUY\"\n    elif df['Short Moving Average'][-1] < df['Long Moving Average'][-1]:\n        return \"SELL\"\n    else:\n        return \"HOLD\"\n\n# Generate trading signals for example data\nsignal = signal_generator(df)\nprint(\"Trading Signal:\", signal)\n        <\/code>\n    <\/pre>\n<p>\n        When you run the code above, it will output the trading signal.<br \/>\n        You can add logic to execute trades based on the signal.\n    <\/p>\n<h2>4. Performance Analysis and Backtesting<\/h2>\n<p>\n        To analyze the performance of automated trading strategies, backtesting must be performed.<br \/>\n        This process allows for verifying the effectiveness of the strategy and estimating performance in real trading.<br \/>\n        Backtesting refers to the process of testing a strategy based on given historical data.\n    <\/p>\n<h3>4.1 Implementing Backtesting<\/h3>\n<p>\n        Let\u2019s implement a simple backtesting logic.<br \/>\n        The basic logic is to buy stocks when a buy signal occurs and sell stocks when a sell signal occurs.\n    <\/p>\n<pre>\n        <code>\ninitial_balance = 10000  # Initial capital\nbalance = initial_balance\nposition = 0  # Number of shares held\n\nfor index, row in df.iterrows():\n    if signal_generator(df.iloc[:index+1]) == \"BUY\":\n        position += balance \/\/ row['Close']  # Buy as much as possible\n        balance -= position * row['Close']\n    elif signal_generator(df.iloc[:index+1]) == \"SELL\" and position > 0:\n        balance += position * row['Close']  # Sell all held shares\n        position = 0\n        \nfinal_balance = balance + (position * df['Close'].iloc[-1])  # Final assets\nprint(\"Final Assets:\", final_balance)\n        <\/code>\n    <\/pre>\n<p>\n        This code allows you to calculate the final assets and evaluate the performance of the strategy by comparing it with the initial capital.\n    <\/p>\n<h2>5. Conclusion<\/h2>\n<p>\n        Utilizing pandas DataFrame for data analysis is very important in automated trading development.<br \/>\n        This article discussed the basic usage of pandas and the process of developing an automated trading strategy based on moving averages.<br \/>\n        By effectively performing data manipulation and analysis using pandas, you can build a more advanced automated trading system.<br \/>\n        Additionally, such systems will greatly assist in improving existing trading strategies or developing new ones.<br \/>\n        I hope to build even more sophisticated automated trading systems through further research on in-depth financial data analysis and automated strategy development.\n    <\/p>\n<p>Author: [Your Name]<\/p>\n<p>Date: [Date of Writing]<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently, the development of automated trading systems using Python has been actively occurring. Among them, the pandas library for data analysis and processing is essential for many traders and developers. This article will explain in detail how to utilize pandas DataFrame for efficient data analysis and strategy development in the process of developing automated trading &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37305\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automated Trading Development in Python, pandas DataFrame&#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":[147],"tags":[],"class_list":["post-37305","post","type-post","status-publish","format-standard","hentry","category-python-auto-trading"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Automated Trading Development in Python, pandas DataFrame - \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\/37305\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automated Trading Development in Python, pandas DataFrame - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Recently, the development of automated trading systems using Python has been actively occurring. Among them, the pandas library for data analysis and processing is essential for many traders and developers. This article will explain in detail how to utilize pandas DataFrame for efficient data analysis and strategy development in the process of developing automated trading &hellip; \ub354 \ubcf4\uae30 &quot;Automated Trading Development in Python, pandas DataFrame&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37305\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:56:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:51:21+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\/37305\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37305\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automated Trading Development in Python, pandas DataFrame\",\"datePublished\":\"2024-11-01T09:56:31+00:00\",\"dateModified\":\"2024-11-01T11:51:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37305\/\"},\"wordCount\":731,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Python Auto Trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37305\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37305\/\",\"name\":\"Automated Trading Development in Python, pandas DataFrame - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:56:31+00:00\",\"dateModified\":\"2024-11-01T11:51:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37305\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37305\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37305\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automated Trading Development in Python, pandas DataFrame\"}]},{\"@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":"Automated Trading Development in Python, pandas DataFrame - \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\/37305\/","og_locale":"ko_KR","og_type":"article","og_title":"Automated Trading Development in Python, pandas DataFrame - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Recently, the development of automated trading systems using Python has been actively occurring. Among them, the pandas library for data analysis and processing is essential for many traders and developers. This article will explain in detail how to utilize pandas DataFrame for efficient data analysis and strategy development in the process of developing automated trading &hellip; \ub354 \ubcf4\uae30 \"Automated Trading Development in Python, pandas DataFrame\"","og_url":"https:\/\/atmokpo.com\/w\/37305\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:56:31+00:00","article_modified_time":"2024-11-01T11:51:21+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\/37305\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37305\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automated Trading Development in Python, pandas DataFrame","datePublished":"2024-11-01T09:56:31+00:00","dateModified":"2024-11-01T11:51:21+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37305\/"},"wordCount":731,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Python Auto Trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37305\/","url":"https:\/\/atmokpo.com\/w\/37305\/","name":"Automated Trading Development in Python, pandas DataFrame - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:56:31+00:00","dateModified":"2024-11-01T11:51:21+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37305\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37305\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37305\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automated Trading Development in Python, pandas DataFrame"}]},{"@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\/37305","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=37305"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37305\/revisions"}],"predecessor-version":[{"id":37306,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37305\/revisions\/37306"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37305"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37305"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37305"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}