{"id":37841,"date":"2024-11-01T10:00:53","date_gmt":"2024-11-01T10:00:53","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37841"},"modified":"2024-11-01T11:09:19","modified_gmt":"2024-11-01T11:09:19","slug":"automated-trading-using-deep-learning-and-machine-learning-trading-strategy-based-on-ensemble-learning-generate-more-accurate-trading-signals-through-ensemble-learning-that-combines-multiple-models","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37841\/","title":{"rendered":"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models."},"content":{"rendered":"<p><body><\/p>\n<p>The market for cryptocurrencies like Bitcoin is highly volatile, and countless transactions occur every day. To generate profits in such a market environment, sophisticated trading strategies are necessary. Recently, with advancements in artificial intelligence (AI) technology, automated trading systems utilizing deep learning and machine learning have gained increasing attention. In this article, we will provide an in-depth explanation of a Bitcoin automated trading strategy based on ensemble learning and provide example code for it.<\/p>\n<h2>1. What is Ensemble Learning?<\/h2>\n<p>Ensemble Learning is a technique that combines multiple machine learning models to achieve better predictive performance. By combining the results of each model, which learns and predicts individually, we can reduce the errors that may occur in a single model and enhance generalization performance.<\/p>\n<p>Major methods of ensemble learning include <strong>Bagging<\/strong>, <strong>Boosting<\/strong>, and <strong>Stacking<\/strong>.<\/p>\n<h3>1.1 Bagging<\/h3>\n<p>Bagging involves dividing the data into several subsets and independently training a model on each subset. The final prediction is determined by averaging the predictions of each model or by majority vote. Random Forest is a representative bagging algorithm.<\/p>\n<h3>1.2 Boosting<\/h3>\n<p>Boosting is a technique for training the next model to correct the errors of the previous model. Each model is trained sequentially, combining several weak learners to create a strong learner. AdaBoost and XGBoost are well-known boosting algorithms.<\/p>\n<h3>1.3 Stacking<\/h3>\n<p>Stacking involves training several models and then using a new model (meta-model) to learn the predictions from each model to perform the final prediction. This allows for the creation of a model with stronger predictive power by aggregating the advantages of various models.<\/p>\n<h2>2. Designing a Bitcoin Automated Trading System<\/h2>\n<p>In this section, we will design an example system that combines CNN (Convolutional Neural Network) and LSTM (Long Short-Term Memory) models. This automated trading system will predict Bitcoin price fluctuations based on historical price data and generate trading signals based on the results.<\/p>\n<h3>2.1 Data Collection<\/h3>\n<p>Bitcoin price data can be collected through several APIs. In this example, we will use the <code>yfinance<\/code> library to fetch historical price data.<\/p>\n<h3>2.2 Data Preprocessing<\/h3>\n<p>The collected data needs to be preprocessed to fit the model. It is common to handle missing values and normalize the price data.<\/p>\n<h3>2.3 Model Training<\/h3>\n<p>The model to be trained will combine CNN and LSTM. CNN helps extract important features from time-series data, while LSTM is effective in learning sequence information and long-term dependencies in time-series data.<\/p>\n<h3>2.4 Generating Trading Signals<\/h3>\n<p>Using the trained model, predictions are made, and buy or sell signals are generated based on specific thresholds. For example, if the predicted price is higher than the current price, a buy signal can be generated; if lower, a sell signal can be sent.<\/p>\n<h2>3. Example Code<\/h2>\n<p>Now let&#8217;s implement the above explanations through an actual code example.<\/p>\n<pre>\n    <code>\nimport numpy as np\nimport pandas as pd\nimport yfinance as yf\nimport matplotlib.pyplot as plt\nfrom sklearn.model_selection import train_test_split\nfrom sklearn.preprocessing import MinMaxScaler\nfrom keras.models import Sequential\nfrom keras.layers import LSTM, Conv1D, Dense, Flatten, Dropout\n\n# Collecting Bitcoin data\ndata = yf.download('BTC-USD', start='2020-01-01', end='2023-10-01')\ndata = data['Close'].values\n\n# Data preprocessing\nscaler = MinMaxScaler(feature_range=(0, 1))\nscaled_data = scaler.fit_transform(data.reshape(-1, 1))\n\n# Function to create sequence data\ndef create_dataset(data, time_step=1):\n    X, y = [], []\n    for i in range(len(data) - time_step - 1):\n        X.append(data[i:(i + time_step), 0])\n        y.append(data[i + time_step, 0])\n    return np.array(X), np.array(y)\n\ntime_step = 60\nX, y = create_dataset(scaled_data, time_step)\nX = X.reshape(X.shape[0], X.shape[1], 1)\n\n# Split the data\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\n# Create LSTM model\nmodel = Sequential()\nmodel.add(Conv1D(filters=64, kernel_size=3, activation='relu', input_shape=(X_train.shape[1], 1)))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(50, return_sequences=True))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(50))\nmodel.add(Dropout(0.2))\nmodel.add(Dense(1))\n\n# Compile the model\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n\n# Train the model\nmodel.fit(X_train, y_train, epochs=50, batch_size=32)\n\n# Prediction\npredicted_price = model.predict(X_test)\npredicted_price = scaler.inverse_transform(predicted_price)\n\n# Visualization of results\nplt.figure(figsize=(10,6))\nplt.plot(scaler.inverse_transform(y_test.reshape(-1, 1)), color='blue', label='Actual Price')\nplt.plot(predicted_price, color='red', label='Predicted Price')\nplt.title('Bitcoin Price Prediction')\nplt.xlabel('Time')\nplt.ylabel('Price')\nplt.legend()\nplt.show()\n    <\/code>\n    <\/pre>\n<p>The above code is an example of a simple LSTM model implemented to predict Bitcoin prices. For it to become an actual trading system, additional logic is needed to generate trading signals.<\/p>\n<h2>4. Implementing Trading Strategy<\/h2>\n<p>After the model is trained, we move on to the stage of establishing a trading strategy based on the predicted prices. Here, we will generate trading signals based on the differences between predicted prices and actual prices as a simple strategy.<\/p>\n<pre>\n    <code>\n# Generate trading signals\ndef generate_signals(predicted_prices, actual_prices):\n    signals = np.zeros(len(predicted_prices))\n    for i in range(1, len(predicted_prices)):\n        if predicted_prices[i] > actual_prices[i-1]:\n            signals[i] = 1  # Buy signal\n        elif predicted_prices[i] < actual_prices[i-1]:\n            signals[i] = -1  # Sell signal\n    return signals\n\nsignals = generate_signals(predicted_price.flatten(), scaler.inverse_transform(y_test.reshape(-1, 1)).flatten())\n    <\/code>\n    <\/pre>\n<h2>5. Performance Evaluation<\/h2>\n<p>Evaluating the performance of the completed trading system is crucial. Several metrics can indicate the success of the system. Metrics such as return, maximum drawdown, and Sharpe ratio can be used for evaluation.<\/p>\n<pre>\n    <code>\n# Performance evaluation\ndef evaluate_performance(signals, actual_prices):\n    returns = np.zeros(len(signals))\n    for i in range(len(signals)-1):\n        if signals[i] == 1:  # Buy\n            returns[i+1] = actual_prices[i+1] \/ actual_prices[i] - 1\n        elif signals[i] == -1:  # Sell\n            returns[i+1] = -1 * (actual_prices[i+1] \/ actual_prices[i] - 1)\n    return np.cumprod(1 + returns) - 1\n\ncumulative_returns = evaluate_performance(signals, scaler.inverse_transform(y_test.reshape(-1, 1)).flatten())\n\n# Visualization of results\nplt.figure(figsize=(10,6))\nplt.plot(cumulative_returns, color='green', label='Cumulative Returns')\nplt.title('Bitcoin Automated Trading System Performance')\nplt.xlabel('Time')\nplt.ylabel('Returns')\nplt.legend()\nplt.show()\n    <\/code>\n    <\/pre>\n<h2>6. Conclusion<\/h2>\n<p>In this post, we explored how to design and implement a Bitcoin automated trading system using deep learning and machine learning based on the principles of ensemble learning. Ensemble learning is a useful technique that combines the strengths of various models to enhance predictive performance. In actual trading environments, more precise trading strategies are needed, and various advanced algorithms and techniques can also be utilized.<\/p>\n<p>It is essential to conduct more experiments and research to improve and advance the Bitcoin automated trading system. I encourage readers to develop their own trading strategies and experiment with them.<\/p>\n<p>Moreover, the cryptocurrency market is extremely volatile and high-risk. Therefore, it is crucial to conduct thorough research and review before engaging in actual trading.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The market for cryptocurrencies like Bitcoin is highly volatile, and countless transactions occur every day. To generate profits in such a market environment, sophisticated trading strategies are necessary. Recently, with advancements in artificial intelligence (AI) technology, automated trading systems utilizing deep learning and machine learning have gained increasing attention. In this article, we will provide &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37841\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models.&#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-37841","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>Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models. - \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\/37841\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"The market for cryptocurrencies like Bitcoin is highly volatile, and countless transactions occur every day. To generate profits in such a market environment, sophisticated trading strategies are necessary. Recently, with advancements in artificial intelligence (AI) technology, automated trading systems utilizing deep learning and machine learning have gained increasing attention. In this article, we will provide &hellip; \ub354 \ubcf4\uae30 &quot;Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37841\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:00:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:19+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\/37841\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37841\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models.\",\"datePublished\":\"2024-11-01T10:00:53+00:00\",\"dateModified\":\"2024-11-01T11:09:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37841\/\"},\"wordCount\":706,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37841\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37841\/\",\"name\":\"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:00:53+00:00\",\"dateModified\":\"2024-11-01T11:09:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37841\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37841\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37841\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models.\"}]},{\"@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 using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models. - \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\/37841\/","og_locale":"ko_KR","og_type":"article","og_title":"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"The market for cryptocurrencies like Bitcoin is highly volatile, and countless transactions occur every day. To generate profits in such a market environment, sophisticated trading strategies are necessary. Recently, with advancements in artificial intelligence (AI) technology, automated trading systems utilizing deep learning and machine learning have gained increasing attention. In this article, we will provide &hellip; \ub354 \ubcf4\uae30 \"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models.\"","og_url":"https:\/\/atmokpo.com\/w\/37841\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:00:53+00:00","article_modified_time":"2024-11-01T11:09:19+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\/37841\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37841\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models.","datePublished":"2024-11-01T10:00:53+00:00","dateModified":"2024-11-01T11:09:19+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37841\/"},"wordCount":706,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37841\/","url":"https:\/\/atmokpo.com\/w\/37841\/","name":"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:00:53+00:00","dateModified":"2024-11-01T11:09:19+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37841\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37841\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37841\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automated trading using deep learning and machine learning, Trading strategy based on Ensemble Learning. Generate more accurate trading signals through ensemble learning that combines multiple models."}]},{"@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\/37841","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=37841"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37841\/revisions"}],"predecessor-version":[{"id":37842,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37841\/revisions\/37842"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37841"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37841"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37841"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}