{"id":102033,"date":"2025-02-14T11:01:13","date_gmt":"2025-02-14T11:01:13","guid":{"rendered":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/"},"modified":"2025-02-14T11:01:13","modified_gmt":"2025-02-14T11:01:13","slug":"how-to-code-an-ai-machine-learning-trading-algorithm","status":"publish","type":"post","link":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/","title":{"rendered":"How to Code an AI &#8212; Machine Learning Trading Algorithm"},"content":{"rendered":"<div class=\"youtubomatic-video-container\"><iframe loading=\"lazy\" width=\"580\" height=\"380\" src=\"https:\/\/www.youtube.com\/embed\/l6nE7oDywOY?autoplay=1&#038;controls=1&#038;hl=en\" frameborder=\"0\" allowfullscreen><\/iframe><\/div>\n<p>\u200b @MattMacarty<br \/>\n#algotrading  #machinelearning   #python    #tradingbots #algorithmictrading   #lumibot<\/p>\n<p>\u2705   Use code MACARTY20 for 20% off lumiwealth programs <a href=\"https:\/\/lumiwealth.com\" target=\"_blank\">https:\/\/lumiwealth.com<\/a><br \/>\n(I do not get a commission)<\/p>\n<p>How to code an AI &#8212; Machine Learning Support Vector Machine in Python<\/p>\n<p>AI (Machine Learning) with Python sklearn<\/p>\n<p>\u2705   Please SUBSCRIBE:<br \/>\n<a href=\"https:\/\/www.youtube.com\/subscription_center?add_user=mjmacarty\" target=\"_blank\">https:\/\/www.youtube.com\/subscription_center?add_user=mjmacarty<\/a><\/p>\n<p>\u2705  Get the code: <a href=\"https:\/\/github.com\/mjmacarty\/algorithmic-trading\" target=\"_blank\">https:\/\/github.com\/mjmacarty\/algorithmic-trading<\/a><\/p>\n<p>\u2705   Learn the basics here: <a href=\"https:\/\/youtu.be\/PMkBgsmXdTU\" target=\"_blank\">https:\/\/youtu.be\/PMkBgsmXdTU<\/a><\/p>\n<p>\u2705   Algo trading playlist: <a href=\"https:\/\/www.youtube.com\/playlist?list=PLiPFKCVZWHKqtlvkq-V610SXMr2Ii9uAR\" target=\"_blank\">https:\/\/www.youtube.com\/playlist?list=PLiPFKCVZWHKqtlvkq-V610SXMr2Ii9uAR<\/a><\/p>\n<p>\u2705  Lumibot Documentation: <a href=\"https:\/\/lumibot.lumiwealth.com\" target=\"_blank\">https:\/\/lumibot.lumiwealth.com<\/a><\/p>\n<p>\u2705   Visit <a href=\"https:\/\/alphabench.com\" target=\"_blank\">https:\/\/alphabench.com<\/a> for more Excel, Python and MySQL tutorials<\/p>\n<p>\u2705   Learn how to use Quantstats as a stand-alone backtester  <a href=\"https:\/\/youtu.be\/VzE2nV39cQg\" target=\"_blank\">https:\/\/youtu.be\/VzE2nV39cQg<\/a><\/p>\n<p>***This video is for educational purposes only. It should not be construed as investment advice.***<\/p>\n<p>Gold is one of the most popular assets in the financial world, with a rich history of serving as a store of value and a hedge against inflation. However, trading gold can be complex and time-consuming, requiring constant monitoring of market trends and analysis of data.  <\/p>\n<p>This example Gold Machine Learning Trading Bot is based on pattern recognition classification using a support vector machine model. SVM aims to identify and profit by predicting market direction  of the price movement. This video shows you how to implement and automate trading using a machine learning model to either buy or short the GLD ETF.<\/p>\n<p>1. Project Setup<\/p>\n<p>Install Lumibot:<br \/>\nBash<\/p>\n<p>pip install lumibot<br \/>\nCreate a Python Environment:<br \/>\nThis is highly recommended to isolate your project dependencies. Use tools like virtualenv or conda.<br \/>\nSet up Lumibot Configuration:<br \/>\nCreate a configuration file (e.g., .env) to store:<br \/>\nAPI keys for your brokerage (e.g., Alpaca, Interactive Brokers, Tradier)<br \/>\nData providers (e.g., Yahoo Finance, Polygon)<br \/>\nLogging settings<br \/>\nBacktesting parameters<br \/>\n2. Code Your Algorithm<\/p>\n<p>Define a Strategy Class:<br \/>\nInherit from the lumibot.strategies.Strategy class.<br \/>\nImplement the on_trading_iteration() method:<br \/>\nThis method is called at each trading interval (e.g., daily, hourly).<br \/>\nWithin this method:<br \/>\nFetch Market Data: Use Lumibot&#8217;s data fetching capabilities to get real-time or historical data (stock prices, option chains, volatility).<br \/>\nCalculate Signals: Implement your trading logic (e.g., option Greeks, technical indicators, machine learning models).<br \/>\nGenerate Orders: Create Order objects based on your trading signals.<br \/>\nSubmit Orders: Use self.submit_order() to send orders to your brokerage.<br \/>\nExample (Simplified):<\/p>\n<p>Python Pseudocode<\/p>\n<p>from lumibot.strategies import Strategy<\/p>\n<p>class ML(Strategy):<br \/>\n    def on_trading_iteration(self):<br \/>\n        # 1. Fetch Market Data<\/p>\n<p>        # 2. Calculate Signals<\/p>\n<p>       #3 Create and submit orders<br \/>\n                order = self.create_order(option.symbol, 1, &#8220;buy&#8221;)<br \/>\n                self.submit_order(order)<br \/>\n       #4  Backtesting<\/p>\n<p>Use Lumibot&#8217;s Backtesting Framework:<br \/>\nCreate a backtesting engine (e.g., PolygonDataBacktesting) to simulate historical market conditions.<br \/>\nRun your strategy on historical data using the backtesting engine.<br \/>\nAnalyze Backtesting Results:<br \/>\nCalculate key performance metrics:<br \/>\nAnnualized return<br \/>\nSharpe ratio<br \/>\nMaximum drawdown<br \/>\nWin rate<br \/>\nVisualize results:<br \/>\nPlot equity curves<br \/>\nAnalyze trade distributions<\/p>\n<p>      #5 Refine and Iterate<\/p>\n<p>Analyze backtesting results and identify areas for improvement.<br \/>\nAdjust parameters and refine your trading logic.<br \/>\nContinuously test and iterate on your algorithm.<br \/>\nImportant Considerations:<\/p>\n<p>Risk Management: Implement robust risk management rules (e.g., stop-loss orders, position sizing) to protect your capital.<br \/>\nData Quality: Ensure the accuracy and reliability of the market data you use.<br \/>\nOverfitting: Avoid overfitting your algorithm to historical data. Use techniques like cross-validation to prevent overfitting.<br \/>\nDisclaimer:<\/p>\n<p>This is a simplified example. Real-world options trading algorithms are significantly more complex.<\/p>\n<p>Backtesting results do not guarantee future performance.<br \/>\nThis information is for educational purposes only and should not be considered investment advice.<br \/>\nBy following these steps and continuously refining your approach, you can effectively code, test, and deploy trading algorithms using Lumibot.\u200b<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u200b @MattMacarty #algotrading #machinelearning #python #tradingbots #algorithmictrading #lumibot \u2705 Use code MACARTY20 for 20% off lumiwealth programs https:\/\/lumiwealth.com (I do not get a commission) How to code an AI &#8212; Machine Learning Support Vector Machine in Python AI (Machine Learning) with Python sklearn \u2705 Please SUBSCRIBE: https:\/\/www.youtube.com\/subscription_center?add_user=mjmacarty \u2705 Get the code: https:\/\/github.com\/mjmacarty\/algorithmic-trading \u2705 Learn the basics here: https:\/\/youtu.be\/PMkBgsmXdTU \u2705 Algo trading playlist: https:\/\/www.youtube.com\/playlist?list=PLiPFKCVZWHKqtlvkq-V610SXMr2Ii9uAR \u2705 Lumibot Documentation: https:\/\/lumibot.lumiwealth.com \u2705 Visit https:\/\/alphabench.com&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","tve_updated_post":"","tve_custom_css":"","tve_user_custom_css":"","tve_globals":{},"tcb2_ready":0,"tcb_editor_enabled":0,"tve_landing_page":"","_tve_header":"","_tve_footer":""},"categories":[1],"tags":[],"class_list":["post-102033","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Code an AI - Machine Learning Trading Algorithm - UshopWell.com<\/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:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Code an AI - Machine Learning Trading Algorithm - UshopWell.com\" \/>\n<meta property=\"og:description\" content=\"\u200b @MattMacarty #algotrading #machinelearning #python #tradingbots #algorithmictrading #lumibot \u2705 Use code MACARTY20 for 20% off lumiwealth programs https:\/\/lumiwealth.com (I do not get a commission) How to code an AI &#8212; Machine Learning Support Vector Machine in Python AI (Machine Learning) with Python sklearn \u2705 Please SUBSCRIBE: https:\/\/www.youtube.com\/subscription_center?add_user=mjmacarty \u2705 Get the code: https:\/\/github.com\/mjmacarty\/algorithmic-trading \u2705 Learn the basics here: https:\/\/youtu.be\/PMkBgsmXdTU \u2705 Algo trading playlist: https:\/\/www.youtube.com\/playlist?list=PLiPFKCVZWHKqtlvkq-V610SXMr2Ii9uAR \u2705 Lumibot Documentation: https:\/\/lumibot.lumiwealth.com \u2705 Visit https:\/\/alphabench.com...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/\" \/>\n<meta property=\"og:site_name\" content=\"UshopWell.com\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-14T11:01:13+00:00\" \/>\n<meta name=\"author\" content=\"UShopWell\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"UShopWell\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/\"},\"author\":{\"name\":\"UShopWell\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#\\\/schema\\\/person\\\/6fd1f9e0ff932e534c86c70d5acff0fc\"},\"headline\":\"How to Code an AI &#8212; Machine Learning Trading Algorithm\",\"datePublished\":\"2025-02-14T11:01:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/\"},\"wordCount\":608,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/\",\"url\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/\",\"name\":\"How to Code an AI - Machine Learning Trading Algorithm - UshopWell.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#website\"},\"datePublished\":\"2025-02-14T11:01:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/how-to-code-an-ai-machine-learning-trading-algorithm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Code an AI &#8212; Machine Learning Trading Algorithm\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#website\",\"url\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/\",\"name\":\"UshopWell.com\",\"description\":\"The Premiere Online Marketplace\",\"publisher\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#organization\",\"name\":\"UshopWell\",\"url\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/pandaSwea.png\",\"contentUrl\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/pandaSwea.png\",\"width\":365,\"height\":359,\"caption\":\"UshopWell\"},\"image\":{\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/#\\\/schema\\\/person\\\/6fd1f9e0ff932e534c86c70d5acff0fc\",\"name\":\"UShopWell\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4adb372cadd43b4d4c57964dab95b0f69618bf960d131c4acf49d96d6bbc9c6e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4adb372cadd43b4d4c57964dab95b0f69618bf960d131c4acf49d96d6bbc9c6e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4adb372cadd43b4d4c57964dab95b0f69618bf960d131c4acf49d96d6bbc9c6e?s=96&d=mm&r=g\",\"caption\":\"UShopWell\"},\"url\":\"https:\\\/\\\/ushopwell.com\\\/ublog\\\/author\\\/kburnettu\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Code an AI - Machine Learning Trading Algorithm - UshopWell.com","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:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/","og_locale":"en_US","og_type":"article","og_title":"How to Code an AI - Machine Learning Trading Algorithm - UshopWell.com","og_description":"\u200b @MattMacarty #algotrading #machinelearning #python #tradingbots #algorithmictrading #lumibot \u2705 Use code MACARTY20 for 20% off lumiwealth programs https:\/\/lumiwealth.com (I do not get a commission) How to code an AI &#8212; Machine Learning Support Vector Machine in Python AI (Machine Learning) with Python sklearn \u2705 Please SUBSCRIBE: https:\/\/www.youtube.com\/subscription_center?add_user=mjmacarty \u2705 Get the code: https:\/\/github.com\/mjmacarty\/algorithmic-trading \u2705 Learn the basics here: https:\/\/youtu.be\/PMkBgsmXdTU \u2705 Algo trading playlist: https:\/\/www.youtube.com\/playlist?list=PLiPFKCVZWHKqtlvkq-V610SXMr2Ii9uAR \u2705 Lumibot Documentation: https:\/\/lumibot.lumiwealth.com \u2705 Visit https:\/\/alphabench.com...","og_url":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/","og_site_name":"UshopWell.com","article_published_time":"2025-02-14T11:01:13+00:00","author":"UShopWell","twitter_card":"summary_large_image","twitter_misc":{"Written by":"UShopWell","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/#article","isPartOf":{"@id":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/"},"author":{"name":"UShopWell","@id":"https:\/\/ushopwell.com\/ublog\/#\/schema\/person\/6fd1f9e0ff932e534c86c70d5acff0fc"},"headline":"How to Code an AI &#8212; Machine Learning Trading Algorithm","datePublished":"2025-02-14T11:01:13+00:00","mainEntityOfPage":{"@id":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/"},"wordCount":608,"commentCount":0,"publisher":{"@id":"https:\/\/ushopwell.com\/ublog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/","url":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/","name":"How to Code an AI - Machine Learning Trading Algorithm - UshopWell.com","isPartOf":{"@id":"https:\/\/ushopwell.com\/ublog\/#website"},"datePublished":"2025-02-14T11:01:13+00:00","breadcrumb":{"@id":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ushopwell.com\/ublog\/how-to-code-an-ai-machine-learning-trading-algorithm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ushopwell.com\/ublog\/"},{"@type":"ListItem","position":2,"name":"How to Code an AI &#8212; Machine Learning Trading Algorithm"}]},{"@type":"WebSite","@id":"https:\/\/ushopwell.com\/ublog\/#website","url":"https:\/\/ushopwell.com\/ublog\/","name":"UshopWell.com","description":"The Premiere Online Marketplace","publisher":{"@id":"https:\/\/ushopwell.com\/ublog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ushopwell.com\/ublog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ushopwell.com\/ublog\/#organization","name":"UshopWell","url":"https:\/\/ushopwell.com\/ublog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ushopwell.com\/ublog\/#\/schema\/logo\/image\/","url":"https:\/\/ushopwell.com\/ublog\/wp-content\/uploads\/2018\/01\/pandaSwea.png","contentUrl":"https:\/\/ushopwell.com\/ublog\/wp-content\/uploads\/2018\/01\/pandaSwea.png","width":365,"height":359,"caption":"UshopWell"},"image":{"@id":"https:\/\/ushopwell.com\/ublog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/ushopwell.com\/ublog\/#\/schema\/person\/6fd1f9e0ff932e534c86c70d5acff0fc","name":"UShopWell","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4adb372cadd43b4d4c57964dab95b0f69618bf960d131c4acf49d96d6bbc9c6e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4adb372cadd43b4d4c57964dab95b0f69618bf960d131c4acf49d96d6bbc9c6e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4adb372cadd43b4d4c57964dab95b0f69618bf960d131c4acf49d96d6bbc9c6e?s=96&d=mm&r=g","caption":"UShopWell"},"url":"https:\/\/ushopwell.com\/ublog\/author\/kburnettu\/"}]}},"_links":{"self":[{"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/posts\/102033","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/comments?post=102033"}],"version-history":[{"count":0,"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/posts\/102033\/revisions"}],"wp:attachment":[{"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/media?parent=102033"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/categories?post=102033"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ushopwell.com\/ublog\/wp-json\/wp\/v2\/tags?post=102033"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}