{"id":102,"date":"2013-04-23T12:16:00","date_gmt":"2013-04-23T12:16:00","guid":{"rendered":"http:\/\/zerodha.com\/z-connect\/?p=269"},"modified":"2024-02-02T15:57:40","modified_gmt":"2024-02-02T10:27:40","slug":"algoz-programming-language","status":"publish","type":"post","link":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language","title":{"rendered":"Programming language: algoZ"},"content":{"rendered":"<p>Beginners, don&#8217;t worry if you don&#8217;t understand when you read this manual. We will explain how to code your technical analysis strategy in the &#8220;<a href=\"https:\/\/zerodha.com\/z-connect\/blog\/view\/code-your-technical-analysis-strategy\">Code your strategy<\/a>&#8221; section.<\/p>\n<h3>Programming language<\/h3>\n<p>This blog contains short examples that demonstrate how to perform common, basic tasks such as identifying securities within a specific price range, increase in volatility, crossing over of an indicator, and so forth. You can cut and paste many of these examples right into the NEST Pulse&#8217;s programming area on Zerodha Trader.<\/p>\n<p>Also this blog contains a reference of functions, properties, and constants supported by the NEST Pulse language as well as hands-on trading system examples. This method of organization allows the beginning programmer to see results immediately while learning at his or her own pace. NEST Pulse is the engine that drives the scripting language in your trading software. It is a non-procedural scientific vector programming language that was designed specifically for developing trading systems. A script is simply a set of instructions that tells the NEST Pulse engine to do something useful, such as provide an alert when the price of one stock reaches a new high, crosses over a moving average, or drops by a certain percentage. There are many uses.<\/p>\n<h4>Introduction: Important Concepts<\/h4>\n<p>NEST Pulse is a powerful and versatile programming language for traders.<\/p>\n<p>The language provides the framework required to build sophisticated trading programs piece by piece without extensive training or programming experience.<\/p>\n<p>The following script is a very simple example that identifies markets that are trading higher than the opening price:<\/p>\n<pre>LAST &gt; OPEN<\/pre>\n<p>It almost goes without saying that the purpose of this script is to identify when the last price is trading higher than the open price. It is nearly as plain as English language.<\/p>\n<p>Just as a spoken language gives you many ways to express each idea, the NEST Pulse programming language provides a wide variety of ways to program a Trading System. Scripts can be very simple as just shown or extremely complex, consisting of many hundreds of lines of instructions. But for most systems, scripts usually consist of just a few lines of code.<\/p>\n<p>The examples outlined in the first section of this blog are relatively short and simple but provide a foundation for the development of more complex scripts.<\/p>\n<h4>Boolean Logic<\/h4>\n<p>The scripts shown in this first section may be linked together using Boolean logic just by adding the AND or the OR keyword, for example:<\/p>\n<p>Script 1 evaluates to true when the last price is higher than the open price:<\/p>\n<pre>LAST &gt; OPEN<\/pre>\n<p>Script 2 evaluates to true when volume is two times the previous day&#8217;s volume:<\/p>\n<pre>VOLUME &gt;REF(VOLUME, 1) * 2<\/pre>\n<p>You can aggregate scripts so that your script returns results for securities that are higher than the open and with the volume two times the previous volume:<\/p>\n<pre>LAST &gt; OPEN AND VOLUME &gt;REF(VOLUME, 1) * 2<\/pre>\n<p>Likewise, you can change the AND into an OR to find securities that are either trading higher than the open or have a volume two times the previous volume:<\/p>\n<pre>LAST &gt; OPEN OR VOLUME &gt;REF(VOLUME, 1) * 2<\/pre>\n<p>Once again, the instructions are nearly is plain as the English language. The use of Boolean logic with the AND and OR keywords is a very important concept that is used extensively by the NEST Pulse programming language.<\/p>\n<h4>Program Structure<\/h4>\n<p>It does not matter if your code is all on a single line or on multiple lines. It is often easier to read a script where the code is broken into multiple lines. The following script will work exactly as the previous example, but is somewhat easier to read:<\/p>\n<pre>LAST &gt; OPEN OR VOLUME &gt;REF(VOLUME, 1) * 2<\/pre>\n<p>It is good practice to structure your scripts to make them as intuitive as possible for future reference. In some cases it may be useful to add comments to a very complex script. A comment is used to include explanatory remarks in a script.<\/p>\n<p>Whenever the pound sign is placed at the beginning of a line, the script will ignore the words that follow. The words will only serve as a comment or note to make the script more understandable:<\/p>\n<p># Evaluates to true when the last price is higher than the open or the volume is 2 X&#8217;s the previous volume:<\/p>\n<pre>LAST &gt; OPEN OR\r\nVOLUME &gt;REF(VOLUME, 1) * 2<\/pre>\n<p>The script runs just as it did before with the only difference being that you can more easily understand the design and purpose of the script.<\/p>\n<h4>Functions<\/h4>\n<p>The NEST Pulse language provides many built-in functions that make programming easier. When functions are built into the core of a programming language they are referred to as primitives. The TREND function is one example:<\/p>\n<pre>TREND(CLOSE, 30) = UP<\/pre>\n<p>In this example, the TREND function tells NEST Pulse to identify trades where the closing price is in a 30-day uptrend.<\/p>\n<p>The values that are contained inside a function (such as the REF function or the TREND function) are called arguments. Here there are two arguments in the TREND function. Argument #1 is the closing price, and argument #2 is 30, as in &#8220;30 days&#8221; or &#8220;30 periods&#8221;<\/p>\n<p>Only one of two things will occur if you use a function incorrectly will automatically fix the problem and the script will still run, or NEST Pulse will report an error, tell you what&#8217;s wrong with the script, and then allow you to fix the problem and try again.<\/p>\n<p>In other words, user input errors will never cause NEST Pulse to break or return erroneous results without first warning you about a potential problem.<\/p>\n<p>Let&#8217;s take CLOSE out of the TREND function and then try to run the script again:<\/p>\n<pre>TREND(30) = UP<\/pre>\n<p>The following error occurs:<\/p>\n<p>Error: argument of &#8220;TREND&#8221; function not optional.<\/p>\n<p>We are given the option to fix the script and try again.<\/p>\n<h4>Vector Programming<\/h4>\n<p>Vector programming languages (also known as array or multidimensional languages) generalize operations on scalars to apply transparently to vectors, matrices, and higher dimensional arrays.<\/p>\n<p>The fundamental idea behind vector programming is that operations apply at once to an entire set of values (a vector or field). This allows you to think and operate on whole aggregates of data, without having to resort to explicit loops of individual scalar operations.<\/p>\n<p>As an example, to calculate a simple moving average based on the median price of a stock over 30 days, in a traditional programming language such as BASIC you would be required to write a program similar to this:<\/p>\n<pre>For each symbol\r\n\u00a0\u00a0 \u00a0For bar = 30 to max\r\n\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0Average = 0\r\n\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0For n = bar - 30 to bar\r\n\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0median = (CLOSE + OPEN) \/ 2\r\n\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0Average = Average + median\r\n\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0Next\r\n\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0MedianAverages(bar) = Average \/ 30\r\n\u00a0\u00a0 \u00a0Next bar\r\nNext symbol<\/pre>\n<p>Nine to ten lines of code would be required to create the \u00e2\u20ac\u0153MedianAverages\u00e2\u20ac vector. But with NEST Pulse, you can effectively accomplish the same thing using only one line:<\/p>\n<pre>SET MedianAverage = SimpleMovingAverage((CLOSE + OPEN) \/ 2, 30)<\/pre>\n<p>And now MedianAverage is actually a new vector that contains the 30-period simple moving average of the median price of the stock at each point.<\/p>\n<p>It is not uncommon to find array programming language &#8220;one-liners&#8221; that require more than a couple of pages of BASIC, Java or C++ code.<\/p>\n<h4>The REF Function<\/h4>\n<p>At this point you may be wondering what &#8220;REF&#8221; and &#8220;TREND&#8221; are. These are two of the very useful primitives that are built into the NEST Pulse language.<\/p>\n<p>The REF function is used whenever you want to reference a value at any specific point in a vector. Assume the MedianAverage vector contains the average median price of a stock. In order to access a particular element in the vector using a traditional programming language, you would write:<\/p>\n<pre>SET A = MedianAverage[n]<\/pre>\n<p>Using NestPulse you would write:<\/p>\n<pre>SET A = REF(MedianAverage, n)<\/pre>\n<p>The main difference other than a variation in syntax is that traditional languages reference the points in a vector starting from the beginning, or 0 if the vectors are zero-based. NEST Pulse on the other hand references values backwards, from the end. This is most convenient since the purpose of NEST Pulse is of course, to develop trading systems. It is always the last, most recent value that is of most importance. To get the most recent value in the MedianAverage vector we could write:<\/p>\n<pre>SET A = REF(MedianAverage, 0)<\/pre>\n<p>Which is the same as not using the REF function at all. Therefore the preferred way to get the last value (the most recent value) in a vector is to simply write:<\/p>\n<pre>SET A = MedianAverage<\/pre>\n<p>The last value of a vector is always assumed when the REF function is absent.<\/p>\n<p>To get the value as of one bar ago, we would write:<\/p>\n<pre>SET A = REF(MedianAverage, 1)<\/pre>\n<p>Or two bars ago:<\/p>\n<pre>SET A = REF(MedianAverage, 2)<\/pre>\n<h4>The TREND Function<\/h4>\n<p>Stock traders often refer to &#8220;trending&#8221; as a state when the price of a stock has been increasing (up-trending) or decreasing (down-trending) for several days, weeks, months, or years. The typical investor or trader would avoid opening a new long position of a stock that has been in a downtrend for many months.<\/p>\n<p>NEST Pulse provides a primitive function aptly named TREND especially for detecting trends in stock price, volume, or indicators: TREND(CLOSE, 30) = UP<\/p>\n<p>This tells NEST Pulse to identify trades where the closing price is in a 30-day uptrend. Similarly, you could also use the TREND function to find trends in volume or technical indicators:<\/p>\n<p># The volume has been in a downtrend for at least 10 days:<\/p>\n<pre>TREND(VOLUME, 10) = DOWN<\/pre>\n<p># The 14-day CMO indicator has been up-trending for at least 20 days:<\/p>\n<pre>TREND(CMO(CLOSE, 14), 20) = UP<\/pre>\n<p>It is useful to use the TREND function for confirming a trading system signal.<\/p>\n<p>Suppose we have a trading system that buys when the close price crosses above a 20-day Simple Moving Average. The script may look similar to this:<\/p>\n<p># Gives a buy signal when the close price crosses above the 20-day SMA<\/p>\n<pre>CROSSOVER(CLOSE, SimpleMovingAverage(CLOSE, 20)) = TRUE<\/pre>\n<p>It would be helpful in this case to narrow the script down to only the securities that have been in a general downtrend for some time. We can add the following line of code to achieve this:<\/p>\n<pre>AND TREND(CLOSE, 40) = DOWN<\/pre>\n<p>TREND tells us if a vector has been trending upwards, downwards, or sideways, but does not tell us the degree of which it has been trending. We can use the REF function in order to determine the range in which the data has been trending. To find the change from the most current price and the price 40 bars ago, we could write:<\/p>\n<pre>SET A = LAST - REF(CLOSE, 40)<\/pre>\n<h4>Price Gaps and Volatility<\/h4>\n<p>Although the TREND function can be used for identifying trends and the REF function can be used for determining the degree in which a stock has moved, it is often very useful to identify gaps in prices and extreme volume changes, which may be early indications of a change in trend.<\/p>\n<p>We can achieve this by writing:<\/p>\n<p># Returns true when the price has gapped up<\/p>\n<pre>LOW &gt;REF(HIGH, 1)<\/pre>\n<p>Or:<\/p>\n<p># Returns true when the price has gapped down<\/p>\n<pre>HIGH &lt;REF(LOW, 1)<\/pre>\n<p>You can further specify a minimum percentage for the price gap:<\/p>\n<p># Returns true when the price has gapped up at least 1%<\/p>\n<pre>LOW &gt;REF(HIGH, 1) * 1.01<\/pre>\n<p>And with a slight variation we can also the volume is either up or down by a large margin:<\/p>\n<p># the volume is up 1000%<\/p>\n<pre>VOLUME &gt;REF(VOLUME, 1) * 10<\/pre>\n<p>Or by the average volume:<\/p>\n<p># the volume is up 1000% over average volume<\/p>\n<pre>VOLUME &gt;SimpleMovingAverage(VOLUME, 30) * 10<\/pre>\n<p>We can also measure volatility in price or volume by using any one of the built-in technical indicators such as the Volume Oscillator, Chaikin Volatility Index, Coefficient of Determination,Price Rate of Change, Historical Volatility Index, etc.<\/p>\n<p>This blog is a user manual for algoZ and is continued <a href=\"https:\/\/zerodha.com\/z-connect\/blog\/view\/algoz-technical-analysis\">here<\/a>.<\/p>\n<p>Happy Trading.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Beginners, don&#8217;t worry if you don&#8217;t understand when you read this manual. We will explain how to code your technical analysis strategy in the &#8220;Code your strategy&#8221; section. Programming language This blog contains short examples that demonstrate how to perform common, basic tasks such as identifying securities within a specific price range, increase in volatility, [&hellip;]<\/p>\n","protected":false},"author":176551,"featured_media":1745,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[531],"tags":[186,230],"class_list":["post-102","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-general","tag-algoz","tag-program"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.5 (Yoast SEO v26.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Programming language: algoZ &#8211; Z-Connect by Zerodha<\/title>\n<meta name=\"description\" content=\"Beginners, don&#039;t worry if you don&#039;t understand when you read this manual. We will explain how to code your technical analysis strategy in the &quot;Code your\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Programming language: algoZ\" \/>\n<meta property=\"og:description\" content=\"Beginners, don&#039;t worry if you don&#039;t understand when you read this manual. We will explain how to code your technical analysis strategy in the &quot;Code your\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language\" \/>\n<meta property=\"og:site_name\" content=\"Z-Connect by Zerodha\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/zerodha.social\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/zerodha.social\" \/>\n<meta property=\"article:published_time\" content=\"2013-04-23T12:16:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-02T10:27:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png\" \/>\n\t<meta property=\"og:image:width\" content=\"708\" \/>\n\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Team Zerodha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@zerodhaonline\" \/>\n<meta name=\"twitter:site\" content=\"@zerodhaonline\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team Zerodha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language\",\"url\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language\",\"name\":\"Programming language: algoZ &#8211; Z-Connect by Zerodha\",\"isPartOf\":{\"@id\":\"https:\/\/zerodha.com\/z-connect\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png\",\"datePublished\":\"2013-04-23T12:16:00+00:00\",\"dateModified\":\"2024-02-02T10:27:40+00:00\",\"author\":{\"@id\":\"https:\/\/zerodha.com\/z-connect\/#\/schema\/person\/ab459269e8365cddd9d34c1885428210\"},\"description\":\"Beginners, don't worry if you don't understand when you read this manual. We will explain how to code your technical analysis strategy in the \\\"Code your\",\"breadcrumb\":{\"@id\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#primaryimage\",\"url\":\"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png\",\"contentUrl\":\"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png\",\"width\":708,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zerodha.com\/z-connect\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"General\",\"item\":\"https:\/\/zerodha.com\/z-connect\/category\/general\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Programming language: algoZ\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zerodha.com\/z-connect\/#website\",\"url\":\"https:\/\/zerodha.com\/z-connect\/\",\"name\":\"Zerodha product and business updates\",\"description\":\"Z-Connect is Zerodha&#039;s official blog. Get the latest updates, product announcements news, and insights all in one place.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zerodha.com\/z-connect\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/zerodha.com\/z-connect\/#\/schema\/person\/ab459269e8365cddd9d34c1885428210\",\"name\":\"Team Zerodha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zerodha.com\/z-connect\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/48197431b96187c109ad9cec95277dad5d96c853020ea2b0f26c675792bd17a5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/48197431b96187c109ad9cec95277dad5d96c853020ea2b0f26c675792bd17a5?s=96&d=mm&r=g\",\"caption\":\"Team Zerodha\"},\"description\":\"Simple and secure, no nonsense investing and trading.\",\"sameAs\":[\"https:\/\/facebook.com\/zerodha.social\",\"https:\/\/x.com\/zerodhaonline\"],\"url\":\"https:\/\/zerodha.com\/z-connect\/author\/team-zerodha\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Programming language: algoZ &#8211; Z-Connect by Zerodha","description":"Beginners, don't worry if you don't understand when you read this manual. We will explain how to code your technical analysis strategy in the \"Code your","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:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language","og_locale":"en_US","og_type":"article","og_title":"Programming language: algoZ","og_description":"Beginners, don't worry if you don't understand when you read this manual. We will explain how to code your technical analysis strategy in the \"Code your","og_url":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language","og_site_name":"Z-Connect by Zerodha","article_publisher":"https:\/\/www.facebook.com\/zerodha.social","article_author":"https:\/\/facebook.com\/zerodha.social","article_published_time":"2013-04-23T12:16:00+00:00","article_modified_time":"2024-02-02T10:27:40+00:00","og_image":[{"width":708,"height":350,"url":"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png","type":"image\/png"}],"author":"Team Zerodha","twitter_card":"summary_large_image","twitter_creator":"@zerodhaonline","twitter_site":"@zerodhaonline","twitter_misc":{"Written by":"Team Zerodha","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language","url":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language","name":"Programming language: algoZ &#8211; Z-Connect by Zerodha","isPartOf":{"@id":"https:\/\/zerodha.com\/z-connect\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#primaryimage"},"image":{"@id":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#primaryimage"},"thumbnailUrl":"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png","datePublished":"2013-04-23T12:16:00+00:00","dateModified":"2024-02-02T10:27:40+00:00","author":{"@id":"https:\/\/zerodha.com\/z-connect\/#\/schema\/person\/ab459269e8365cddd9d34c1885428210"},"description":"Beginners, don't worry if you don't understand when you read this manual. We will explain how to code your technical analysis strategy in the \"Code your","breadcrumb":{"@id":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#primaryimage","url":"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png","contentUrl":"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png","width":708,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/zerodha.com\/z-connect\/general\/algoz-programming-language#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zerodha.com\/z-connect\/"},{"@type":"ListItem","position":2,"name":"General","item":"https:\/\/zerodha.com\/z-connect\/category\/general"},{"@type":"ListItem","position":3,"name":"Programming language: algoZ"}]},{"@type":"WebSite","@id":"https:\/\/zerodha.com\/z-connect\/#website","url":"https:\/\/zerodha.com\/z-connect\/","name":"Zerodha product and business updates","description":"Z-Connect is Zerodha&#039;s official blog. Get the latest updates, product announcements news, and insights all in one place.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zerodha.com\/z-connect\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/zerodha.com\/z-connect\/#\/schema\/person\/ab459269e8365cddd9d34c1885428210","name":"Team Zerodha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zerodha.com\/z-connect\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/48197431b96187c109ad9cec95277dad5d96c853020ea2b0f26c675792bd17a5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/48197431b96187c109ad9cec95277dad5d96c853020ea2b0f26c675792bd17a5?s=96&d=mm&r=g","caption":"Team Zerodha"},"description":"Simple and secure, no nonsense investing and trading.","sameAs":["https:\/\/facebook.com\/zerodha.social","https:\/\/x.com\/zerodhaonline"],"url":"https:\/\/zerodha.com\/z-connect\/author\/team-zerodha"}]}},"jetpack_featured_media_url":"https:\/\/zerodha.com\/z-connect\/wp-content\/uploads\/2013\/04\/programming.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/posts\/102","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/users\/176551"}],"replies":[{"embeddable":true,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/comments?post=102"}],"version-history":[{"count":14,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/posts\/102\/revisions"}],"predecessor-version":[{"id":1757,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/posts\/102\/revisions\/1757"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/media\/1745"}],"wp:attachment":[{"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/media?parent=102"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/categories?post=102"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zerodha.com\/z-connect\/wp-json\/wp\/v2\/tags?post=102"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}