{"id":37873,"date":"2024-04-26T23:02:35","date_gmt":"2024-04-26T23:02:35","guid":{"rendered":"http:\/\/localhost\/branding\/econometric-option-valuation\/"},"modified":"2024-04-26T23:02:35","modified_gmt":"2024-04-26T23:02:35","slug":"econometric-option-valuation","status":"publish","type":"post","link":"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/","title":{"rendered":"Econometric, Option Valuation"},"content":{"rendered":"<p>Econometric, Option Valuation<\/p>\n<p>Name<\/p>\n<p>Institution<\/p>\n<p>Date<\/p>\n<p>Course<\/p>\n<p>Mat lab code for Monte Carlo<\/p>\n<p>%%%%%%%%%% Option parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%<\/p>\n<p>S = 55; % Value of the underlying<\/p>\n<p>K = 50; % Strike (exercise price)<\/p>\n<p>r = 0.05; % Risk free interest rate<\/p>\n<p>sigma = 0.25; % Volatility<\/p>\n<p>T = 3; % Time to expiry<\/p>\n<p>%%%%%%%%%% Monte-Carlo Method Parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% <\/p>\n<p>randn(\u2019state\u2019,0) % Repeatable trials on\/off<\/p>\n<p>M=1e7; % Number of Monte-Carlo trials<\/p>\n<p>%%%%%%%%%% Use final values to compute <\/p>\n<p>final_vals=S*exp((r-0.5*sigma^2)*T + sigma*sqrt(T)*randn(M,1));<\/p>\n<p>option_values=max(K-final_vals,0); % Evaluate the Put option options<\/p>\n<p>present_vals=exp(-r*T)*option_values; % Discount under r-n assumption<\/p>\n<p>int=1.96*std(present_vals)\/sqrt(M); % Compute confidence intervals<\/p>\n<p>put_value=mean(present_vals); % Take the average<\/p>\n<p>display(put_value)<\/p>\n<p>display([put_value-int put_value+int])<\/p>\n<p>Matlab code for data generating FTSE 100<\/p>\n<p>A s c r i p t to produce the p l o t s f o r the p r i c e s and GARCH( 1 , 1 ) o f %<\/p>\n<p>% the FTSE100 , S&amp;P500 , and NIKKEI225 i n d i c e s . %<\/p>\n<p> % %<\/p>\n<p>%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????%<\/p>\n<p> % INPUTS: %<\/p>\n<p>% % % This s c r i p t r e q u i r e s the Datastream Toolbox %<\/p>\n<p>% %<\/p>\n<p> % OUTPUTS: %<\/p>\n<p>% % % Figure 1 ???? The thr e e i n d i c e s d a i l y adjus t ed c l o s i n g %<\/p>\n<p>% pr i c e s f r om 1990 to today ( July 2012) % % Figure 2 ???? The d a i l y c ont inous l y compounded r e turns %<\/p>\n<p>% o f a l l i n d i c e s from 1990 to today ( July 2012) ,% % ove r layed by the GARCH( 1 , 1 ) c o n d i t i o n a l %<\/p>\n<p>% s tandard de v i a t i on . % % %<\/p>\n<p>%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????% % %<\/p>\n<p>%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????% % Chr i s t o s De l i v o r i a s ???? OR MSc Student %<\/p>\n<p>% The Uni v e r s i t y o f Edinburgh % % August 2012 %<\/p>\n<p>%????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????%<\/p>\n<p>% Clear e x i s t i n g data and f i g u r e s c l f ;<\/p>\n<p>c l e a r a l l ;<\/p>\n<p>c l o s e a l l ;<\/p>\n<p>format sho r t ;<\/p>\n<p>% Connect to Yahoo Finance and f e t c h data<\/p>\n<p> Connect = yahoo ;<\/p>\n<p>dataFTSE=f e t c h (Connect , \u2019^FTSE \u2019 , \u2019 Jan 1 1990 \u2019 , today , \u2019d \u2019 ) ;<\/p>\n<p>dataN225=f e t c h (Connect , \u2019^N225 \u2019 , \u2019 Jan 1 1990 \u2019 , today , \u2019d \u2019 ) ;<\/p>\n<p>dataGSPC=f e t c h (Connect , \u2019^GSPC\u2019 , \u2019 Jan 1 1990 \u2019 , today , \u2019d \u2019 ) ;<\/p>\n<p> c l o s e (Connect ) ;<\/p>\n<p> % Ca l cul a t e d a i l y r e turns and GARCH SD f o r each index<\/p>\n<p>dataFTSEret = [ 0 . 0 p r i c e 2 r e t (dataFTSE ( : , end ) ) \u2019 ] ;<\/p>\n<p> retFTSE=f i n t s (dataFTSE ( : , 1 ) , dataFTSEret \u2019 , \u2019 retFTSE100 \u2019 , \u2019d \u2019 , . . .<\/p>\n<p>\u2019 retFTSE100 \u2019 ) ;<\/p>\n<p> [ c o e f f 1 , e r r o r s 1 , LLF1 , innovat ions1 , sigmas1 ] = . . .<\/p>\n<p>g a r c h f i t ( dataFTSEret ) ;<\/p>\n<p>sigmaFTSE = f i n t s (dataFTSE ( : , 1 ) , sigmas1 \u2019 , \u2019 retFTSE100 \u2019 , . . .<\/p>\n<p>\u2019d \u2019 , \u2019 retFTSE100 \u2019 ) ;<\/p>\n<p>dataN225ret = [ 0 . 0 p r i c e 2 r e t ( dataN225 ( : , end ) ) \u2019 ] ;<\/p>\n<p>retN225=f i n t s ( dataN225 ( : , 1 ) , dataN225ret \u2019 , \u2019 retNIKKEI \u2019 , \u2019d \u2019 , . . .<\/p>\n<p>\u2019 retNIKKEI \u2019 ) ;<\/p>\n<p> [ c o e f f 2 , e r r o r s 2 , LLF2 , innovat ions2 , sigmas2 ] = . . .<\/p>\n<p>g a r c h f i t ( dataN225ret ) ;<\/p>\n<p>sigmaN225 = f i n t s ( dataN225 ( : , 1 ) , sigmas2 \u2019 , \u2019 retNIKKEI \u2019 , . . .<\/p>\n<p>v<\/p>\n<p>\u2019d \u2019 , \u2019 retNIKKEI \u2019 ) ;<\/p>\n<p>dataGSPCret = [ 0 . 0 p r i c e 2 r e t (dataGSPC ( : , end ) ) \u2019 ] ;<\/p>\n<p> retGSPC=f i n t s (dataGSPC( : , 1 ) , dataGSPCret \u2019 , \u2019 retSP500 \u2019 , \u2019d \u2019 , . . .<\/p>\n<p>\u2019 retSP500 \u2019 ) ;<\/p>\n<p> [ c o e f f 3 , e r r o r s 3 , LLF3 , innovat ions3 , sigmas3 ] = . . .<\/p>\n<p>g a r c h f i t ( dataGSPCret ) ;<\/p>\n<p> sigmaGSPC = f i n t s (dataGSPC( : , 1 ) , sigmas3 \u2019 , \u2019 retSP500 \u2019 , . . .<\/p>\n<p>\u2019d \u2019 , \u2019 retSP500 \u2019 ) ;<\/p>\n<p>% Create a f i n a n c i a l ins t rument f o r each index with d a i l y p r i c e s<\/p>\n<p>tsFTSE=f i n t s (dataFTSE ( : , 1 ) ,dataFTSE ( : , end ) , . . .<\/p>\n<p>\u2019FTSE100 \u2019 , \u2019d \u2019 , \u2019FTSE100 \u2019 ) ;<\/p>\n<p>tsN225=f i n t s ( dataN225 ( : , 1 ) , dataN225 ( : , end ) , . . .<\/p>\n<p>\u2019NiKKEI225 \u2019 , \u2019d \u2019 , \u2019NiKKEI225 \u2019 ) ;<\/p>\n<p> tsGSPC=f i n t s (dataGSPC( : , 1 ) ,dataGSPC ( : , end ) , . . .<\/p>\n<p>\u2019 SP500 \u2019 , \u2019d \u2019 , \u2019 SP500 \u2019 ) ;<\/p>\n<p>% Pl o t s the index p r i c e s<\/p>\n<p> f i g u r e ( 1 ) ;<\/p>\n<p>subplot 31 1;<\/p>\n<p> pl o t ( tsFTSE) ;<\/p>\n<p>x l a b e l ( \u2019Time ( date ) \u2019 ) ;<\/p>\n<p>y l a b e l ( \u2019 Adjusted Close p r i c e ( $ ) \u2019 ) ;<\/p>\n<p>subplot 31 2;<\/p>\n<p> pl o t ( tsGSPC) ;<\/p>\n<p>x l a b e l ( \u2019Time ( date ) \u2019 ) ;<\/p>\n<p>y l a b e l ( \u2019 Adjusted Close p r i c e ( $ ) \u2019 ) ;<\/p>\n<p>subplot 31 3;<\/p>\n<p>pl o t ( tsN225 ) ;<\/p>\n<p>x l a b e l ( \u2019Time ( date ) \u2019 ) ;<\/p>\n<p>y l a b e l ( \u2019 Adjusted Close p r i c e ( $ ) \u2019 ) ;<\/p>\n<p>yt = ge t ( gca , \u2019YTick \u2019 ) ;<\/p>\n<p>s e t ( gca , \u2019YTickLabel \u2019 , s p r i n t f ( \u2019%.0 f | \u2019 , yt ) ) ;<\/p>\n<p>% Plot the r e turns and GARCH<\/p>\n<p>f i g u r e ( 2 ) ;<\/p>\n<p> subplot 31 1; hold on ;<\/p>\n<p>pl o t ( retFTSE) ; pl o t ( sigmaFTSE) ; hold o f f ;<\/p>\n<p>subplot 31 2; hold on ;<\/p>\n<p>pl o t ( retN225 ) ; pl o t ( sigmaN225 ) ; hold o f f ;<\/p>\n<p>subplot 31 3; hold on ;<\/p>\n<p>pl o t ( retGSPC) ; pl o t ( sigmaGSPC) ; hold o f f ;<\/p>\n<p>Matlab code for FTSE 100<\/p>\n<p>setdbprefs(&#8216;DataReturnFormat&#8217;, &#8216;structure&#8217;)<\/p>\n<p>connection = database(&#8216;SDE_Data&#8217;, &#8221;, &#8221;);<\/p>\n<p>cursor = exec(connection, &#8216;SELECT ALL Dates,Canada,France,Germany,Japan,UK,US,<\/p>\n<p>Euribor3M FROM Simulation_Data ORDER BY Dates ASC&#8217;);<\/p>\n<p>cursor = fetch(cursor);<\/p>\n<p>close(cursor), close(connection)<\/p>\n<p>SDE_Data = cursor.Data<\/p>\n<p>SDE_Data =<\/p>\n<p>Dates: [1359&#215;1 double]<\/p>\n<p>Canada: [1359&#215;1 double]<\/p>\n<p>France: [1359&#215;1 double]<\/p>\n<p>Germany: [1359&#215;1 double]<\/p>\n<p>Japan: [1359&#215;1 double]<\/p>\n<p>UK: [1359&#215;1 double]<\/p>\n<p>US: [1359&#215;1 double]<\/p>\n<p>Euribor3M: [1359&#215;1 double]<\/p>\n<p>fields = fieldnames(SDE_Data);<\/p>\n<p>dates = SDE_Data.Dates;<\/p>\n<p>countries = fields(2:end-1);<\/p>\n<p>yields = SDE_Data.Euribor3M; % daily effective yields<\/p>\n<p>yields = 360 * log(1 + yields); % continuous, annualized yields<\/p>\n<p>for i = length(countries):-1:1<\/p>\n<p>prices(:,i) = SDE_Data.(countries{i}); % daily closing prices<\/p>\n<p>end<\/p>\n<p>figure, plot(dates, ret2price(price2ret(prices))), datetick(&#8216;x&#8217;)<\/p>\n<p>xlabel(&#8216;Date&#8217;), ylabel(&#8216;Index Value&#8217;), title (&#8216;Normalized Daily Index Closings&#8217;)<\/p>\n<p>legend(countries, &#8216;Location&#8217;, &#8216;NorthWest&#8217;)<\/p>\n<p>figure, plot(dates, 100 * yields)<\/p>\n<p>datetick(&#8216;x&#8217;), xlabel(&#8216;Date&#8217;), ylabel(&#8216;Annualized Yield (%)&#8217;)<\/p>\n<p>title(&#8216;Risk Free Rate (3-Month Euribor Continuously-Compounded)&#8217;)<\/p>\n<p>Matlab code for estimating e-views<\/p>\n<p>n = 200; k = 3; evec = randn(n,1);<\/p>\n<p>xmat = [ones(n,1) randn(n,k)]; y = zeros(n,1); u = zeros(n,1);<\/p>\n<p>beta = ones(k,1); beta(1,1) = 10.0; % constant term<\/p>\n<p>for i=2:n; % generate a model with 1st order serial correlation<\/p>\n<p>u(i,1) = 0.4*u(i-1,1) + evec(i,1);<\/p>\n<p>y(i,1) = xmat(i,:)*beta + u(i,1);<\/p>\n<p>end;<\/p>\n<p>% truncate 1st 100 observations for startup<\/p>\n<p>yt = y(101:n,1); xt = xmat(101:n,:);<\/p>\n<p>n = n-100; % reset n to reflect truncation<\/p>\n<p>Vnames = strvcat(&#8216;y&#8217;,&#8217;cterm&#8217;,&#8217;x2&#8242;,&#8217;x3&#8242;);<\/p>\n<p>result = ols(yt,xt); prt(result,Vnames); plt(result);<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Econometric, Option Valuation Name Institution Date Course Mat lab code for Monte Carlo %%%%%%%%%% Option parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% S = 55;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-37873","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Econometric, Option Valuation - sheilathewriter<\/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:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Econometric, Option Valuation - sheilathewriter\" \/>\n<meta property=\"og:description\" content=\"Econometric, Option Valuation Name Institution Date Course Mat lab code for Monte Carlo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% S = 55;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/\" \/>\n<meta property=\"og:site_name\" content=\"sheilathewriter\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-26T23:02:35+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/\",\"url\":\"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/\",\"name\":\"Econometric, Option Valuation - sheilathewriter\",\"isPartOf\":{\"@id\":\"https:\/\/sheilathewriter.com\/blog\/#website\"},\"datePublished\":\"2024-04-26T23:02:35+00:00\",\"author\":{\"@id\":\"https:\/\/sheilathewriter.com\/blog\/#\/schema\/person\/f5844d28db4a1882523a0a69560bf0ab\"},\"breadcrumb\":{\"@id\":\"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sheilathewriter.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Econometric, Option Valuation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sheilathewriter.com\/blog\/#website\",\"url\":\"https:\/\/sheilathewriter.com\/blog\/\",\"name\":\"sheilathewriter\",\"description\":\"Custom essay writing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sheilathewriter.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/sheilathewriter.com\/blog\/#\/schema\/person\/f5844d28db4a1882523a0a69560bf0ab\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sheilathewriter.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9cf817440d627e98709fcac9c5cc379958985e679d683af80df1879b5a471013?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9cf817440d627e98709fcac9c5cc379958985e679d683af80df1879b5a471013?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/opskill.com\/propapers\"],\"url\":\"https:\/\/sheilathewriter.com\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Econometric, Option Valuation - sheilathewriter","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:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/","og_locale":"en_US","og_type":"article","og_title":"Econometric, Option Valuation - sheilathewriter","og_description":"Econometric, Option Valuation Name Institution Date Course Mat lab code for Monte Carlo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% S = 55;","og_url":"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/","og_site_name":"sheilathewriter","article_published_time":"2024-04-26T23:02:35+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/","url":"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/","name":"Econometric, Option Valuation - sheilathewriter","isPartOf":{"@id":"https:\/\/sheilathewriter.com\/blog\/#website"},"datePublished":"2024-04-26T23:02:35+00:00","author":{"@id":"https:\/\/sheilathewriter.com\/blog\/#\/schema\/person\/f5844d28db4a1882523a0a69560bf0ab"},"breadcrumb":{"@id":"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sheilathewriter.com\/blog\/econometric-option-valuation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sheilathewriter.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Econometric, Option Valuation"}]},{"@type":"WebSite","@id":"https:\/\/sheilathewriter.com\/blog\/#website","url":"https:\/\/sheilathewriter.com\/blog\/","name":"sheilathewriter","description":"Custom essay writing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sheilathewriter.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sheilathewriter.com\/blog\/#\/schema\/person\/f5844d28db4a1882523a0a69560bf0ab","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sheilathewriter.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9cf817440d627e98709fcac9c5cc379958985e679d683af80df1879b5a471013?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9cf817440d627e98709fcac9c5cc379958985e679d683af80df1879b5a471013?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/opskill.com\/propapers"],"url":"https:\/\/sheilathewriter.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/posts\/37873","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/comments?post=37873"}],"version-history":[{"count":0,"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/posts\/37873\/revisions"}],"wp:attachment":[{"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/media?parent=37873"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/categories?post=37873"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sheilathewriter.com\/blog\/wp-json\/wp\/v2\/tags?post=37873"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}