{"id":35503,"date":"2024-11-01T09:39:38","date_gmt":"2024-11-01T09:39:38","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35503"},"modified":"2024-11-01T11:12:58","modified_gmt":"2024-11-01T11:12:58","slug":"machine-learning-and-deep-learning-algorithm-trading-deep-q-learning-algorithms-and-extensions","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35503\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions"},"content":{"rendered":"<p><body><\/p>\n<p>In recent years, algorithmic trading has rapidly advanced in financial markets, leading to an explosive increase in demand for investment strategies using machine learning and deep learning. In this course, we will cover the fundamentals to advanced topics in algorithmic trading with a focus on reinforcement learning algorithms centered around deep Q-learning.<\/p>\n<h2>1. Understanding Algorithmic Trading<\/h2>\n<p>Algorithmic trading refers to executing trades automatically through computer programs. In this process, data is analyzed, and buy and sell decisions are made based on specific algorithms. These systems eliminate human emotions and enable faster and more accurate trading.<\/p>\n<h3>1.1. Advantages of Algorithmic Trading<\/h3>\n<ul>\n<li><strong>Speed:<\/strong> Algorithms can execute trades in milliseconds.<\/li>\n<li><strong>Accuracy:<\/strong> Decisions are made based on data analysis, thereby excluding human emotional thinking.<\/li>\n<li><strong>Strategy Implementation:<\/strong> It is easy to implement and adjust algorithmic trading strategies.<\/li>\n<\/ul>\n<h3>1.2. Integration of Machine Learning and Deep Learning<\/h3>\n<p>Machine learning and deep learning play important roles in algorithmic trading today. They learn patterns from data and can predict future price movements based on this learning. In particular, deep neural network architectures can model complex nonlinear relationships, allowing for more sophisticated predictions.<\/p>\n<h2>2. Basic Concepts of Machine Learning<\/h2>\n<p>Machine learning is a field of artificial intelligence that develops algorithms to learn from experiences and make predictions. Machine learning can be broadly divided into three main categories: supervised learning, unsupervised learning, and reinforcement learning.<\/p>\n<h3>2.1. Supervised Learning<\/h3>\n<p>Supervised learning is when the algorithm learns the relationship between input data and the corresponding results. For example, when given the historical prices of a stock and the price after a certain period, the model can predict future prices based on this information.<\/p>\n<h3>2.2. Unsupervised Learning<\/h3>\n<p>Unsupervised learning is used when only input data is available without results. It is used to identify patterns in data and cluster them. This can be useful for understanding the structure of market data.<\/p>\n<h3>2.3. Reinforcement Learning<\/h3>\n<p>In reinforcement learning, an agent learns to maximize rewards by interacting with the environment. This is a process of repeating buy and sell transactions in stock trading to maximize profit.<\/p>\n<h2>3. Deep Q-Learning<\/h2>\n<p>Deep Q-learning is a form of reinforcement learning that uses deep learning techniques to approximate the Q-values. The Q-value represents the expected sum of future rewards when taking a specific action in a particular state. This is very useful for selecting optimal actions in stock trading.<\/p>\n<h3>3.1. Basics of Q-Learning<\/h3>\n<ul>\n<li><strong>Defining the Environment:<\/strong> Define the environment the agent will interact with. This environment can be the stock market.<\/li>\n<li><strong>State:<\/strong> Define the current market state, such as price and trading volume.<\/li>\n<li><strong>Action:<\/strong> The actions the agent can choose from, such as buying, selling, or holding.<\/li>\n<li><strong>Reward:<\/strong> The result of the chosen action; profit acts as a reward.<\/li>\n<\/ul>\n<h3>3.2. Structure of Deep Q-Learning<\/h3>\n<p>In deep Q-learning, a neural network is used to approximate the Q-values. The input layer represents features of the current state, while the output layer represents Q-values for each action. Selective experience replay and the target network method for Q-value updates are primarily used to enhance stability.<\/p>\n<h3>3.3. Steps of the Deep Q-Learning Algorithm<\/h3>\n<pre>\n1. Set the initial state S.\n2. Choose possible actions A.\n3. Perform the action and observe the next state S' and reward R.\n4. Update the Q-value:\n   Q(S, A) = (1 - \u03b1) * Q(S, A) + \u03b1 * (R + \u03b3 * max(Q(S', A')))\n5. Update S to S' and repeat from step 2.\n<\/pre>\n<h2>4. Getting Started with Deep Q-Learning: Required Libraries and Setup<\/h2>\n<p>To implement deep Q-learning, you will need Python and several libraries. The main libraries include:<\/p>\n<ul>\n<li><strong>NumPy:<\/strong> A library for numerical computation.<\/li>\n<li><strong>Pandas:<\/strong> A library for data analysis.<\/li>\n<li><strong>TensorFlow\/Keras:<\/strong> A library for implementing deep learning models.<\/li>\n<\/ul>\n<p>The following code shows how to install the required libraries:<\/p>\n<pre><code>!pip install numpy pandas tensorflow<\/code><\/pre>\n<h2>5. Case Study: Trading Stocks with Deep Q-Learning<\/h2>\n<p>Now, we will actually use the deep Q-learning algorithm to trade stocks. In the example below, we will set up a simple stock market environment and train a deep Q-learning model based on it.<\/p>\n<h3>5.1. Environment Setup<\/h3>\n<p>The stock market consists of various elements. In the following example, we will set up the environment based on daily price fluctuations and trading volume.<\/p>\n<pre><code>\nclass StockEnv:\n    def __init__(self, data):\n        self.data = data\n        self.current_step = 0\n        self.total_profit = 0\n    \n    def reset(self):\n        self.current_step = 0\n        self.total_profit = 0\n        return self.data[self.current_step]\n    \n    def step(self, action):\n        self.current_step += 1\n        # Trading logic\n        # ...\n        return self.data[self.current_step], reward, done, {}\n<\/code><\/pre>\n<h3>5.2. Implementing the Deep Q-Learning Model<\/h3>\n<p>The following is the code to implement a deep Q-learning model using Keras:<\/p>\n<pre><code>\nfrom keras.models import Sequential\nfrom keras.layers import Dense\n\ndef build_model(state_size, action_size):\n    model = Sequential()\n    model.add(Dense(24, input_dim=state_size, activation='relu'))\n    model.add(Dense(24, activation='relu'))\n    model.add(Dense(action_size, activation='linear'))\n    model.compile(loss='mse', optimizer='adam')\n    return model\n<\/code><\/pre>\n<h3>5.3. Learning and Rewards<\/h3>\n<p>To allow the model to learn on its own in the environment, we structure a learning loop as follows.<\/p>\n<pre><code>\nfor episode in range(num_episodes):\n    state = env.reset()\n    done = False\n    \n    while not done:\n        action = choose_action(state)  # \u03b5-greedy policy\n        next_state, reward, done, _ = env.step(action)\n        store_experience(state, action, reward, next_state)\n        state = next_state\n        if len(experience) > batch_size:\n            replay(batch_size)\n<\/code><\/pre>\n<h2>6. Result Analysis and Debugging<\/h2>\n<p>After the model has learned, it is important to analyze the results. By calculating the return, maximum drawdown, and win rate, we evaluate the model&#8217;s performance. We should also consider methods for managing trading risk.<\/p>\n<h3>6.1. Calculation of Performance Metrics<\/h3>\n<pre><code>\ndef calculate_performance(total_profit, num_trades):\n    return total_profit \/ num_trades\n<\/code><\/pre>\n<h3>6.2. Visualization<\/h3>\n<p>Visualizing the performance of the trained model makes it easier to understand. We can visualize returns using Matplotlib.<\/p>\n<pre><code>\nimport matplotlib.pyplot as plt\n\nplt.plot(total_profit_history)\nplt.title('Total Profit Over Time')\nplt.xlabel('Episode')\nplt.ylabel('Total Profit')\nplt.show()\n<\/code><\/pre>\n<h2>7. Scalability of Deep Q-Learning<\/h2>\n<p>Deep Q-learning can be applied not only to stock trading but also to various financial products and markets. It can be utilized in cryptocurrency trading, options and futures trading, and even foreign exchange trading.<\/p>\n<h3>7.1. Improvements in Deep Q-Learning<\/h3>\n<ul>\n<li><strong>Hyperparameter Optimization:<\/strong> Adjusting hyperparameters such as learning rate, batch size, and \u03b5-exploration can improve model performance.<\/li>\n<li><strong>Modification of Deep Learning Structures:<\/strong> Experimenting with different network architectures to find the optimal model.<\/li>\n<li><strong>Diverse State and Action Space:<\/strong> Creating a more sophisticated model by considering various states and actions.<\/li>\n<\/ul>\n<h2>8. Conclusion<\/h2>\n<p>Through this course, we have learned in detail about algorithmic trading using machine learning and deep learning, particularly deep Q-learning algorithms and their scalability. These technologies are very useful for building effective investment strategies in the financial markets.<\/p>\n<p>The future of algorithmic trading will continue to evolve, and we will be able to implement increasingly sophisticated and efficient investment strategies through it. I hope that you take this opportunity to develop your own algorithms and become successful investors in the financial markets.<\/p>\n<p>Thank you.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, algorithmic trading has rapidly advanced in financial markets, leading to an explosive increase in demand for investment strategies using machine learning and deep learning. In this course, we will cover the fundamentals to advanced topics in algorithmic trading with a focus on reinforcement learning algorithms centered around deep Q-learning. 1. Understanding Algorithmic &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35503\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions&#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-35503","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, Deep Q-Learning Algorithms and Extensions - \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\/35503\/\" \/>\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, Deep Q-Learning Algorithms and Extensions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, algorithmic trading has rapidly advanced in financial markets, leading to an explosive increase in demand for investment strategies using machine learning and deep learning. In this course, we will cover the fundamentals to advanced topics in algorithmic trading with a focus on reinforcement learning algorithms centered around deep Q-learning. 1. Understanding Algorithmic &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35503\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:39:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:12:58+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=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35503\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35503\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions\",\"datePublished\":\"2024-11-01T09:39:38+00:00\",\"dateModified\":\"2024-11-01T11:12:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35503\/\"},\"wordCount\":909,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35503\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35503\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:39:38+00:00\",\"dateModified\":\"2024-11-01T11:12:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35503\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35503\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35503\/#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, Deep Q-Learning Algorithms and Extensions\"}]},{\"@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, Deep Q-Learning Algorithms and Extensions - \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\/35503\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, algorithmic trading has rapidly advanced in financial markets, leading to an explosive increase in demand for investment strategies using machine learning and deep learning. In this course, we will cover the fundamentals to advanced topics in algorithmic trading with a focus on reinforcement learning algorithms centered around deep Q-learning. 1. Understanding Algorithmic &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions\"","og_url":"https:\/\/atmokpo.com\/w\/35503\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:39:38+00:00","article_modified_time":"2024-11-01T11:12:58+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":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35503\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35503\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions","datePublished":"2024-11-01T09:39:38+00:00","dateModified":"2024-11-01T11:12:58+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35503\/"},"wordCount":909,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35503\/","url":"https:\/\/atmokpo.com\/w\/35503\/","name":"Machine Learning and Deep Learning Algorithm Trading, Deep Q-Learning Algorithms and Extensions - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:39:38+00:00","dateModified":"2024-11-01T11:12:58+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35503\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35503\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35503\/#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, Deep Q-Learning Algorithms and Extensions"}]},{"@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\/35503","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=35503"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35503\/revisions"}],"predecessor-version":[{"id":35504,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35503\/revisions\/35504"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35503"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35503"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}