{"id":35819,"date":"2024-11-01T09:42:53","date_gmt":"2024-11-01T09:42:53","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35819"},"modified":"2024-11-01T11:10:44","modified_gmt":"2024-11-01T11:10:44","slug":"machine-learning-and-deep-learning-algorithm-trading-measurement-of-autocorrelation-coefficient","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35819\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient"},"content":{"rendered":"<p><body><\/p>\n<p>\n    In modern financial markets, strategic decision-making through data analysis and prediction is essential. In particular, as machine learning and deep learning technologies advance, the importance of algorithmic trading is increasing. In this article, we will take a detailed look at the methods for measuring autocorrelation in the development of trading systems using machine learning and deep learning.\n<\/p>\n<h2>1. The Concept of Algorithmic Trading<\/h2>\n<p>\n    Algorithmic trading is a method of making buying and selling decisions through computer programs. The algorithm automatically generates buy or sell signals based on specific conditions, without relying on human emotions or intuition. Thanks to this characteristic, algorithmic trading enables quick decision-making and execution, allowing for the efficient processing of large volumes of trades.\n<\/p>\n<h2>2. Basics of Machine Learning and Deep Learning<\/h2>\n<h3>2.1 Overview of Machine Learning<\/h3>\n<p>\n    Machine learning is a technology that builds predictive models by learning patterns from data. Various learning methods are mainly used, including supervised learning, unsupervised learning, and reinforcement learning. In algorithmic trading, various data such as past price data, trading volume, and financial statements are utilized to predict future price movements.\n<\/p>\n<h3>2.2 Characteristics of Deep Learning<\/h3>\n<p>\n    Deep learning is a branch of machine learning that analyzes data using artificial neural networks. It can learn complex patterns through multiple layers of neural networks, making it more effective for large-scale datasets. In particular, it is used in various fields such as image recognition, natural language processing, and time series data prediction. Deep learning techniques are also applied in algorithmic trading, contributing to the understanding of complex data patterns.\n<\/p>\n<h2>3. Definition and Importance of Autocorrelation<\/h2>\n<p>\n    Autocorrelation is an indicator that measures the correlation between a data sequence and itself over time. It is useful for analyzing how data changes over time and is frequently applied to time series data such as stock prices or trading volumes. By measuring autocorrelation, we can identify recurring patterns or trends, which play a crucial role in establishing trading strategies.\n<\/p>\n<h3>3.1 Calculation of Autocorrelation<\/h3>\n<p>\n    Autocorrelation is generally calculated as follows:\n<\/p>\n<pre><code>\n    autocorr(x, lag) = Cov(x_t, x_(t-lag)) \/ Var(x)\n<\/code><\/pre>\n<p>\n    Here, <code>Cov<\/code> represents covariance, <code>Var<\/code> represents variance, and <code>x_t<\/code> represents the data value at time <code>t<\/code>. <code>lag<\/code> denotes the time delay and measures the correlation with data from a few time points earlier. For example, when <code>lag=1<\/code>, it compares the current value with the immediately preceding value.\n<\/p>\n<h2>4. Example of Applying Machine Learning Algorithms<\/h2>\n<p>\n    Let&#8217;s look at a practical example of algorithmic trading using machine learning. We will build a model to predict future prices based on past stock price data using autocorrelation.\n<\/p>\n<h3>4.1 Data Collection<\/h3>\n<p>\n    Price data can be collected through APIs like Yahoo Finance. We will retrieve the data using the <code>pandas_datareader<\/code> library in Python.\n<\/p>\n<pre><code>\nimport pandas as pd\nimport pandas_datareader.data as web\nfrom datetime import datetime\n\n# Data collection\nstart = datetime(2020, 1, 1)\nend = datetime(2023, 1, 1)\nstock_data = web.DataReader('AAPL', 'yahoo', start, end)\n<\/code><\/pre>\n<h3>4.2 Calculating Autocorrelation<\/h3>\n<p>\nWe can calculate autocorrelation using the <code>statsmodels<\/code> library. First, we&#8217;ll prepare the data and calculate the autocorrelation.\n<\/p>\n<pre><code>\nimport statsmodels.api as sm\n\n# Extract closing price data\nclose_prices = stock_data['Close']\n\n# Calculate autocorrelation\nautocorr = sm.tsa.acf(close_prices, nlags=30)\nprint(autocorr)\n<\/code><\/pre>\n<h3>4.3 Training the Machine Learning Model<\/h3>\n<p>\n    We will generate input features based on autocorrelation and use them to train a machine learning model. We will use Scikit-Learn&#8217;s <code>LinearRegression<\/code> to build the predictive model.\n<\/p>\n<pre><code>\nfrom sklearn.model_selection import train_test_split\nfrom sklearn.linear_model import LinearRegression\n\n# Feature generation\nX = []\ny = []\nfor i in range(30, len(close_prices)):\n    X.append(autocorr[i-30:i])\n    y.append(close_prices[i])\n\nX = pd.DataFrame(X)\ny = pd.Series(y)\n\n# Data splitting\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Model training\nmodel = LinearRegression()\nmodel.fit(X_train, y_train)\n<\/code><\/pre>\n<h3>4.4 Model Evaluation<\/h3>\n<p>\n    To evaluate the model&#8217;s performance, we will calculate the MSE (Mean Squared Error) and R\u00b2 (R-squared) values.\n<\/p>\n<pre><code>\nfrom sklearn.metrics import mean_squared_error, r2_score\n\n# Prediction\ny_pred = model.predict(X_test)\n\n# Performance evaluation\nmse = mean_squared_error(y_test, y_pred)\nr_squared = r2_score(y_test, y_pred)\n\nprint(f\"MSE: {mse}, R\u00b2: {r_squared}\")\n<\/code><\/pre>\n<h2>5. Example of Applying Deep Learning Models<\/h2>\n<p>\n    Let&#8217;s build a more complex price prediction model using deep learning. We will implement an LSTM (Long Short-Term Memory) model using the Keras library.\n<\/p>\n<h3>5.1 Data Preprocessing<\/h3>\n<p>\n    The LSTM model requires the data to be reshaped to process time series data. We will normalize the data and adjust the format of the samples.\n<\/p>\n<pre><code>\nfrom sklearn.preprocessing import MinMaxScaler\nimport numpy as np\n\n# Normalize the data\nscaler = MinMaxScaler()\nscaled_data = scaler.fit_transform(close_prices.values.reshape(-1, 1))\n\n# Generate sample data\nX_lstm, y_lstm = [], []\nfor i in range(30, len(scaled_data)):\n    X_lstm.append(scaled_data[i-30:i])\n    y_lstm.append(scaled_data[i, 0])\n\nX_lstm = np.array(X_lstm)\ny_lstm = np.array(y_lstm)\n<\/code><\/pre>\n<h3>5.2 Building the LSTM Model<\/h3>\n<pre><code>\nfrom keras.models import Sequential\nfrom keras.layers import LSTM, Dense, Dropout\n\n# Create LSTM model\nmodel_lstm = Sequential()\nmodel_lstm.add(LSTM(units=50, return_sequences=True, input_shape=(X_lstm.shape[1], 1)))\nmodel_lstm.add(Dropout(0.2))\nmodel_lstm.add(LSTM(units=50, return_sequences=True))\nmodel_lstm.add(Dropout(0.2))\nmodel_lstm.add(LSTM(units=50))\nmodel_lstm.add(Dropout(0.2))\nmodel_lstm.add(Dense(units=1))  # The value to predict is the closing price of the stock\n\n# Compile the model\nmodel_lstm.compile(optimizer='adam', loss='mean_squared_error')\n<\/code><\/pre>\n<h3>5.3 Model Training and Evaluation<\/h3>\n<pre><code>\n# Train the model\nmodel_lstm.fit(X_lstm, y_lstm, epochs=100, batch_size=32)\n\n# Prediction\ntrain_predict = model_lstm.predict(X_lstm)\n\n# Restore scale\ntrain_predict = scaler.inverse_transform(train_predict)\noriginal_data = scaler.inverse_transform(scaled_data[30:])\n\n# Performance evaluation\nmse = mean_squared_error(original_data, train_predict)\nprint(f\"LSTM MSE: {mse}\")\n<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>\n    Algorithmic trading utilizing machine learning and deep learning technologies is quickly establishing itself as a method for data analysis and prediction in the financial markets. In particular, autocorrelation serves as an important tool in understanding the patterns of time series data. In this article, we explored methods for price prediction using autocorrelation through machine learning and deep learning models. By effectively utilizing these methodologies, more sophisticated trading strategies can be developed.\n<\/p>\n<h2>References<\/h2>\n<ul>\n<li>Harrison, J. Select Statistical Methods: Basic Data Analysis Methods for Business, Economics, and Finance. Wiley.<\/li>\n<li>Goodfellow, I., Bengio, Y., &#038; Courville, A. (2016). Deep Learning. MIT Press.<\/li>\n<li>Pedregosa, F., et al. (2011). Scikit-learn: Machine Learning in Python. JMLR.<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In modern financial markets, strategic decision-making through data analysis and prediction is essential. In particular, as machine learning and deep learning technologies advance, the importance of algorithmic trading is increasing. In this article, we will take a detailed look at the methods for measuring autocorrelation in the development of trading systems using machine learning and &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35819\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient&#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-35819","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, Measurement of Autocorrelation Coefficient - \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\/35819\/\" \/>\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, Measurement of Autocorrelation Coefficient - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In modern financial markets, strategic decision-making through data analysis and prediction is essential. In particular, as machine learning and deep learning technologies advance, the importance of algorithmic trading is increasing. In this article, we will take a detailed look at the methods for measuring autocorrelation in the development of trading systems using machine learning and &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35819\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:42:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:10:44+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\/35819\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35819\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient\",\"datePublished\":\"2024-11-01T09:42:53+00:00\",\"dateModified\":\"2024-11-01T11:10:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35819\/\"},\"wordCount\":681,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35819\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35819\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:42:53+00:00\",\"dateModified\":\"2024-11-01T11:10:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35819\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35819\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35819\/#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, Measurement of Autocorrelation Coefficient\"}]},{\"@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, Measurement of Autocorrelation Coefficient - \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\/35819\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In modern financial markets, strategic decision-making through data analysis and prediction is essential. In particular, as machine learning and deep learning technologies advance, the importance of algorithmic trading is increasing. In this article, we will take a detailed look at the methods for measuring autocorrelation in the development of trading systems using machine learning and &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient\"","og_url":"https:\/\/atmokpo.com\/w\/35819\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:42:53+00:00","article_modified_time":"2024-11-01T11:10:44+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\/35819\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35819\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient","datePublished":"2024-11-01T09:42:53+00:00","dateModified":"2024-11-01T11:10:44+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35819\/"},"wordCount":681,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35819\/","url":"https:\/\/atmokpo.com\/w\/35819\/","name":"Machine Learning and Deep Learning Algorithm Trading, Measurement of Autocorrelation Coefficient - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:42:53+00:00","dateModified":"2024-11-01T11:10:44+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35819\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35819\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35819\/#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, Measurement of Autocorrelation Coefficient"}]},{"@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\/35819","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=35819"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35819\/revisions"}],"predecessor-version":[{"id":35820,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35819\/revisions\/35820"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35819"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}