{"id":35195,"date":"2024-11-01T09:36:47","date_gmt":"2024-11-01T09:36:47","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35195"},"modified":"2024-11-01T11:16:14","modified_gmt":"2024-11-01T11:16:14","slug":"machine-learning-and-deep-learning-algorithm-trading-algoseek-stock-quotes-and-trading-data","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35195\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data"},"content":{"rendered":"<p><body><\/p>\n<p>In recent years, machine learning and deep learning technologies have brought about revolutionary changes in the field of stock trading. This article will explore the fundamental knowledge, data processing, and modeling methodologies necessary for algorithmic trading using machine learning and deep learning. In particular, we will discuss how to build an actual algorithmic trading system using AlgoSeek&#8217;s stock quotes and trading data.<\/p>\n<h2>1. Basic Concepts of Machine Learning and Deep Learning<\/h2>\n<p>Machine learning is a technology that enables computers to learn and make predictions based on data. It is generally classified into supervised learning, unsupervised learning, and reinforcement learning.<\/p>\n<ul>\n<li><strong>Supervised Learning<\/strong>: This approach involves training a model using input data and corresponding correct answers (labels). It is widely used in stock price prediction and classification problems.<\/li>\n<li><strong>Unsupervised Learning<\/strong>: This method finds patterns or structures in unlabeled data and is applied in clustering and dimension reduction.<\/li>\n<li><strong>Reinforcement Learning<\/strong>: This approach optimizes rewards through interactions between an agent and its environment. It is useful for automating decision-making in algorithmic trading.<\/li>\n<\/ul>\n<p>Deep learning is a subfield of machine learning that is capable of automatically learning complex patterns and features based on neural network structures. It is particularly advantageous for processing large amounts of data.<\/p>\n<h3>1.1 Differences Between Machine Learning and Deep Learning<\/h3>\n<p>Machine learning can achieve results with relatively smaller amounts of data using simpler algorithms (e.g., decision trees, regression analysis), while deep learning can identify patterns in complex datasets and maximize performance through neural network structures with many layers. However, deep learning typically requires more data and computational resources.<\/p>\n<h2>2. Overview of AlgoSeek Data<\/h2>\n<p>AlgoSeek is a company that provides high-frequency databases for various financial markets. Stock quote and trading data are essential information for algorithmic trading, consisting of the following elements.<\/p>\n<ul>\n<li><strong>Quote Data<\/strong><!--: Includes prices and quantities of buy\/sell orders, depth of quotes, etc.--><\/li>\n<li><strong>Trading Data<\/strong>: Contains information on the time, price, and quantity of executed trades.<\/li>\n<\/ul>\n<p>This data is essential for backtesting and actual implementation of algorithmic trading strategies. Quote data significantly contributes to understanding order flow and market liquidity, while trading data plays a crucial role in assessing real-time market reactions.<\/p>\n<h2>3. Building a Prediction Model Using Stock Quote Data<\/h2>\n<p>Let\u2019s look at how to build a machine learning model to predict price volatility based on stock quote data.<\/p>\n<h3>3.1 Data Collection<\/h3>\n<p>First, you need to download quote and trading data using the AlgoSeek API. Once the necessary data is collected, it requires cleaning and preprocessing.<\/p>\n<pre>\nimport pandas as pd\n\n# Load AlgoSeek data\ndata = pd.read_csv(\"AlgoSeek_data.csv\")\n# Inspect the first 5 rows of the data\nprint(data.head())\n<\/pre>\n<h3>3.2 Data Preprocessing<\/h3>\n<p>The collected data must handle missing values, duplicates, etc., and a feature engineering process is necessary for model training. For example, the change rate of quotes and trading volume can be added as new features.<\/p>\n<pre>\n# Handle missing values\ndata.dropna(inplace=True)\n\n# Add new features\ndata['price_change'] = data['price'].pct_change()\ndata['volume_lag'] = data['volume'].shift(1)\n<\/pre>\n<h3>3.3 Model Building<\/h3>\n<p>Now we are ready to build the machine learning model. Typically, various algorithms like linear regression, random forest, and XGBoost can be used to train the model. It is important to separate test and training data to evaluate model performance.<\/p>\n<pre>\nfrom sklearn.model_selection import train_test_split\nfrom sklearn.ensemble import RandomForestRegressor\nfrom sklearn.metrics import mean_squared_error\n\n# Split the data\nX = data[['price_change', 'volume_lag']]\ny = data['target_price']\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Train the model\nmodel = RandomForestRegressor()\nmodel.fit(X_train, y_train)\n\n# Predictions and performance evaluation\npredictions = model.predict(X_test)\nmse = mean_squared_error(y_test, predictions)\nprint(f'Mean Squared Error: {mse}')\n<\/pre>\n<h2>4. Building a Deep Learning Model<\/h2>\n<p>Building an algorithmic trading model using deep learning is similar to machine learning but involves using complex neural network structures. Deep Neural Networks (DNNs) or Recurrent Neural Networks (RNNs) effectively process time-dependent data.<\/p>\n<h3>4.1 Data Preparation<\/h3>\n<p>The preprocessing of data for deep learning models is similar to that for machine learning but requires additional adjustments to the data format to fit the neural network. For example, when handling time series data, a method of sliding the data to a specific length (windowing) is necessary.<\/p>\n<pre>\ndef create_dataset(data, window_size):\n    X, y = [], []\n    for i in range(len(data)-window_size):\n        X.append(data[i:(i+window_size)])\n        y.append(data[i + window_size])\n    return np.array(X), np.array(y)\n\nX, y = create_dataset(data['price'].values, window_size=10)\n<\/pre>\n<h3>4.2 Model Design<\/h3>\n<p>When designing the neural network structure, hyperparameters such as the number of layers, number of nodes in each layer, and activation functions need to be determined. Below is an example of building a simple LSTM model using Keras.<\/p>\n<pre>\nfrom keras.models import Sequential\nfrom keras.layers import LSTM, Dense\n\nmodel = Sequential()\nmodel.add(LSTM(50, return_sequences=True, input_shape=(X_train.shape[1], X_train.shape[2])))\nmodel.add(LSTM(50))\nmodel.add(Dense(1))\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n<\/pre>\n<h3>4.3 Training and Evaluation of the Model<\/h3>\n<p>The built model is trained on the data, and its performance is evaluated using test data.<\/p>\n<pre>\nmodel.fit(X_train, y_train, epochs=50, batch_size=32)\npredictions = model.predict(X_test)\n\n# Performance evaluation\nmse = mean_squared_error(y_test, predictions)\nprint(f'Mean Squared Error: {mse}')\n<\/pre>\n<h2>5. Model Training and Optimization<\/h2>\n<p>The step of training the model involves tuning parameters randomly to derive the optimal results. Hyperparameters are adjusted through cross-validation and grid search.<\/p>\n<h3>5.1 Using Grid Search<\/h3>\n<pre>\nfrom sklearn.model_selection import GridSearchCV\n\nparam_grid = {\n    'n_estimators': [100, 200],\n    'max_depth': [10, 30, None]\n}\n\ngrid_search = GridSearchCV(model, param_grid, cv=3)\ngrid_search.fit(X_train, y_train)\n\nprint(f'Best parameters: {grid_search.best_params_}')\n<\/pre>\n<h2>6. Strategy Evaluation and Backtesting<\/h2>\n<p>Finally, the constructed algorithmic trading model is backtested to evaluate its historical performance. This is a method of measuring results similar to actual market performance.<\/p>\n<h3>6.1 Using Backtesting Libraries<\/h3>\n<p>Backtesting can be conducted using the Python <code>backtrader<\/code> library. This library provides various features for easily testing strategies.<\/p>\n<pre>\nimport backtrader as bt\n\nclass TestStrategy(bt.Strategy):\n    # Strategy implementation\n    def next(self):\n        if not self.position:\n            if self.dataclose[0] < self.dataclose[-1]:\n                self.buy()\n\ncerebro = bt.Cerebro()\ncerebro.addstrategy(TestStrategy)\ncerebro.adddata(data)\ncerebro.run()\ncerebro.plot()\n<\/pre>\n<h2>7. Conclusion<\/h2>\n<p>Algorithmic trading using machine learning and deep learning technologies can be a very useful tool in the stock market. AlgoSeek's data is an essential element for building such systems. By continuing to learn based on the methodologies presented in this course, you can create effective trading algorithms.<\/p>\n<p>Considering future possibilities, the synergy of machine learning and deep learning will continue to be an important factor for development. The process of integrating various data sources and developing comprehensive investment strategies through in-depth analysis has already begun.<\/p>\n<p>I hope this course has been helpful for your algorithmic trading research. Keep studying and experimenting to become a successful trader!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, machine learning and deep learning technologies have brought about revolutionary changes in the field of stock trading. This article will explore the fundamental knowledge, data processing, and modeling methodologies necessary for algorithmic trading using machine learning and deep learning. In particular, we will discuss how to build an actual algorithmic trading system &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35195\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading 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-35195","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, AlgoSeek Stock Quotes and Trading 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\/35195\/\" \/>\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, AlgoSeek Stock Quotes and Trading Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, machine learning and deep learning technologies have brought about revolutionary changes in the field of stock trading. This article will explore the fundamental knowledge, data processing, and modeling methodologies necessary for algorithmic trading using machine learning and deep learning. In particular, we will discuss how to build an actual algorithmic trading system &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35195\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:36:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:16:14+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\/35195\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35195\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data\",\"datePublished\":\"2024-11-01T09:36:47+00:00\",\"dateModified\":\"2024-11-01T11:16:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35195\/\"},\"wordCount\":823,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35195\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35195\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:36:47+00:00\",\"dateModified\":\"2024-11-01T11:16:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35195\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35195\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35195\/#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, AlgoSeek Stock Quotes and Trading 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, AlgoSeek Stock Quotes and Trading 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\/35195\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, machine learning and deep learning technologies have brought about revolutionary changes in the field of stock trading. This article will explore the fundamental knowledge, data processing, and modeling methodologies necessary for algorithmic trading using machine learning and deep learning. In particular, we will discuss how to build an actual algorithmic trading system &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data\"","og_url":"https:\/\/atmokpo.com\/w\/35195\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:36:47+00:00","article_modified_time":"2024-11-01T11:16:14+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\/35195\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35195\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data","datePublished":"2024-11-01T09:36:47+00:00","dateModified":"2024-11-01T11:16:14+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35195\/"},"wordCount":823,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35195\/","url":"https:\/\/atmokpo.com\/w\/35195\/","name":"Machine Learning and Deep Learning Algorithm Trading, AlgoSeek Stock Quotes and Trading Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:36:47+00:00","dateModified":"2024-11-01T11:16:14+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35195\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35195\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35195\/#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, AlgoSeek Stock Quotes and Trading 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\/35195","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=35195"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35195\/revisions"}],"predecessor-version":[{"id":35196,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35195\/revisions\/35196"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35195"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35195"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35195"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}