{"id":37849,"date":"2024-11-01T10:00:57","date_gmt":"2024-11-01T10:00:57","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37849"},"modified":"2024-11-01T11:09:17","modified_gmt":"2024-11-01T11:09:17","slug":"automatic-trading-using-deep-learning-and-machine-learning-time-series-prediction-using-lstm-lstm-long-short-term-memory-is-a-method-to-predict-the-time-series-data-of-bitcoin","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37849\/","title":{"rendered":"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin."},"content":{"rendered":"<p><body><\/p>\n<p>In recent years, Bitcoin has emerged as the most notable asset in the cryptocurrency market, with many investors leveraging it to seek profits. However, predicting the price of Bitcoin is quite challenging due to its high volatility. This article will discuss how to predict Bitcoin&#8217;s time series data using a deep learning method known as LSTM (Long Short-Term Memory) network.<\/p>\n<h2>1. What is Time Series Data?<\/h2>\n<p>Time series data is a dataset that records the values of each variable at specific times, generally collected over time. In other words, data such as Bitcoin&#8217;s price and trading volume change over time, allowing for predictions and analysis based on this information. Examples of time series data include stock prices, weather information, and sales data.<\/p>\n<h2>2. What is an LSTM Network?<\/h2>\n<p>The LSTM (Long Short-Term Memory) network is a type of RNN (Recurrent Neural Network) developed to address the long-term dependency problem inherent in recurrent neural networks. LSTM has memory cells that allow it to store information for extended periods and uses three main gates to regulate information.<\/p>\n<ul>\n<li><strong>Input Gate:<\/strong> Decides what information to add to the cell state based on the current input and previous output information.<\/li>\n<li><strong>Forget Gate:<\/strong> Determines what information to discard from the previous cell state.<\/li>\n<li><strong>Output Gate:<\/strong> Decides what information to output from the cell state.<\/li>\n<\/ul>\n<h2>3. Building a Bitcoin Prediction Model Using LSTM<\/h2>\n<p>This section will explain how to predict Bitcoin&#8217;s future prices using LSTM. Below are the steps necessary to carry out this process.<\/p>\n<h3>3.1 Data Collection<\/h3>\n<p>There are several APIs available for collecting Bitcoin price data. Generally, CryptoCompare, Binance, and CoinGecko can be used. In this example, we will demonstrate how to collect and process data using Pandas and NumPy.<\/p>\n<h4>Example Code: Data Collection<\/h4>\n<pre><code class=\"language-python\">\nimport pandas as pd\nimport numpy as np\n\n# Example of data collection using Binance API\ndef fetch_data(symbol='BTCUSDT', interval='1d', limit=1000):\n    url = f'https:\/\/api.binance.com\/api\/v3\/klines?symbol={symbol}&amp;interval={interval}&amp;limit={limit}'\n    df = pd.read_json(url)\n    df = df[[0, 4]].rename(columns={0: 'timestamp', 4: 'close_price'})\n    df['timestamp'] = pd.to_datetime(df['timestamp'], unit='ms')\n    return df\n\n# Download data\ndf = fetch_data()\nprint(df.head())\n    <\/code><\/pre>\n<h3>3.2 Data Preprocessing<\/h3>\n<p>The collected data needs to be processed to be suitable for model training. Generally, what we need is &#8216;normalization&#8217;. The LSTM model performs better when input values are within a small range, so we will use the Min-Max normalization method.<\/p>\n<h4>Example Code: Data Preprocessing<\/h4>\n<pre><code class=\"language-python\">\nfrom sklearn.preprocessing import MinMaxScaler\n\n# Data normalization\nscaler = MinMaxScaler(feature_range=(0, 1))\ndf['scaled_close'] = scaler.fit_transform(df['close_price'].values.reshape(-1, 1))\n\n# Data splitting\ntrain_size = int(len(df) * 0.8)\ntrain_data = df['scaled_close'][:train_size]\ntest_data = df['scaled_close'][train_size:]\n\n# Sequence generation\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)])\n        Y.append(data[i + time_step])\n    return np.array(X), np.array(Y)\n\ntime_step = 10\nX_train, y_train = create_dataset(train_data.values, time_step)\nX_test, y_test = create_dataset(test_data.values, time_step)\n\n# Reshape input data dimensions\nX_train = X_train.reshape(X_train.shape[0], X_train.shape[1], 1)\nX_test = X_test.reshape(X_test.shape[0], X_test.shape[1], 1)\n    <\/code><\/pre>\n<h3>3.3 Building and Training the LSTM Model<\/h3>\n<p>Now, we build and train the LSTM model. You can configure the LSTM model using the Keras library.<\/p>\n<h4>Example Code: Building and Training the LSTM Model<\/h4>\n<pre><code class=\"language-python\">\nfrom keras.models import Sequential\nfrom keras.layers import Dense, LSTM, Dropout\n\n# Building the LSTM model\nmodel = Sequential()\nmodel.add(LSTM(units=50, return_sequences=True, input_shape=(X_train.shape[1], 1)))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(units=50, return_sequences=False))\nmodel.add(Dropout(0.2))\nmodel.add(Dense(units=1))  # Output layer\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    <\/code><\/pre>\n<h3>3.4 Prediction and Result Visualization<\/h3>\n<p>Once the model is trained, predictions can be made using the test data, and the results can be visualized.<\/p>\n<h4>Example Code: Prediction and Visualization<\/h4>\n<pre><code class=\"language-python\">\nimport matplotlib.pyplot as plt\n\n# Perform predictions\ntrain_predict = model.predict(X_train)\ntest_predict = model.predict(X_test)\n\n# Reverse data scaling\ntrain_predict = scaler.inverse_transform(train_predict)\ntest_predict = scaler.inverse_transform(test_predict)\n\n# Visualization\nplt.figure(figsize=(14, 5))\nplt.plot(df['timestamp'][:train_size], scaler.inverse_transform(train_data.values[time_step:-1]), label='Train Data', color='blue')\nplt.plot(df['timestamp'][train_size + time_step:-1], scaler.inverse_transform(test_data.values[time_step:-1]), label='Test Data', color='orange')\nplt.plot(df['timestamp'][time_step:train_size], train_predict, label='Train Predict', color='red')\nplt.plot(df['timestamp'][train_size + time_step:], test_predict, label='Test Predict', color='green')\nplt.legend()\nplt.show()\n    <\/code><\/pre>\n<h2>4. Model Evaluation and Improvement<\/h2>\n<p>Evaluating the model is essential for improving prediction accuracy and making necessary improvements. The RMSE (Root Mean Squared Error) can be used to calculate the differences between predicted data and actual data from the model.<\/p>\n<h4>Example Code: Calculating RMSE<\/h4>\n<pre><code class=\"language-python\">\nfrom sklearn.metrics import mean_squared_error\n\n# Calculate RMSE\ntrain_rmse = np.sqrt(mean_squared_error(scaler.inverse_transform(train_predict), scaler.inverse_transform(train_data.values[time_step:-1])))\ntest_rmse = np.sqrt(mean_squared_error(scaler.inverse_transform(test_predict), scaler.inverse_transform(test_data.values[time_step:-1])))\nprint(f'Train RMSE: {train_rmse}, Test RMSE: {test_rmse}')\n    <\/code><\/pre>\n<h2>5. Additional Considerations<\/h2>\n<p>After building the model, further considerations are necessary. Performance can vary based on various hyperparameter adjustments, model complexity management, and data collection methods according to the nature of the data. Here are some tips.<\/p>\n<ul>\n<li>Data Augmentation: It is advisable to collect more data and provide more features to the model by using various cycles.<\/li>\n<li>Hyperparameter Tuning: Adjusting hyperparameters such as the number of units in LSTM and learning rate is important to find the optimal combination.<\/li>\n<li>Batch Normalization: Adding batch normalization before LSTM layers can increase the learning speed.<\/li>\n<li>Ensemble Learning: Combining multiple models can enhance the reliability of predictions.<\/li>\n<\/ul>\n<h2>6. Conclusion<\/h2>\n<p>This article discussed how to predict Bitcoin&#8217;s time series data using LSTM. LSTM is a powerful tool that can improve the accuracy of time series data prediction by addressing long-term dependency issues. However, it is crucial to design the model well and improve it appropriately. Further research and experimentation can yield even better performance.<\/p>\n<p>More advanced strategies for automated Bitcoin trading involve combining various algorithms beyond LSTM. For instance, you can consider using CNN (Convolutional Neural Network) to recognize price patterns or reinforcement learning (RL) to find the optimal trading timing. Given the complexity of time series data, these various approaches can provide even more advantages.<\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/www.tensorflow.org\/api_docs\/python\/tf\/keras\/layers\/LSTM\" target=\"_blank\" rel=\"noopener\">TensorFlow Keras LSTM API<\/a><\/li>\n<li><a href=\"https:\/\/www.kaggle.com\/competitions\/dailymail-article-text-summarization\" target=\"_blank\" rel=\"noopener\">Kaggle LSTM Examples and Datasets<\/a><\/li>\n<li><a href=\"https:\/\/towardsdatascience.com\/deep-learning-for-time-series-forecasting-using-lstm-e3a6ecaf6656\" target=\"_blank\" rel=\"noopener\">Blog Post on Time Series Forecasting Using LSTM<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, Bitcoin has emerged as the most notable asset in the cryptocurrency market, with many investors leveraging it to seek profits. However, predicting the price of Bitcoin is quite challenging due to its high volatility. This article will discuss how to predict Bitcoin&#8217;s time series data using a deep learning method known as &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37849\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin.&#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-37849","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>Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin. - \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\/37849\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, Bitcoin has emerged as the most notable asset in the cryptocurrency market, with many investors leveraging it to seek profits. However, predicting the price of Bitcoin is quite challenging due to its high volatility. This article will discuss how to predict Bitcoin&#8217;s time series data using a deep learning method known as &hellip; \ub354 \ubcf4\uae30 &quot;Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37849\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:00:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:17+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\/37849\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37849\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin.\",\"datePublished\":\"2024-11-01T10:00:57+00:00\",\"dateModified\":\"2024-11-01T11:09:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37849\/\"},\"wordCount\":693,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37849\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37849\/\",\"name\":\"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:00:57+00:00\",\"dateModified\":\"2024-11-01T11:09:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37849\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37849\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37849\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin.\"}]},{\"@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":"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin. - \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\/37849\/","og_locale":"ko_KR","og_type":"article","og_title":"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, Bitcoin has emerged as the most notable asset in the cryptocurrency market, with many investors leveraging it to seek profits. However, predicting the price of Bitcoin is quite challenging due to its high volatility. This article will discuss how to predict Bitcoin&#8217;s time series data using a deep learning method known as &hellip; \ub354 \ubcf4\uae30 \"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin.\"","og_url":"https:\/\/atmokpo.com\/w\/37849\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:00:57+00:00","article_modified_time":"2024-11-01T11:09:17+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\/37849\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37849\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin.","datePublished":"2024-11-01T10:00:57+00:00","dateModified":"2024-11-01T11:09:17+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37849\/"},"wordCount":693,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37849\/","url":"https:\/\/atmokpo.com\/w\/37849\/","name":"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:00:57+00:00","dateModified":"2024-11-01T11:09:17+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37849\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37849\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37849\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automatic trading using deep learning and machine learning, Time series prediction using LSTM LSTM (Long Short-Term Memory) is a method to predict the time series data of Bitcoin."}]},{"@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\/37849","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=37849"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37849\/revisions"}],"predecessor-version":[{"id":37850,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37849\/revisions\/37850"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37849"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37849"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37849"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}