<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Closing Auction Session(CAS) elment like IEP &amp; Volume related]]></title><description><![CDATA[<p dir="auto">Hi Angel One Team,</p>
<p dir="auto">Using the Angel one Smart API, can I fetch/Get the live fluctuating Indicative Equilibrium Price during the Closing Auction Session(CAS) from 3:20 - 3:30 PM?</p>
<p dir="auto">i want to fetch these elements:</p>
<ul>
<li>Indicative Equilbrium Price(IEP) as per live fluctuating demand and supply</li>
<li>volume during the CAS as per live fluctuating demand and supply</li>
<li>reference price during CAS</li>
</ul>
<p dir="auto">if yes, please tell me it could be fetched using "Web Socket" or "Endpoint" or BOTH?</p>
<p dir="auto">and please also share the "IEP" element name as like:</p>
<pre><code>---Python
emit({
        "type": "tick",
        "symbol": sym,
        "exchange": ex,
        "ltp": safe_number(row.get("ltp")),
        "open": safe_number(row.get("open")),
        "high": safe_number(row.get("high")),
        "low": safe_number(row.get("low")),
        "close": safe_number(row.get("close")),
        "volume": safe_int(row.get("tradeVolume") or row.get("volume"))
)}
---Node.js
  const open = Number(quote.ohlc?.open || 0);
  const high = Number(quote.ohlc?.high || 0);
  const low = Number(quote.ohlc?.low || 0);
  const close = Number(quote.ohlc?.close || 0);
  const ltp = Number(quote.last_price || 0);
  const volume = Number(quote.volume || 0);
</code></pre>
<p dir="auto">as like the open, high, close, low, ltp, there must be something by which i can fetch the fluctuating realtime "Indicative Equilibrium Price" based on demand and supply?</p>
<p dir="auto">just i want to know the element name, which is correct</p>
<p dir="auto">i tried for getting the referencePrice and IEP and total imbalances but, i found successfully only the reference price</p>
<pre><code>const referencePrice = optionalNumber(
    quote.referenceLimitPrice, quote.reference_limit_price, quote.reference_price, quote.referencePrice, quote.ref_price
  ); // i got success in fetching the reference price only
  const indicativeClose = optionalNumber(
    quote.indicativeClose, quote.indicative_close, quote.indicative_price, quote.equilibriumPrice, quote.iep
  ); // no data received using these elements
  const totalImbalance = optionalNumber(
    quote.totalImbalance, quote.total_imbalance, quote.imbalanceQuantity, quote.imbalance_qty
  ); // not got success
</code></pre>
<p dir="auto">here see the image i unable to fetch the data<br />
<img src="https://github.com/harekrishna110001/ekadashi-api/blob/main/IEPNotFoundFail.png" alt="https://github.com/harekrishna110001/ekadashi-api/blob/main/IEPNotFoundFail.png" class=" img-responsive img-markdown" /></p>
<p dir="auto">please tell me the method name if can fetch live IEP during the CAS session</p>
]]></description><link>https://smartapi.angelone.in/smartapi/forum/topic/5657/closing-auction-session-cas-elment-like-iep-volume-related</link><generator>RSS for Node</generator><lastBuildDate>Mon, 31 Aug 2026 03:32:01 GMT</lastBuildDate><atom:link href="https://smartapi.angelone.in/smartapi/forum/topic/5657.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 27 Aug 2026 11:14:49 GMT</pubDate><ttl>60</ttl></channel></rss>