{"id":63,"date":"2025-10-14T15:13:22","date_gmt":"2025-10-14T15:13:22","guid":{"rendered":"https:\/\/kriptos.my\/?p=63"},"modified":"2025-10-14T15:17:08","modified_gmt":"2025-10-14T15:17:08","slug":"pine-script-improved-time-frame-function","status":"publish","type":"post","link":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/","title":{"rendered":"Pine Script: Improved Time Frame function"},"content":{"rendered":"\n<p>This script strategy is the same as previous script from this page <a href=\"https:\/\/kriptos.my\/index.php\/2025\/02\/23\/new-pine-script-spot-martingale-strategy\/\">here<\/a>. You can choose whether:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>To use the time frame function with a click of a button<\/li>\n\n\n\n<li>Easily choose your date frame from the pop-up calender<\/li>\n\n\n\n<li>Exact clock time available as well<\/li>\n<\/ol>\n\n\n\n<p>Here is the code: <\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<pre class=\"wp-block-preformatted\">\/\/@version=5<br>strategy(\"SpotDCABot[kriptos.my]\", overlay=false, initial_capital=100, default_qty_type=strategy.percent_of_equity, default_qty_value=100, pyramiding=99, commission_type=strategy.commission.percent, commission_value=0.3)<br><br>\/\/ This bot is for TradeAdapter meant for Kucoin\/Gate.io which does not have minimum order of 5 USDT<br>\/\/ The TF is 5mins<br>\/\/ Default capital is 100 USDT, with InitialBuy of 1.58 USDT for total of 6 positions including IB.<br>\/\/ Other settings are adjustable to achieve best settings<br>\/\/ This is improved version of code245<br><br>\/\/ Inputs<br>percentageDrop = input.float(2.6, title=\"Percentage Drop(%)\", step=0.1) \/ 100<br>takeProfitPct = input.float(2.7, title=\"Take Profit Percentage (%)\", step=0.1) \/ 100<br>stopLossPct = input.float(14.5, title=\"SL(%)\", step=0.1) \/ 100<br>maxPositions = input.int(6, title=\"Max Positions[including Initial Buy]\", minval=1)<br>priceDevMultiplier = input.float(1.5, title=\"Price Deviation Multiplier\", minval=1.0, step=0.1)<br>multiplier = input.float(2, title=\"Multiplier\", minval=1, step=0.1)<br>initialCapital = input.float(1.58, title=\"Initial Buy USDT\", step=0.1)<br><br>\/\/ --- Time Control ---<br>useTimeFilter = input.bool(true, \"Use Start\/Stop Time?\")<br>startTime     = input.time(timestamp(\"2025-01-01T00:00:00\"), \"Start Time\")<br>stopTime      = input.time(timestamp(\"2027-01-01T00:00:00\"), \"Stop Time\")<br><br>\/\/ Variables<br>var float averageEntry = na<br>var float totalPositionSize = 0<br>var float totalCost = 0<br>var int positionCount = 0<br>var float lastPositionSize = na \/\/ Track the last added position size<br><br>\/\/ Price Levels<br>dropLevel = na(averageEntry) or positionCount == 0 ? na : averageEntry * (1 - percentageDrop * math.pow(priceDevMultiplier, positionCount - 1))<br>takeProfitLevel = na(averageEntry) ? na : averageEntry * (1 + takeProfitPct)<br>stopLossLevel = na(averageEntry) ? na : averageEntry * (1 - stopLossPct)<br><br>inTimeRange = not useTimeFilter or (time >= startTime and time &lt;= stopTime)<br><br>\/\/ Entry Condition<br>if na(averageEntry) and positionCount == 0 and inTimeRange<br>    initialQty = initialCapital \/ close \/\/ Directly calculate without rounding<br>    strategy.entry(\"Initial Buy\", strategy.long, qty=initialQty)<br>    averageEntry := close<br>    totalPositionSize := initialQty<br>    totalCost := initialQty * close<br>    positionCount := 1<br>    lastPositionSize := initialQty \/\/ Initialize the last position size<br><br>if not na(averageEntry) and close &lt;= dropLevel and positionCount &lt; maxPositions<br>    newPositionSize = lastPositionSize * multiplier \/\/ Calculate based on the last position size<br>    strategy.entry(\"Add Position\", strategy.long, qty=newPositionSize)<br>    totalCost := totalCost + newPositionSize * close<br>    totalPositionSize := totalPositionSize + newPositionSize<br>    averageEntry := totalCost \/ totalPositionSize<br>    positionCount := positionCount + 1<br>    lastPositionSize := newPositionSize \/\/ Update the last position size<br><br>\/\/ Take Profit Condition<br>if not na(averageEntry) and close >= takeProfitLevel<br>    strategy.close(\"Initial Buy\")<br>    strategy.close(\"Add Position\")<br>    averageEntry := na<br>    totalPositionSize := 0<br>    totalCost := 0<br>    positionCount := 0<br>    lastPositionSize := na \/\/ Reset the last position size<br><br>\/\/ Stop-Loss Condition (Fixed)<br>if not na(averageEntry) and close &lt;= averageEntry * (1 - stopLossPct)<br>    strategy.close_all()<br>    averageEntry := na<br>    totalPositionSize := 0<br>    totalCost := 0<br>    positionCount := 0<br>    lastPositionSize := na \/\/ Reset the last position size<br><br><\/pre>\n<\/blockquote>\n\n\n\n<p>Recommended setting:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Candle TF 5minutes<\/li>\n\n\n\n<li>DCA Order Multiplier 2x<\/li>\n\n\n\n<li>Price Deviation Multiplier 1.5x<\/li>\n<\/ol>\n\n\n\n<p>Code:248<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This script strategy is the same as previous script from this page here. You can choose whether: Here is the code: \/\/@version=5strategy(&#8220;SpotDCABot[kriptos.my]&#8221;, overlay=false, initial_capital=100, default_qty_type=strategy.percent_of_equity, default_qty_value=100, pyramiding=99, commission_type=strategy.commission.percent, commission_value=0.3)\/\/ This<\/p>\n<p><a href=\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\" class=\"btn btn-skin btn-radius\">Continue Reading<span class=\"screen-reader-text\">Pine Script: Improved Time Frame function<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":65,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-63","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-pine-script-strategy"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Pine Script: Improved Time Frame function - kriptos.my<\/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:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pine Script: Improved Time Frame function - kriptos.my\" \/>\n<meta property=\"og:description\" content=\"This script strategy is the same as previous script from this page here. You can choose whether: Here is the code: \/\/@version=5strategy(&quot;SpotDCABot[kriptos.my]&quot;, overlay=false, initial_capital=100, default_qty_type=strategy.percent_of_equity, default_qty_value=100, pyramiding=99, commission_type=strategy.commission.percent, commission_value=0.3)\/\/ ThisContinue ReadingPine Script: Improved Time Frame function\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\" \/>\n<meta property=\"og:site_name\" content=\"kriptos.my\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-14T15:13:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-14T15:17:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"229\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/kriptos.my\/#\/schema\/person\/e7d9ab723a328727c8755e36e3abe80e\"},\"headline\":\"Pine Script: Improved Time Frame function\",\"datePublished\":\"2025-10-14T15:13:22+00:00\",\"dateModified\":\"2025-10-14T15:17:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\"},\"wordCount\":68,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kriptos.my\/#organization\"},\"image\":{\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png\",\"articleSection\":[\"Pine Script Strategy\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\",\"url\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\",\"name\":\"Pine Script: Improved Time Frame function - kriptos.my\",\"isPartOf\":{\"@id\":\"https:\/\/kriptos.my\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png\",\"datePublished\":\"2025-10-14T15:13:22+00:00\",\"dateModified\":\"2025-10-14T15:17:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage\",\"url\":\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png\",\"contentUrl\":\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png\",\"width\":825,\"height\":229},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/kriptos.my\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pine Script: Improved Time Frame function\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kriptos.my\/#website\",\"url\":\"https:\/\/kriptos.my\/\",\"name\":\"kriptos.my\",\"description\":\"Trading Bot Enthusiast\",\"publisher\":{\"@id\":\"https:\/\/kriptos.my\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kriptos.my\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kriptos.my\/#organization\",\"name\":\"kriptos.my\",\"url\":\"https:\/\/kriptos.my\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kriptos.my\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/06\/cropped-kriptosmy-perkataan.png\",\"contentUrl\":\"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/06\/cropped-kriptosmy-perkataan.png\",\"width\":872,\"height\":199,\"caption\":\"kriptos.my\"},\"image\":{\"@id\":\"https:\/\/kriptos.my\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kriptos.my\/#\/schema\/person\/e7d9ab723a328727c8755e36e3abe80e\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kriptos.my\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/72a50d9cc55ed45eb9ef06fffd6dfe994a9582cdb5833fbfaeb73562d06e4ae8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/72a50d9cc55ed45eb9ef06fffd6dfe994a9582cdb5833fbfaeb73562d06e4ae8?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/kriptos.my\"],\"url\":\"https:\/\/kriptos.my\/index.php\/author\/kriptos\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pine Script: Improved Time Frame function - kriptos.my","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:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/","og_locale":"en_US","og_type":"article","og_title":"Pine Script: Improved Time Frame function - kriptos.my","og_description":"This script strategy is the same as previous script from this page here. You can choose whether: Here is the code: \/\/@version=5strategy(\"SpotDCABot[kriptos.my]\", overlay=false, initial_capital=100, default_qty_type=strategy.percent_of_equity, default_qty_value=100, pyramiding=99, commission_type=strategy.commission.percent, commission_value=0.3)\/\/ ThisContinue ReadingPine Script: Improved Time Frame function","og_url":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/","og_site_name":"kriptos.my","article_published_time":"2025-10-14T15:13:22+00:00","article_modified_time":"2025-10-14T15:17:08+00:00","og_image":[{"width":825,"height":229,"url":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#article","isPartOf":{"@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/"},"author":{"name":"admin","@id":"https:\/\/kriptos.my\/#\/schema\/person\/e7d9ab723a328727c8755e36e3abe80e"},"headline":"Pine Script: Improved Time Frame function","datePublished":"2025-10-14T15:13:22+00:00","dateModified":"2025-10-14T15:17:08+00:00","mainEntityOfPage":{"@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/"},"wordCount":68,"commentCount":0,"publisher":{"@id":"https:\/\/kriptos.my\/#organization"},"image":{"@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage"},"thumbnailUrl":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png","articleSection":["Pine Script Strategy"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/","url":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/","name":"Pine Script: Improved Time Frame function - kriptos.my","isPartOf":{"@id":"https:\/\/kriptos.my\/#website"},"primaryImageOfPage":{"@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage"},"image":{"@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage"},"thumbnailUrl":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png","datePublished":"2025-10-14T15:13:22+00:00","dateModified":"2025-10-14T15:17:08+00:00","breadcrumb":{"@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#primaryimage","url":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png","contentUrl":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png","width":825,"height":229},{"@type":"BreadcrumbList","@id":"https:\/\/kriptos.my\/index.php\/2025\/10\/14\/pine-script-improved-time-frame-function\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kriptos.my\/"},{"@type":"ListItem","position":2,"name":"Pine Script: Improved Time Frame function"}]},{"@type":"WebSite","@id":"https:\/\/kriptos.my\/#website","url":"https:\/\/kriptos.my\/","name":"kriptos.my","description":"Trading Bot Enthusiast","publisher":{"@id":"https:\/\/kriptos.my\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kriptos.my\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kriptos.my\/#organization","name":"kriptos.my","url":"https:\/\/kriptos.my\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kriptos.my\/#\/schema\/logo\/image\/","url":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/06\/cropped-kriptosmy-perkataan.png","contentUrl":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/06\/cropped-kriptosmy-perkataan.png","width":872,"height":199,"caption":"kriptos.my"},"image":{"@id":"https:\/\/kriptos.my\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kriptos.my\/#\/schema\/person\/e7d9ab723a328727c8755e36e3abe80e","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kriptos.my\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/72a50d9cc55ed45eb9ef06fffd6dfe994a9582cdb5833fbfaeb73562d06e4ae8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/72a50d9cc55ed45eb9ef06fffd6dfe994a9582cdb5833fbfaeb73562d06e4ae8?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/kriptos.my"],"url":"https:\/\/kriptos.my\/index.php\/author\/kriptos\/"}]}},"jetpack_featured_media_url":"https:\/\/kriptos.my\/wp-content\/uploads\/2025\/10\/Screenshot-2025-10-14-231617.png","_links":{"self":[{"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/posts\/63","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/comments?post=63"}],"version-history":[{"count":1,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/posts\/63\/revisions"}],"predecessor-version":[{"id":64,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/posts\/63\/revisions\/64"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/media\/65"}],"wp:attachment":[{"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/media?parent=63"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/categories?post=63"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kriptos.my\/index.php\/wp-json\/wp\/v2\/tags?post=63"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}