{"id":37887,"date":"2024-11-01T10:01:16","date_gmt":"2024-11-01T10:01:16","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37887"},"modified":"2024-11-01T11:09:08","modified_gmt":"2024-11-01T11:09:08","slug":"overview-of-automated-trading-using-deep-learning-and-machine-learning-bitcoin-automated-trading-system-basic-concepts-of-deep-learning-and-machine-learning-and-their-application-to-automated-tradin","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37887\/","title":{"rendered":"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems."},"content":{"rendered":"<p><body><\/p>\n<h2>1. Introduction<\/h2>\n<p>Trading in cryptocurrencies like Bitcoin has seen significant growth in recent years, alongside increased interest in automated trading systems. Automated trading systems execute trades automatically based on pre-set algorithms, allowing for the exclusion of emotional factors in investing. Machine learning (ML) and deep learning (DL) have become essential technologies for improving the performance of these systems and enhancing predictive capabilities.<\/p>\n<h2>2. Basic Concepts of Deep Learning and Machine Learning<\/h2>\n<p>Machine learning and deep learning are subfields of artificial intelligence (AI) that focus on methods for analyzing data and learning patterns.<\/p>\n<h3>2.1. Machine Learning<\/h3>\n<p>Machine learning is the technology that creates predictive models by learning from data without explicit programming. Machine learning algorithms recognize patterns through data and predict future outcomes based on this recognition. There are various machine learning algorithms, including:<\/p>\n<ul>\n<li>Supervised Learning: A model is trained based on given input data and labels.<\/li>\n<li>Unsupervised Learning: A method of finding patterns in data without labels.<\/li>\n<li>Reinforcement Learning: Learning to maximize rewards through interaction with the environment.<\/li>\n<\/ul>\n<h3>2.2. Deep Learning<\/h3>\n<p>Deep learning is a model formed through multi-layer artificial neural networks, demonstrating exceptional performance in processing large amounts of data and learning complex patterns. Deep learning is applied in various fields such as image recognition and natural language processing. The key components of deep learning are as follows:<\/p>\n<ul>\n<li>Neural Network: A model composed of input layers, hidden layers, and output layers.<\/li>\n<li>Activation Function: Determines the output by transforming the input values non-linearly within the neural network.<\/li>\n<li>Loss Function: Measures the difference between the model&#8217;s predicted results and the actual values.<\/li>\n<li>Backpropagation: An algorithm that updates weights to minimize the loss function.<\/li>\n<\/ul>\n<h2>3. Application to Automated Trading Systems<\/h2>\n<p>Automated trading systems execute trades automatically based on algorithms. Machine learning and deep learning technologies can be used to develop predictive models for this purpose.<\/p>\n<h3>3.1. Bitcoin Data Collection<\/h3>\n<p>To build an automated trading system, it is necessary to first collect various data, including Bitcoin price data and trading volume. Commonly used data sources include:<\/p>\n<ul>\n<li>Exchange APIs: Real-time price information can be obtained through APIs provided by exchanges like Binance and Coinbase.<\/li>\n<li>Data Providers: Datasets provided by specialized data providers like CryptoCompare and CoinGecko can be utilized.<\/li>\n<\/ul>\n<h3>3.2. Data Preprocessing<\/h3>\n<p>The collected data must be processed into a format suitable for model training. This process includes:<\/p>\n<ul>\n<li>Handling Missing Values: Any missing values in the data must be addressed.<\/li>\n<li>Normalization: Adjusting the data distribution to enhance the model&#8217;s learning effectiveness.<\/li>\n<li>Feature Selection: Removing unnecessary features from the model to increase efficiency.<\/li>\n<\/ul>\n<h3>3.3. Model Construction and Training<\/h3>\n<p>Machine learning or deep learning models are constructed and trained. Various algorithms can be applied during this process, for example:<\/p>\n<ul>\n<li>Regression Analysis: A basic model for predicting Bitcoin prices.<\/li>\n<li>LSTM (Long Short-Term Memory): A deep learning model that excels at processing data that changes over time.<\/li>\n<\/ul>\n<h3>3.4. Implementation of Algorithms and Trading Strategies<\/h3>\n<p>Based on the trained model, an actual automated trading algorithm is implemented. For example, the following trading strategies can be conceived:<\/p>\n<ul>\n<li>Moving Average Crossovers: Generates trading signals by comparing short-term and long-term moving averages.<\/li>\n<li>Anomaly Detection: Detects abnormal price fluctuations to capture trading opportunities.<\/li>\n<\/ul>\n<h3>3.5. Building a Real-Time Trading System<\/h3>\n<p>After implementing the model and algorithms, a system for executing real-time trades in conjunction with actual exchanges must be established. Typically, the following processes are included:<\/p>\n<ul>\n<li>API Connection: Creating orders and checking balances through exchange APIs.<\/li>\n<li>Real-Time Data Streaming: Processing trading decisions based on real-time price fluctuations.<\/li>\n<li>Monitoring and Reporting: Monitoring the system&#8217;s performance and generating reports.<\/li>\n<\/ul>\n<h2>4. Example Code<\/h2>\n<p>Here we will look at example code for creating a simple Bitcoin prediction model using Python. This code demonstrates building an LSTM model with the Keras library and retrieving data from the Binance API.<\/p>\n<h3>4.1. Installing Required Packages<\/h3>\n<pre><code>!pip install numpy pandas matplotlib tensorflow --upgrade\n!pip install python-binance<\/code><\/pre>\n<h3>4.2. Data Collection Coding<\/h3>\n<pre><code>from binance.client import Client\nimport pandas as pd\n\n# Enter Binance API key and secret key\napi_key = 'YOUR_API_KEY'\napi_secret = 'YOUR_API_SECRET'\nclient = Client(api_key, api_secret)\n\n# Fetch Bitcoin price data\ndef get_historical_data(symbol, interval, start_time):\n    klines = client.get_historical_klines(symbol, interval, start_time)\n    data = pd.DataFrame(klines, columns=['Open Time', 'Open', 'High', 'Low', 'Close', \n                                         'Volume', 'Close Time', 'Quote Asset Volume', \n                                         'Number of Trades', 'Taker Buy Base Asset Volume', \n                                         'Taker Buy Quote Asset Volume', 'Ignore'])\n    data['Close'] = data['Close'].astype(float)\n    return data[['Close']]\n\n# Data collection\ndata = get_historical_data('BTCUSDT', Client.KLINE_INTERVAL_1HOUR, \"1 month ago UTC\")\nprint(data.head())<\/code><\/pre>\n<h3>4.3. Data Preprocessing<\/h3>\n<pre><code>import numpy as np\n\n# Data normalization\nfrom sklearn.preprocessing import MinMaxScaler\n\nscaler = MinMaxScaler(feature_range=(0, 1))\nscaled_data = scaler.fit_transform(data['Close'].values.reshape(-1, 1))\n\n# Create dataset\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)\nprint(X.shape, y.shape)<\/code><\/pre>\n<h3>4.4. Model Construction and Training<\/h3>\n<pre><code>from tensorflow.keras.models import Sequential\nfrom tensorflow.keras.layers import LSTM, Dense, Dropout\n\n# Build LSTM model\nmodel = Sequential()\nmodel.add(LSTM(50, return_sequences=True, input_shape=(X.shape[1], 1)))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(50, return_sequences=False))\nmodel.add(Dropout(0.2))\nmodel.add(Dense(25))\nmodel.add(Dense(1))\n\n# Compile model\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n\n# Train model\nmodel.fit(X, y, batch_size=1, epochs=1)<\/code><\/pre>\n<h3>4.5. Prediction and Visualization<\/h3>\n<pre><code># Prediction\ntrain_predict = model.predict(X)\ntrain_predict = scaler.inverse_transform(train_predict)\n\n# Visualization\nimport matplotlib.pyplot as plt\n\nplt.figure(figsize=(14, 5))\nplt.plot(data['Close'].values, label='Actual Bitcoin Price', color='blue')\nplt.plot(range(time_step, time_step + len(train_predict)), train_predict, label='Predicted Bitcoin Price', color='red')\nplt.title('Bitcoin Price Prediction')\nplt.xlabel('Time')\nplt.ylabel('Price')\nplt.legend()\nplt.show()<\/code><\/pre>\n<h2>5. Conclusion<\/h2>\n<p>An automated trading system for Bitcoin leveraging deep learning and machine learning can contribute to increased efficiency in trading in the rapidly changing cryptocurrency market. This course started with the basic concepts of machine learning and deep learning, and provided a practical understanding through the construction process of an automated trading system and simple example code. In the future, various strategies and advanced models can be explored to develop even more sophisticated automated trading systems.<\/p>\n<p>I hope this article helps you in building your Bitcoin automated trading system!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction Trading in cryptocurrencies like Bitcoin has seen significant growth in recent years, alongside increased interest in automated trading systems. Automated trading systems execute trades automatically based on pre-set algorithms, allowing for the exclusion of emotional factors in investing. Machine learning (ML) and deep learning (DL) have become essential technologies for improving the performance &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37887\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems.&#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-37887","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>Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems. - \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\/37887\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction Trading in cryptocurrencies like Bitcoin has seen significant growth in recent years, alongside increased interest in automated trading systems. Automated trading systems execute trades automatically based on pre-set algorithms, allowing for the exclusion of emotional factors in investing. Machine learning (ML) and deep learning (DL) have become essential technologies for improving the performance &hellip; \ub354 \ubcf4\uae30 &quot;Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37887\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:01:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:08+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\/37887\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37887\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems.\",\"datePublished\":\"2024-11-01T10:01:16+00:00\",\"dateModified\":\"2024-11-01T11:09:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37887\/\"},\"wordCount\":745,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37887\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37887\/\",\"name\":\"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:01:16+00:00\",\"dateModified\":\"2024-11-01T11:09:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37887\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37887\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37887\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems.\"}]},{\"@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":"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems. - \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\/37887\/","og_locale":"ko_KR","og_type":"article","og_title":"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction Trading in cryptocurrencies like Bitcoin has seen significant growth in recent years, alongside increased interest in automated trading systems. Automated trading systems execute trades automatically based on pre-set algorithms, allowing for the exclusion of emotional factors in investing. Machine learning (ML) and deep learning (DL) have become essential technologies for improving the performance &hellip; \ub354 \ubcf4\uae30 \"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems.\"","og_url":"https:\/\/atmokpo.com\/w\/37887\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:01:16+00:00","article_modified_time":"2024-11-01T11:09:08+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\/37887\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37887\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems.","datePublished":"2024-11-01T10:01:16+00:00","dateModified":"2024-11-01T11:09:08+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37887\/"},"wordCount":745,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37887\/","url":"https:\/\/atmokpo.com\/w\/37887\/","name":"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:01:16+00:00","dateModified":"2024-11-01T11:09:08+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37887\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37887\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37887\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Overview of Automated Trading Using Deep Learning and Machine Learning, Bitcoin Automated Trading System: Basic Concepts of Deep Learning and Machine Learning and Their Application to Automated Trading Systems."}]},{"@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\/37887","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=37887"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37887\/revisions"}],"predecessor-version":[{"id":37888,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37887\/revisions\/37888"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}