{"id":35679,"date":"2024-11-01T09:41:23","date_gmt":"2024-11-01T09:41:23","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35679"},"modified":"2024-11-01T11:11:46","modified_gmt":"2024-11-01T11:11:46","slug":"machine-learning-and-deep-learning-algorithm-trading-cnn-return-prediction-for-time-series-data","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35679\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data"},"content":{"rendered":"<p><body><\/p>\n<p>Recently, in the financial markets, machine learning and deep learning techniques are being strategically utilized, leading to the rise of quantitative trading. In particular, the CNN (Convolutional Neural Network) model, which can handle time series data, has proven to be very effective for predicting stock returns. This article will delve into the design methodology of trading strategies utilizing CNNs.<\/p>\n<h2>1. Introduction<\/h2>\n<p>Machine learning and deep learning have become essential tools for analyzing and predicting financial markets. Going beyond traditional technical and fundamental analysis, data-driven approaches are increasingly gaining attention. Notably, CNNs are recognized for their strong performance in image processing, while also being useful in capturing the characteristics of time series data.<\/p>\n<h3>1.1. The Importance of Time Series Data<\/h3>\n<p>Time series data refers to sequentially observed data over time, including various financial data such as stock prices, trading volumes, and exchange rates. This data often exhibits specific patterns or trends, making it suitable for predictive modeling. In financial markets, small predictive differences can lead to significant profits, highlighting the importance of accurate modeling.<\/p>\n<h2>2. Basic Concepts of CNN<\/h2>\n<p>CNNs have primarily been used in image recognition but are also applicable to 1D data, possessing strong pattern recognition capabilities. The main components of a CNN are as follows:<\/p>\n<ul>\n<li><strong>Convolution Layer<\/strong>: Generates a feature map through operations between input data and filters (kernels).<\/li>\n<li><strong>Pooling Layer<\/strong>: Reduces the dimensions of the feature map while preserving important information.<\/li>\n<li><strong>Fully Connected Layer<\/strong>: Outputs the probability distribution of classes at the end.<\/li>\n<\/ul>\n<h3>2.1. How CNN Works<\/h3>\n<p>CNNs detect local patterns within data and gradually learn abstract representations of the data. In stock price data, specific patterns may recur, and CNNs designed to learn these patterns ultimately enhance their predictive capabilities.<\/p>\n<h2>3. Application of CNN to Time Series Data<\/h2>\n<p>The next step is to explore how to utilize CNNs to solve the stock price prediction problem using financial time series data. I will explain how to build a CNN model through the following step-by-step process.<\/p>\n<h3>3.1. Data Preparation<\/h3>\n<p>First, you need to collect the necessary data to train the model. Stock price data can be obtained from various sources like Yahoo Finance or Alpha Vantage. After collecting the stock price data, the following preprocessing steps should be carried out.<\/p>\n<ul>\n<li><strong>Handling Missing Values<\/strong>: If there are missing values, remove or fill them.<\/li>\n<li><strong>Normalization<\/strong>: Typically, Min-Max normalization is performed to scale the input data.<\/li>\n<li><strong>Creating Time Windows<\/strong>: Since predictions are based on time, create fixed-length time windows to structure the data.<\/li>\n<\/ul>\n<h3>3.2. Building the CNN Model<\/h3>\n<p>Now, you can build the CNN model using Keras and TensorFlow. Below is an example code for a model with a basic CNN structure.<\/p>\n<pre><code>\nimport numpy as np\nimport pandas as pd\nfrom sklearn.model_selection import train_test_split\nfrom keras.models import Sequential\nfrom keras.layers import Conv1D, MaxPooling1D, Flatten, Dense\nfrom keras.optimizers import Adam\n\n# Load and preprocess data\ndata = pd.read_csv('stock_data.csv')\n# Add necessary preprocessing code...\n\n# Create time windows\ndef create_dataset(data, window_size):\n    X, y = [], []\n    for i in range(len(data) - window_size - 1):\n        X.append(data[i:(i + window_size), :])\n        y.append(data[i + window_size, 0])  # Value to predict\n    return np.array(X), np.array(y)\n\nX, y = create_dataset(data.values, window_size=60)\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.1, random_state=42)\n\n# Build CNN model\nmodel = Sequential()\nmodel.add(Conv1D(filters=64, kernel_size=3, activation='relu', input_shape=(X_train.shape[1], X_train.shape[2])))\nmodel.add(MaxPooling1D(pool_size=2))\nmodel.add(Flatten())\nmodel.add(Dense(50, activation='relu'))\nmodel.add(Dense(1))\n\n# Compile model\nmodel.compile(optimizer=Adam(lr=0.001), loss='mean_squared_error')\n\n# Train model\nmodel.fit(X_train, y_train, epochs=50, batch_size=32, validation_data=(X_test, y_test))\n<\/code><\/pre>\n<h3>3.3. Model Evaluation and Prediction<\/h3>\n<p>After the model has been trained, evaluate its performance using the test data. Evaluation metrics such as RMSE (Root Mean Squared Error) and MAE (Mean Absolute Error) can be employed.<\/p>\n<pre><code>\nfrom sklearn.metrics import mean_squared_error, mean_absolute_error\n\n# Perform prediction\npredicted = model.predict(X_test)\n\n# Evaluation\nrmse = np.sqrt(mean_squared_error(y_test, predicted))\nmae = mean_absolute_error(y_test, predicted)\nprint(f\"RMSE: {rmse}, MAE: {mae}\")\n<\/code><\/pre>\n<h2>4. Hyperparameter Tuning<\/h2>\n<p>To optimize model performance, hyperparameter tuning is necessary. Techniques such as Grid Search or Random Search can be utilized for this purpose.<\/p>\n<h3>4.1. Key Hyperparameters<\/h3>\n<ul>\n<li><strong>Batch Size<\/strong>: The number of samples used in one iteration of model training.<\/li>\n<li><strong>Epoch<\/strong>: The number of times the entire dataset is passed through the model.<\/li>\n<li><strong>Number and Size of Filters<\/strong>: Adjust the number and size of filters used in the Conv1D layer.<\/li>\n<\/ul>\n<h3>4.2. Example Code for Hyperparameter Optimization<\/h3>\n<p>Keras Tuner can be used for hyperparameter optimization. Below is an example code.<\/p>\n<pre><code>\nfrom keras_tuner import RandomSearch\n\ndef build_model(hp):\n    model = Sequential()\n    model.add(Conv1D(filters=hp.Int('filters', min_value=32, max_value=128, step=32), \n                     kernel_size=hp.Int('kernel_size', 2, 5),\n                     activation='relu', input_shape=(X_train.shape[1], X_train.shape[2])))\n    model.add(MaxPooling1D(pool_size=2))\n    model.add(Flatten())\n    model.add(Dense(50, activation='relu'))\n    model.add(Dense(1))\n    model.compile(optimizer=Adam(lr=hp.Float('lr', 1e-4, 1e-2, sampling='log')), loss='mean_squared_error')\n    return model\n\ntuner = RandomSearch(build_model, objective='val_loss', max_trials=5)\ntuner.search(X_train, y_train, epochs=50, validation_data=(X_test, y_test))\n<\/code><\/pre>\n<h2>5. Model Deployment and Practical Application<\/h2>\n<p>Once the model has been successfully trained, it needs to be deployed in practice. It can be expanded into a system that collects data in real time, performs predictions, and automatically generates trading orders.<\/p>\n<h3>5.1. Real-Time Data Processing<\/h3>\n<p>The incoming data should be updated periodically, and it is necessary to preprocess this data before inputting it to the model. Using appropriate APIs to collect real-time data is crucial during this process.<\/p>\n<h3>5.2. Deployment and Monitoring<\/h3>\n<p>The trained model can be deployed by building a REST API using web frameworks like Flask or Django. Additionally, continuously monitoring the model&#8217;s performance is important to perform retraining when necessary.<\/p>\n<h2>6. Conclusion<\/h2>\n<p>This tutorial deeply explored predicting stock returns using CNNs with time series data. We covered the overall process from understanding CNNs to data preparation, model building, and hyperparameter tuning. The financial market is a complex environment with countless intertwined variables, requiring various attempts and continuous improvement. Building automated trading systems using machine learning and deep learning will provide multiple opportunities, necessitating ongoing advancements.<\/p>\n<h3>6.1. References and Resources<\/h3>\n<ul>\n<li><a href=\"https:\/\/www.tensorflow.org\/\">TensorFlow Official Documentation<\/a><\/li>\n<li><a href=\"https:\/\/keras.io\/\">Keras Official Documentation<\/a><\/li>\n<li><a href=\"https:\/\/towardsdatascience.com\/\">Towards Data Science<\/a><\/li>\n<\/ul>\n<h3>6.2. Q&#038;A<\/h3>\n<p>If you have any questions about this tutorial or need additional information, please leave a comment. I will respond as quickly as possible.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently, in the financial markets, machine learning and deep learning techniques are being strategically utilized, leading to the rise of quantitative trading. In particular, the CNN (Convolutional Neural Network) model, which can handle time series data, has proven to be very effective for predicting stock returns. This article will delve into the design methodology of &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35679\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data&#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-35679","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, CNN Return Prediction for Time Series Data - \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\/35679\/\" \/>\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, CNN Return Prediction for Time Series Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Recently, in the financial markets, machine learning and deep learning techniques are being strategically utilized, leading to the rise of quantitative trading. In particular, the CNN (Convolutional Neural Network) model, which can handle time series data, has proven to be very effective for predicting stock returns. This article will delve into the design methodology of &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35679\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:41:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:11:46+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\/35679\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35679\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data\",\"datePublished\":\"2024-11-01T09:41:23+00:00\",\"dateModified\":\"2024-11-01T11:11:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35679\/\"},\"wordCount\":781,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35679\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35679\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:41:23+00:00\",\"dateModified\":\"2024-11-01T11:11:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35679\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35679\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35679\/#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, CNN Return Prediction for Time Series Data\"}]},{\"@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, CNN Return Prediction for Time Series Data - \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\/35679\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Recently, in the financial markets, machine learning and deep learning techniques are being strategically utilized, leading to the rise of quantitative trading. In particular, the CNN (Convolutional Neural Network) model, which can handle time series data, has proven to be very effective for predicting stock returns. This article will delve into the design methodology of &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data\"","og_url":"https:\/\/atmokpo.com\/w\/35679\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:41:23+00:00","article_modified_time":"2024-11-01T11:11:46+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\/35679\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35679\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data","datePublished":"2024-11-01T09:41:23+00:00","dateModified":"2024-11-01T11:11:46+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35679\/"},"wordCount":781,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35679\/","url":"https:\/\/atmokpo.com\/w\/35679\/","name":"Machine Learning and Deep Learning Algorithm Trading, CNN Return Prediction for Time Series Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:41:23+00:00","dateModified":"2024-11-01T11:11:46+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35679\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35679\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35679\/#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, CNN Return Prediction for Time Series Data"}]},{"@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\/35679","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=35679"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35679\/revisions"}],"predecessor-version":[{"id":35680,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35679\/revisions\/35680"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}