{"id":37319,"date":"2024-11-01T09:56:38","date_gmt":"2024-11-01T09:56:38","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37319"},"modified":"2024-11-01T11:51:18","modified_gmt":"2024-11-01T11:51:18","slug":"automated-trading-development-in-python-pyqt-qcheckbox","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37319\/","title":{"rendered":"Automated Trading Development in Python, PyQt QCheckBox"},"content":{"rendered":"<p><body><\/p>\n<p>\n        The demand for automated trading systems that can automatically execute asset trading is increasing day by day in the modern financial market. This article will cover the basics of developing an automated trading system using Python, as well as ways to improve the user interface using PyQt&#8217;s QCheckBox. Through this, users will understand the basic structure of an automated trading system and be able to develop a simple application they can use directly.\n    <\/p>\n<h2>1. What is an Automated Trading System?<\/h2>\n<p>\n        An automated trading system refers to a program that executes trades based on pre-set rules. Generally, this system analyzes past data to identify trading signals and proceeds with trades automatically without user intervention. Such systems can quickly respond to market fluctuations and have significant advantages in eliminating human emotional factors.\n    <\/p>\n<h3>1.1 Components of an Automated Trading System<\/h3>\n<p>\n        An automated trading system consists of the following components:\n    <\/p>\n<ul>\n<li><strong>Data Collection:<\/strong> Collects price data in real-time.<\/li>\n<li><strong>Strategy Development:<\/strong> Establishes trading strategies and codes them.<\/li>\n<li><strong>Signal Generation:<\/strong> Generates trading signals (buy, sell, etc.).<\/li>\n<li><strong>Order Execution:<\/strong> Executes trading orders based on signals.<\/li>\n<li><strong>Performance Evaluation:<\/strong> Analyzes trading performance and adjusts strategies.<\/li>\n<\/ul>\n<h2>2. What is PyQt?<\/h2>\n<p>\n        PyQt is a Qt library for Python that facilitates the easy development of GUI applications. PyQt provides various widgets to create applications that users can interact with visually. QCheckBox provides a checkbox that users can select and is useful for enabling simple settings or options.\n    <\/p>\n<h2>3. Example of Using PyQt QCheckBox<\/h2>\n<p>\n        In this section, we will implement a settings screen for an automated trading system using PyQt&#8217;s QCheckBox. Users can select specific trading strategies or enable or disable additional options.\n    <\/p>\n<h3>3.1 Basic Structure of a PyQt Application<\/h3>\n<p>\n        When developing an application with PyQt, the structure generally involves creating a QApplication object, setting up the main window, and then running the event loop. Below is an example of a simple PyQt application structure:\n    <\/p>\n<pre><code class=\"python\">\nfrom PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QCheckBox, QPushButton\n\nclass MyApp(QWidget):\n    def __init__(self):\n        super().__init__()\n\n        self.initUI()\n\n    def initUI(self):\n        layout = QVBoxLayout()\n\n        # Add checkboxes\n        self.checkBox1 = QCheckBox(\"Select Strategy A\", self)\n        self.checkBox2 = QCheckBox(\"Select Strategy B\", self)\n\n        layout.addWidget(self.checkBox1)\n        layout.addWidget(self.checkBox2)\n\n        # Add confirmation button\n        self.btn = QPushButton(\"Confirm\", self)\n        self.btn.clicked.connect(self.onClick)\n\n        layout.addWidget(self.btn)\n\n        self.setLayout(layout)\n        self.setWindowTitle(\"Automated Trading System Settings\")\n        self.show()\n\n    def onClick(self):\n        if self.checkBox1.isChecked():\n            print(\"Strategy A has been selected.\")\n        if self.checkBox2.isChecked():\n            print(\"Strategy B has been selected.\")\n\nif __name__ == '__main__':\n    import sys\n    app = QApplication(sys.argv)\n    ex = MyApp()\n    sys.exit(app.exec_())\n    <\/code><\/pre>\n<h3>3.2 Running the Application<\/h3>\n<p>\n        If you save the above code as a Python file and run it, a basic PyQt application with two checkboxes and a confirmation button will be created. When users select the checkboxes and press the confirm button, messages indicating the selected strategies will be printed.\n    <\/p>\n<h3>3.3 Receiving Settings with QCheckBox<\/h3>\n<p>\n        When developing an automated trading system, it is important to allow users to easily set their preferred strategies or trading conditions. By utilizing QCheckBox, users can simply select their desired conditions. For example, checkboxes can be added to select technical indicators such as MACD and RSI, allowing users to modify how the system operates according to their desired strategies.\n    <\/p>\n<pre><code class=\"python\">\nclass MyApp(QWidget):\n    def __init__(self):\n        super().__init__()\n\n        self.initUI()\n\n    def initUI(self):\n        layout = QVBoxLayout()\n\n        # Add checkboxes\n        self.macdCheckBox = QCheckBox(\"Use MACD\", self)\n        self.rsiCheckBox = QCheckBox(\"Use RSI\", self)\n\n        layout.addWidget(self.macdCheckBox)\n        layout.addWidget(self.rsiCheckBox)\n\n        # Add start button\n        self.startBtn = QPushButton(\"Start Automated Trading\", self)\n        self.startBtn.clicked.connect(self.startTrading)\n\n        layout.addWidget(self.startBtn)\n\n        self.setLayout(layout)\n        self.setWindowTitle(\"Automated Trading System Settings\")\n        self.show()\n\n    def startTrading(self):\n        print(\"Starting automated trading.\")\n        if self.macdCheckBox.isChecked():\n            print(\"MACD strategy has been activated.\")\n        if self.rsiCheckBox.isChecked():\n            print(\"RSI strategy has been activated.\")\n        \n        # Call additional automated trading logic\n        self.runAutomatedTrading()\n\n    def runAutomatedTrading(self):\n        # Implement actual automated trading logic\n        pass\n    <\/code><\/pre>\n<h3>3.4 Saving User Settings<\/h3>\n<p>\n        To continuously utilize the user-defined settings within the program, it is possible to save them to external storage via the network or a local file. For instance, saving in a format such as a JSON file allows loading previous settings when the program is run again.\n    <\/p>\n<pre><code class=\"python\">\nimport json\n\nclass MyApp(QWidget):\n    def __init__(self):\n        super().__init__()\n        self.loadSettings()  # Load settings at startup\n        self.initUI()\n\n    def initUI(self):\n        layout = QVBoxLayout()\n        self.macdCheckBox = QCheckBox(\"Use MACD\", self)\n        self.rsiCheckBox = QCheckBox(\"Use RSI\", self)\n\n        self.macdCheckBox.setChecked(self.settings.get(\"macd\", False))\n        self.rsiCheckBox.setChecked(self.settings.get(\"rsi\", False))\n\n        layout.addWidget(self.macdCheckBox)\n        layout.addWidget(self.rsiCheckBox)\n\n        self.startBtn = QPushButton(\"Start Automated Trading\", self)\n        self.startBtn.clicked.connect(self.startTrading)\n        layout.addWidget(self.startBtn)\n\n        self.setLayout(layout)\n        self.setWindowTitle(\"Automated Trading System Settings\")\n        self.show()\n\n    def loadSettings(self):\n        try:\n            with open('settings.json', 'r') as f:\n                self.settings = json.load(f)\n        except FileNotFoundError:\n            self.settings = {}\n\n    def startTrading(self):\n        print(\"Starting automated trading.\")\n        if self.macdCheckBox.isChecked():\n            print(\"MACD strategy has been activated.\")\n        if self.rsiCheckBox.isChecked():\n            print(\"RSI strategy has been activated.\")\n        \n        self.settings[\"macd\"] = self.macdCheckBox.isChecked()\n        self.settings[\"rsi\"] = self.rsiCheckBox.isChecked()\n        \n        with open('settings.json', 'w') as f:\n            json.dump(self.settings, f)  # Save settings\n\n        self.runAutomatedTrading()\n\n    def runAutomatedTrading(self):\n        # Implement actual automated trading logic\n        pass\n    <\/code><\/pre>\n<h2>4. Conclusion<\/h2>\n<p>\n        In this article, we discussed the basic concepts of automated trading systems using Python and PyQt, along with ways to improve the user interface using the QCheckBox widget. Automated trading is a powerful tool for efficiently executing trades in complex financial markets. By utilizing simple interface components such as QCheckBox, users can easily set up and utilize the system. To develop more advanced automated trading systems in the future, it is essential to research and implement various technologies and strategies.\n    <\/p>\n<p>\n        We ask for your interest and participation in the journey of developing automated trading systems. Please consider adding more features and strategies to build a successful automated trading system.\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The demand for automated trading systems that can automatically execute asset trading is increasing day by day in the modern financial market. This article will cover the basics of developing an automated trading system using Python, as well as ways to improve the user interface using PyQt&#8217;s QCheckBox. Through this, users will understand the basic &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37319\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automated Trading Development in Python, PyQt QCheckBox&#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-37319","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, PyQt QCheckBox - \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\/37319\/\" \/>\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, PyQt QCheckBox - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"The demand for automated trading systems that can automatically execute asset trading is increasing day by day in the modern financial market. This article will cover the basics of developing an automated trading system using Python, as well as ways to improve the user interface using PyQt&#8217;s QCheckBox. Through this, users will understand the basic &hellip; \ub354 \ubcf4\uae30 &quot;Automated Trading Development in Python, PyQt QCheckBox&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37319\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:56:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:51:18+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\/37319\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37319\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automated Trading Development in Python, PyQt QCheckBox\",\"datePublished\":\"2024-11-01T09:56:38+00:00\",\"dateModified\":\"2024-11-01T11:51:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37319\/\"},\"wordCount\":585,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Python Auto Trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37319\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37319\/\",\"name\":\"Automated Trading Development in Python, PyQt QCheckBox - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:56:38+00:00\",\"dateModified\":\"2024-11-01T11:51:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37319\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37319\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37319\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automated Trading Development in Python, PyQt QCheckBox\"}]},{\"@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, PyQt QCheckBox - \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\/37319\/","og_locale":"ko_KR","og_type":"article","og_title":"Automated Trading Development in Python, PyQt QCheckBox - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"The demand for automated trading systems that can automatically execute asset trading is increasing day by day in the modern financial market. This article will cover the basics of developing an automated trading system using Python, as well as ways to improve the user interface using PyQt&#8217;s QCheckBox. Through this, users will understand the basic &hellip; \ub354 \ubcf4\uae30 \"Automated Trading Development in Python, PyQt QCheckBox\"","og_url":"https:\/\/atmokpo.com\/w\/37319\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:56:38+00:00","article_modified_time":"2024-11-01T11:51:18+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\/37319\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37319\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automated Trading Development in Python, PyQt QCheckBox","datePublished":"2024-11-01T09:56:38+00:00","dateModified":"2024-11-01T11:51:18+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37319\/"},"wordCount":585,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Python Auto Trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37319\/","url":"https:\/\/atmokpo.com\/w\/37319\/","name":"Automated Trading Development in Python, PyQt QCheckBox - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:56:38+00:00","dateModified":"2024-11-01T11:51:18+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37319\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37319\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37319\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automated Trading Development in Python, PyQt QCheckBox"}]},{"@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\/37319","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=37319"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37319\/revisions"}],"predecessor-version":[{"id":37320,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37319\/revisions\/37320"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}