SEBI Closing Auction Session (CAS) 2026: New BTST Strategy & AI Trading Tools Guide

CAS is now live on F&O stocks in Indian Market. Hence, closing price, your square-off window, and my BTST entry logic have all quietly shifted — here's what changed, a rebuilt BTST screener, a live CPR case study, and how AI-driven tools keep you ahead of it.

1. What Actually Changed on August 3, 2026

For years, the closing price of any stock was the Volume Weighted Average Price (VWAP) of the last 30 minutes of trade — 3:00 PM to 3:30 PM. SEBI has now replaced that, but only for stocks that carry Futures & Options (F&O) contracts (Category I). Everything else (Category II) still runs on the old VWAP method.

For Category I stocks, continuous trading now stops at 3:15 PM. What follows is a structured auction — not open trading — that decides the official closing price:

3:00 Regular trading 3:15 Trading halts 3:20 Order Entry I (indicative price) 3:25-3:30 Order Entry II (random close) 3:30-3:35 Closing price confirmed 3:40 F&O closes CAS Timeline — F&O Stocks (Category I) Closing price = price with maximum matched volume, not a 30-min average
Why it matters: the closing price now comes from a call auction — every buy and sell order pooled together, matched at one equilibrium price — the same mechanism NYSE and LSE already use. It's harder to manipulate with a last-second trade, and it's the number your P&L, your index value, and your F&O settlement will all be based on.
WhatCategory I (F&O stocks)Category II (rest)
Continuous trading ends3:15 PM3:30 PM (unchanged)
Closing price methodAuction — max matched volumeVWAP, last 30 min (unchanged)
GTT / alerts trigger till3:15 PM3:30 PM
MIS intraday auto square-off~3:10 PM (broker-adjusted)3:25 PM (unchanged)
F&O contract trading ends3:40 PM3:40 PM

2. What This Means for Your BTST Strategy

BTST (Buy Today Sell Tomorrow) lives and dies on one thing: the quality of today's close. You're buying strength going into the close, betting the gap-up continues tomorrow morning. CAS changes three things that every BTST trader needs to rebuild into their process:

  1. Your closing candle is no longer "live." On F&O stocks, the candle you see at 3:15 PM is your last real look at order flow. The final closing price gets fixed later, inside the auction — you can't chase it with a market order the way you used to in the last few minutes.
  2. The 3% band matters. Orders placed far outside the reference price band get auto-rejected in the transition period, not queued. Wide limit orders that used to "sit and wait" for a late fill will simply not go through.
  3. Your BTST entry window has moved earlier. If your checklist says "confirm strength in the last 15 minutes," that window is now 3:00-3:15 PM for F&O names, not 3:15-3:30 PM. Non-F&O stocks are unaffected and still close the old way.
BTST Decision Flow — Post-CAS Is stock in F&O (Category I)? YES Confirm setup by 3:15 NO Old rule still applies Limit order inside ±3% band no last-second market chase

3. Case Study: NIFTY Gap-Up Above Weekly & Daily CPR, Post-CAS

Here's a live example from NIFTY showing exactly why the CAS close matters for CPR-based traders. Both marked closes on the chart sit above the Weekly CPR band (yellow zone, TC-P-BC) and above the Daily CPR band (purple TC-P-BC) — a classic Trading Direction bullish confluence setup.

NIFTY chart showing close above Weekly and Daily CPR under new CAS rules, followed by a gap-up

NIFTY — close after the new CAS rules holding above both Weekly CPR (yellow) and Daily CPR (purple). PDH/PDL and R1/R2/S1/S2 zones marked for reference.

What the chart shows

  • Close above Daily CPR: price settled above the TC of the Daily CPR (purple band), indicating short-term bullish bias for the next session. hence CPR By trading direction V4 is helping for Trading decisions.
  • Close above Weekly CPR too: the same close also held above the Weekly CPR's BC-P-TC (yellow zone) — a higher-timeframe confirmation, not just a one-day fluke.
  • Gap-up in the end session: because the CAS auction pools all resting orders into one equilibrium price instead of letting a thin last-minute trade set the close, the marked closes held firm into the auction — and NIFTY opened with a gap-up the next session, continuing in the direction of the close.
  • PDH/PDL context: both closes were also trading above the prior day's high (PDH), which is the third layer of confluence a Trading Direction BTST checklist looks for — Daily CPR + Weekly CPR + PDH, all aligned.
Why this matters post-CAS: a close confirmed through the auction mechanism is less likely to be a false breakout than a close set by a random late trade under the old VWAP method. When your Daily and Weekly CPR levels are calculated off that auction-confirmed close, the CPR itself becomes a more reliable input to your BTST decision — galat breakout ka chance kam hota hai (the chance of a false breakout goes down).

4. Rebuilding the BTST Screener for the New Close

The old BTST screener logic — strong close, high volume, near day high — still holds. What changes is when you check it and how tight your entry band needs to be. Here's a Chartink-style scan and the matching TradingView Pine Script alert logic you can adapt.

Chartink Formula (BTST Candidates)

( {33489} > 500000 and close > open and close > sma( close, 20 ) and ( close - low ) > 0.6 * ( high - low ) and close > 0.98 * high and ( close - close 1 candle ago ) / close 1 candle ago * 100 > 1.5 )

This checks: strong volume, bullish close above the 20 SMA, close in the top 40% of the day's range, close within 2% of the day's high, and a minimum 1.5% move — a reasonable base filter before you apply your own price action and OI confirmation.

Pine Script Alert Logic (TradingView) — CAS-aware version

//@version=6 indicator("TD BTST Screener - CAS Aware", overlay=true) // Time gate: only evaluate strength BEFORE continuous trading halt inWindow = (hour == 15 and minute <= 15) strongClose = close > open and (close - low) > 0.6 * (high - low) nearHigh = close > 0.98 * high aboveSMA = close > ta.sma(close, 20) volSpike = volume > ta.sma(volume, 20) * 1.5 btstSignal = inWindow and strongClose and nearHigh and aboveSMA and volSpike plotshape(btstSignal, title="BTST Candidate", style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small) alertcondition(btstSignal, title="BTST Setup", message="BTST candidate confirmed before CAS cutoff (3:15 PM)")

Note the inWindow gate (samay ki seema) — this is the one line that makes an old BTST script CAS-compliant. Without it, your script keeps evaluating "closing strength" against candles that no longer represent the real close for F&O stocks.

5. Where AI Actually Helps — Beyond Just Writing Scripts

AI-driven trading tools aren't about outsourcing your decisions. Used right, they compress the boring, error-prone parts of strategy work so you spend your time on judgment — reading price action, sizing positions, managing risk — where a trader's edge actually lives.

  • Rule translation: turning a written strategy ("buy if strong close, volume 1.5x average, near high") into working Pine Script or Chartink syntax in minutes instead of hours of trial and error.
  • Regulatory adaptation: when a rule like CAS changes market structure, AI can help you audit every script and screener you run for hidden assumptions — like a hard-coded "3:25 PM" square-off check that's now stale.
  • Backtesting scaffolding: generating the boilerplate for walk-forward tests, so you can validate a BTST or swing idea across years of data before risking capital on it.
  • Pattern-to-code bridge: describing a chart pattern in plain language and getting a first-draft indicator to iterate on, rather than starting from a blank Pine Script file.
AI-Assisted Strategy Automation Stack Strategy idea (price action / OI / CPR rule) AI translation Pine Script / Chartink syntax Screener / Scanner (TradingView / Chartink) Trader judgment & execution
Important: AI can write and speed up the tooling. It cannot manage your risk, size your position, or take responsibility for a trade. Treat every AI-generated script the same way you'd treat one written by a junior analyst — test it, question it, and verify it against live market behaviour before it touches real capital.

6. FAQ — CAS Rules & BTST Strategy

What is the Closing Auction Session (CAS) and from when is it applicable?

CAS is SEBI's new auction-based method for deciding a stock's official closing price, effective August 3, 2026. It applies only to Category I stocks — those with active Futures & Options (F&O) contracts. All other stocks (Category II) continue with the old VWAP-based close.

Does CAS change my BTST strategy on non-F&O stocks?

No. Non-F&O (Category II) stocks still close the old way — VWAP of the last 30 minutes, trading until 3:30 PM. Your existing BTST checklist for these stocks stays valid. CAS only affects the ~200+ F&O-enabled names.

Why did my GTT order or price alert stop triggering at 3:25 PM?

For F&O stocks, GTT orders and price alerts now stop triggering at 3:15 PM — the moment continuous trading halts — instead of 3:30 PM. This is a broker-side adjustment to match the new CAS timeline, not a bug.

How is the CAS closing price actually calculated?

The exchange collects every buy and sell order placed during the Order Entry sessions and calculates the executable volume at each price level. The price where the maximum number of shares can be matched becomes the official closing price — not an average of trades.

Does CAS affect my Daily and Weekly CPR calculation?

Yes, indirectly. CPR (Central Pivot Range) is calculated from the previous day's high, low, and close. Since the close for F&O stocks is now auction-confirmed rather than VWAP-averaged, the input to your CPR formula is arguably more reliable — which is what the NIFTY case study above illustrates.

Can AI write a complete BTST trading algo for me?

AI can translate a clearly defined rule set into working Pine Script or Chartink syntax and speed up backtesting scaffolding. It cannot replace your judgment on position sizing, risk management, or trade execution — every AI-generated script needs to be tested and verified before it touches live capital.

What happens to my intraday (MIS) position if I don't square off before 3:10 PM on an F&O stock?

Since continuous trading halts at 3:15 PM for these stocks, brokers have moved the MIS auto square-off earlier — typically around 3:10 PM — to ensure your position exits before the market structure changes. Missing this cutoff can trigger auto square-off charges, so always confirm the exact timing with your broker.

7. Where to Go Deeper

If you want the full CAS-adjusted BTST framework — screener, checklist, and the Pine Script indicator set — along with our Algo & Indicator scripts and the CPR-based Trap Zone tools, everything is on the Trading Direction store.

Trade the New Close — Not the Old One

BTST & STBT strategy course, ready-made TradingView indicator scripts, and stock scanners — all updated for CAS market timings.

CAS Rules 2026BTST StrategyAI Trading ToolsPine ScriptChartink Screener

Anil Hanegave
Founder, Trading Direction. Author of 9 trading books on CPR, Price Action, Options & Trading Psychology, 9+ years of active NIFTY options trading experience.

SEBI Disclaimer: This content is for educational purposes only and does not constitute investment advice. Trading Direction and Anil Hanegave are not SEBI-registered investment advisors. CPR, BTST/STBT, and other strategies discussed are for learning purposes; trading and investing in securities markets are subject to market risks. Read all scheme-related and exchange documents carefully before trading. Past performance is not indicative of future results. Please consult a SEBI-registered financial advisor before making investment decisions. CAS-related rules and timings referenced here are based on SEBI's framework effective August 3, 2026 — always verify current session timings with your broker before placing trades.
Join WA Group

📢 Share this Article