{"id":35997,"date":"2024-11-01T09:44:40","date_gmt":"2024-11-01T09:44:40","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35997"},"modified":"2024-11-01T11:09:33","modified_gmt":"2024-11-01T11:09:33","slug":"machine-learning-and-deep-learning-algorithm-trading-factor-engineering-using-pandas-and-numpy","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35997\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy"},"content":{"rendered":"<p><body><\/p>\n<h2>Introduction<\/h2>\n<p>\n        The stock market is a complex and ever-changing environment. To succeed in this environment, data analysis and accurate predictions are essential. Recently, advancements in machine learning and deep learning technologies have opened up new horizons for algorithmic trading. In this course, we will explain how to build automated trading systems using machine learning and deep learning, and provide a detailed introduction to factor engineering using pandas and numpy.\n    <\/p>\n<h2>1. Basics of Algorithmic Trading<\/h2>\n<p>\n        Algorithmic trading refers to executing trades automatically based on a defined algorithm. This method eliminates human emotions and subjectivity, allowing for the efficient execution of specific trading strategies. Among the various approaches to algorithmic trading, those utilizing machine learning and deep learning are gaining attention.\n    <\/p>\n<h3>1.1 Advantages of Algorithmic Trading<\/h3>\n<ul>\n<li>Elimination of emotional factors<\/li>\n<li>Ability to handle large volumes of data<\/li>\n<li>Consistent strategy execution<\/li>\n<li>Application of advanced analytical techniques<\/li>\n<\/ul>\n<h2>2. Fundamental Concepts of Machine Learning and Deep Learning<\/h2>\n<p>\n        Machine learning refers to algorithms that learn from data to make predictions and decisions. Deep learning is a branch of machine learning that uses neural networks to perform more complex data analysis. These two technologies have become powerful tools in stock market data prediction.\n    <\/p>\n<h3>2.1 Types of Machine Learning<\/h3>\n<ul>\n<li>Supervised Learning: A method of learning to create predictive models using labeled data.<\/li>\n<li>Unsupervised Learning: A method to discover patterns in unlabeled data.<\/li>\n<li>Reinforcement Learning: A method of learning through interactions with the environment.<\/li>\n<\/ul>\n<h3>2.2 Basics of Deep Learning<\/h3>\n<p>\n        Deep learning is a technique that automatically learns features from large datasets using multi-layer neural networks. It particularly excels at performance in image, text, and time series data. Commonly used deep learning models include CNN, RNN, and LSTM.\n    <\/p>\n<h2>3. Importance of Factor Engineering<\/h2>\n<p>\n        Factor engineering is the process of analyzing and utilizing various factors that determine the future returns of assets. This process is crucial for discovering useful patterns in the stock market and establishing strategies. Factors are typically constructed from price, volume, financial metrics, and more.\n    <\/p>\n<h3>3.1 Definition of Key Factors<\/h3>\n<ul>\n<li>Value: A factor used to find undervalued assets, typically using metrics like PER and PBR.<\/li>\n<li>Momentum: Measures the likelihood that a price uptrend will continue.<\/li>\n<li>Volatility: Uses the price volatility of assets to generate trading signals.<\/li>\n<\/ul>\n<h2>4. Data Analysis Using Pandas and Numpy<\/h2>\n<p>\n        Pandas and Numpy are very useful for stock market data analysis. Pandas is a Python library for data manipulation and analysis, while Numpy is a library for high-performance numerical computation.\n    <\/p>\n<h3>4.1 Installing Pandas and Basic Usage<\/h3>\n<pre>\n        <code>\n        pip install pandas\n        <\/code>\n    <\/pre>\n<p>\n        The primary data structure in pandas is the DataFrame, which allows for easy data analysis and transformation. Below is an example of creating a DataFrame.\n    <\/p>\n<pre>\n        <code>\nimport pandas as pd\n\n# Creating a DataFrame\ndata = {'Stock': ['A', 'B', 'C'], 'Price': [100, 200, 300]}\ndf = pd.DataFrame(data)\nprint(df)\n        <\/code>\n    <\/pre>\n<h3>4.2 Installing Numpy and Basic Usage<\/h3>\n<pre>\n        <code>\n        pip install numpy\n        <\/code>\n    <\/pre>\n<p>\n        Numpy is a powerful library for efficiently handling arrays and is widely used for numerical computations. Below is an example of creating an array using numpy and performing basic operations.\n    <\/p>\n<pre>\n        <code>\nimport numpy as np\n\n# Creating a numpy array\narr = np.array([1, 2, 3, 4, 5])\nprint(arr.mean())\n        <\/code>\n    <\/pre>\n<h2>5. Building a Machine Learning Model<\/h2>\n<p>\n        The process of building a machine learning model for stock market prediction is divided into steps of data preparation, model selection, training, and evaluation. In this process, data can be processed using pandas and numpy, and models can be trained using the Scikit-learn library.\n    <\/p>\n<h3>5.1 Data Collection and Preprocessing<\/h3>\n<p>\n        Stock data can be collected from various platforms such as Yahoo Finance and Alpha Vantage. Below is an example of loading data from a CSV file using pandas.\n    <\/p>\n<pre>\n        <code>\ndf = pd.read_csv('stock_data.csv')\n        <\/code>\n    <\/pre>\n<p>\n        After data collection, preprocessing must be performed, including handling missing values and removing outliers. In the preprocessing stage, the following tasks may be performed.\n    <\/p>\n<pre>\n        <code>\n# Handling missing values\ndf.fillna(method='ffill', inplace=True)\n\n# Removing outliers\ndf = df[df['Price'] < 1000]\n        <\/code>\n    <\/pre>\n<h3>5.2 Selecting a Machine Learning Model<\/h3>\n<p>\n        After data preprocessing, it is necessary to select a machine learning model. Various machine learning algorithms can be utilized for stock price prediction, including regression models and classification models. Representative algorithms include decision trees, random forests, and support vector machines (SVM).\n    <\/p>\n<h3>5.3 Training and Evaluating the Model<\/h3>\n<p>\n        The Scikit-learn library can be used to train and evaluate models. The data is divided into training and testing sets, and the model's performance is assessed using various evaluation metrics.\n    <\/p>\n<pre>\n        <code>\nfrom sklearn.model_selection import train_test_split\nfrom sklearn.ensemble import RandomForestRegressor\nfrom sklearn.metrics import mean_squared_error\n\nX = df[['Feature1', 'Feature2']]  # Feature variables\ny = df['TargetVariable']             # Target variable\n\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\nmodel = RandomForestRegressor()\nmodel.fit(X_train, y_train)\npredictions = model.predict(X_test)\n\n# Model Evaluation\nmse = mean_squared_error(y_test, predictions)\nprint(f'MSE: {mse}')\n        <\/code>\n    <\/pre>\n<h2>6. Building a Deep Learning Model<\/h2>\n<p>\n        Through deep learning methods, more complex data patterns can be learned. Keras or TensorFlow libraries can be used to easily build deep neural networks. This process also requires steps for data preparation and model construction.\n    <\/p>\n<h3>6.1 Installing Keras and Building a Model<\/h3>\n<pre>\n        <code>\n        pip install keras\n        <\/code>\n    <\/pre>\n<p>\n        The Sequential model from Keras can be used to construct neural networks. Below is an example of building a simple deep learning model.\n    <\/p>\n<pre>\n        <code>\nfrom keras.models import Sequential\nfrom keras.layers import Dense\n\nmodel = Sequential()\nmodel.add(Dense(64, activation='relu', input_dim=X_train.shape[1]))\nmodel.add(Dense(64, activation='relu'))\nmodel.add(Dense(1, activation='linear'))\n\nmodel.compile(optimizer='adam', loss='mean_squared_error')\nmodel.fit(X_train, y_train, epochs=100, batch_size=32)\n        <\/code>\n    <\/pre>\n<h3>6.2 Evaluating and Predicting with the Model<\/h3>\n<p>\n        Deep learning models can also be evaluated through performance metrics. Various trading strategies can be devised based on the prediction results.\n    <\/p>\n<pre>\n        <code>\nloss = model.evaluate(X_test, y_test)\npredictions = model.predict(X_test)\nprint(f'Loss: {loss}')\n        <\/code>\n    <\/pre>\n<h2>7. Strategy Simulation and Result Analysis<\/h2>\n<p>\n        Finally, based on the model's prediction results, trading strategies should be simulated and their results analyzed. In this process, performance metrics can be quantified to find the optimal trading strategy.\n    <\/p>\n<h3>7.1 Performance Metrics<\/h3>\n<ul>\n<li>Sharpe Ratio: Measures the return relative to risk.<\/li>\n<li>Max Drawdown: Tracks the maximum loss.<\/li>\n<li>Trading Frequency: Analyzes the frequency of trades.<\/li>\n<\/ul>\n<h3>7.2 Implementing Backtesting<\/h3>\n<p>\n        The process of verifying the performance of a strategy using historical data is called backtesting. In this process, it can be confirmed whether the trading strategy is valid.\n    <\/p>\n<pre>\n        <code>\n# Example of a simple backtesting structure\ninitial_balance = 1000000\nbalance = initial_balance\n\nfor price in predictions:\n    if price > threshold:  # Buy condition\n        balance -= price\n    else:  # Sell condition\n        balance += price\n\nprint(f'Final Balance: {balance}')\n        <\/code>\n    <\/pre>\n<h2>Conclusion<\/h2>\n<p>\n        Algorithmic trading utilizing machine learning and deep learning will become increasingly important in the financial market of the future. By mastering data analysis methods using pandas and numpy and developing algorithmic trading strategies based on this knowledge, you will be one step closer to successful investments. I hope you enjoy the process of building and validating your own trading strategies based on the knowledge gained from this course.\n    <\/p>\n<h2>References<\/h2>\n<ul>\n<li>Python for Data Analysis by Wes McKinney<\/li>\n<li>Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow by Aur\u00e9lien G\u00e9ron<\/li>\n<li>Deep Learning for Finance by Jannes Klaas<\/li>\n<\/ul>\n<footer>\n<p>\u00a9 2023 Algorithmic Trading Course. All rights reserved.<\/p>\n<\/footer>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction The stock market is a complex and ever-changing environment. To succeed in this environment, data analysis and accurate predictions are essential. Recently, advancements in machine learning and deep learning technologies have opened up new horizons for algorithmic trading. In this course, we will explain how to build automated trading systems using machine learning and &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35997\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy&#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-35997","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, Factor Engineering Using Pandas and NumPy - \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\/35997\/\" \/>\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, Factor Engineering Using Pandas and NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Introduction The stock market is a complex and ever-changing environment. To succeed in this environment, data analysis and accurate predictions are essential. Recently, advancements in machine learning and deep learning technologies have opened up new horizons for algorithmic trading. In this course, we will explain how to build automated trading systems using machine learning and &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35997\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:44:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:33+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\/35997\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35997\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy\",\"datePublished\":\"2024-11-01T09:44:40+00:00\",\"dateModified\":\"2024-11-01T11:09:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35997\/\"},\"wordCount\":950,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35997\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35997\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:44:40+00:00\",\"dateModified\":\"2024-11-01T11:09:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35997\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35997\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35997\/#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, Factor Engineering Using Pandas and NumPy\"}]},{\"@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, Factor Engineering Using Pandas and NumPy - \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\/35997\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Introduction The stock market is a complex and ever-changing environment. To succeed in this environment, data analysis and accurate predictions are essential. Recently, advancements in machine learning and deep learning technologies have opened up new horizons for algorithmic trading. In this course, we will explain how to build automated trading systems using machine learning and &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy\"","og_url":"https:\/\/atmokpo.com\/w\/35997\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:44:40+00:00","article_modified_time":"2024-11-01T11:09:33+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\/35997\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35997\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy","datePublished":"2024-11-01T09:44:40+00:00","dateModified":"2024-11-01T11:09:33+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35997\/"},"wordCount":950,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35997\/","url":"https:\/\/atmokpo.com\/w\/35997\/","name":"Machine Learning and Deep Learning Algorithm Trading, Factor Engineering Using Pandas and NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:44:40+00:00","dateModified":"2024-11-01T11:09:33+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35997\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35997\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35997\/#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, Factor Engineering Using Pandas and NumPy"}]},{"@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\/35997","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=35997"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35997\/revisions"}],"predecessor-version":[{"id":35998,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35997\/revisions\/35998"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}