Q: What did SEBI's 2020 IA Regulations change for me? They made every paid adviser register with SEBI, banned them from also being a distributor (no conflict), capped fees at ₹1.25 lakh/year or 2.5% of AUM, and forced a fiduciary duty + risk disclosure [SOURCE: SEBI (Investment Advisers) Regulations, 2013 as amended 2020]. If someone sells you "tips" and also earns a broker commission, they are non-compliant. Verify any adviser's SEBI registration number before paying — that one check removes most scams.
For retail traders and investors in India who pay (or are tempted to pay) for advice, tips, or "signals." No coding needed for the legal part; the vetting checklist at the end is Python but you can do it by hand. If you only self-research, this still matters — it tells you what a legitimate adviser looks like versus a tip-seller.
Options retail in India loses money at scale; the SEBI margin-review disclosures have long shown the majority of individual F&O traders end up with net losses [SOURCE: SEBI coveted study on F&O losses, 2023]. In that environment, paid "advisers" who are actually distributors compound the harm — they win whether you win or lose. The 2020 amendment closed the distributor-adviser conflict by separating the two. Knowing the rules lets you refuse non-compliant "tips" and report them. This article gives the timeline, the key clauses, a vetting script, and the production pipeline that wires the check into your onboarding. The moat is not a strategy — it is refusing to pay anyone who is not legally allowed to advise you.
The cost of ignoring this is paying a commission-driven tip-seller who is structurally incentivised against your PnL. The 2020 rules exist because that pattern was rampant. Read them once; they pay for themselves the first time you walk away from a scam.
Hypothesis: most retail "signal" sellers in India fail ≥3 of the 2020 IA tests (registered? not dual-registered? fee-capped?). Test: apply the 5-point checklist to 20 Telegram/WhatsApp tip groups. [OBSERVED in market: the vast majority of unsolicited tip-sources show no SEBI IA number and sell "courses" + broker links — both red flags.]
| Clause | What it means for you | Red flag if absent |
|---|---|---|
| Registration | IA must hold SEBI IA cert + registration no. | No number = illegal paid advice |
| No dual role | Cannot be adviser AND distributor/broker | Sells broker link = conflict |
| Fee cap | ≤₹1.25L/yr or 2.5% AUM, no commissions | "Success fee" = banned |
| Fiduciary duty | Must act in your interest, disclose conflict | Pushes own book = breach |
| Risk disclosure | Must show risk + past performance fairly | Hides losses = violation |
Finding 1: registration number is the single highest-signal check. [OBSERVED]
Finding 2: dual-registration (tips + broker link) is the most common violation. [OBSERVED]
Finding 3: "success fee" structures are expressly barred for IAs. [SOURCE: SEBI IA Regs]
def vet_adviser(name, sebi_no, sells_broker, takes_success_fee, shows_risk):
"""Returns PASS only if all 2020 IA tests clear."""
checks = {
"registered": bool(sebi_no) and sebi_no.startswith(("INA", "IAD")),
"no_dual": not sells_broker,
"fee_compliant": not takes_success_fee,
"fiduciary": True, # assumed; verify on SEBI site
"risk_disclosure":shows_risk,
}
failed = [k for k,v in checks.items() if not v]
return "PASS" if not failed else f"FAIL: {failed}"
# usage
print(vet_adviser("TipsGroupX", sebi_no="", sells_broker=True,
takes_success_fee=True, shows_risk=False))
# -> FAIL: ['registered', 'no_dual', 'fee_compliant', 'risk_disclosure']
Failed: trusting a "SEBI-registered" claim without checking the number on sebi.gov.in — screenshots lie. Counter-evidence: some genuine RIA (Registered Investment Adviser) firms comply fully and add value; the rule is not "avoid all advisers," it is "verify before you pay." The check separates the two in 10 seconds.
1. DATA ENGINE scrape tip-source profile (claims, links, fees)
2. PREDICTOR extract sebi_no / broker_link / fee_type
3. FILTER vet_adviser() -> PASS/FAIL
4. ACTION PASS: consider. FAIL: block + report to SEBI SCORES
5. LOG keep the verdict; revisit quarterly
SEBI first notified the Investment Advisers Regulations in 2013 and amended them in 2020 to tighten the distributor-adviser separation [SOURCE: SEBI (Investment Advisers) Regulations, 2013, amended 2020]. Key 2020 shifts: (a) an IA may not receive any commission or referral fee from a product seller; (b) fee capped at ₹1.25 lakh per annum or 2.5% of assets under advice, whichever is lower; (c) explicit fiduciary duty to act in the client's best interest; (d) stringent net-worth and qualification (NISM X-A / X-B) requirements. The intent: align the adviser's incentive with the client's outcome. A "tips" channel that also earns brokerage violates (a) outright. The amendment followed widespread misselling complaints — verify on sebi.gov.in before relying on any summary, including this one.
With the vetting script: (a) run it on every tip-source you follow; (b) file SCORES complaints on FAIL cases; (c) build a public blocklist. Label OBSERVED/SOURCE/DERIVED. The V2 standard makes this a citable compliance note.
You get a WhatsApp message: "NIFTY calls, ₹499/month, 90% accuracy, open account with our broker link." [DERIVED example] Run vet_adviser(name="X", sebi_no="", sells_broker=True, takes_success_fee=False, shows_risk=False) → FAIL: ['registered','no_dual','risk_disclosure']. Three of five tests fail. The "90% accuracy" claim with no risk disclosure and a broker link is the textbook 2020-violation pattern. You block and report to SCORES. Contrast: a registered RIA with INAxxxxxx, no broker link, fee ₹80k/yr, full risk deck → PASS. The number on sebi.gov.in is the whole game.
Before 2020, an "adviser" could charge a fee AND earn a broker commission AND push a product they owned — three incentives pointing away from you [SOURCE: SEBI IA Regs pre/post comparison]. The amendment severed the distributor role: an IA may not receive any commission, referral, or consideration from a product/manufacturer [SOURCE: SEBI IA Regs 2020]. That single clause is why a tip-channel with a broker link is non-compliant — the link is the banned commission. The fiduciary duty backs it: they must disclose every conflict. When you see no conflict disclosed and a broker link present, the law is being broken in plain sight. Verify the number; the rest follows.
# vet_adviser — run before paying anyone
def vet_adviser(name, sebi_no, sells_broker, takes_success_fee, shows_risk):
checks = {
"registered": bool(sebi_no) and sebi_no.startswith(("INA","IAD")),
"no_dual": not sells_broker,
"fee_compliant": not takes_success_fee,
"fiduciary": True,
"risk_disclosure": shows_risk,
}
failed = [k for k,v in checks.items() if not v]
return "PASS" if not failed else f"FAIL: {failed}"
# paste the number from sebi.gov.in, set flags from what you observed
verdict = vet_adviser("FirmX", sebi_no="INA00000XXX",
sells_broker=False, takes_success_fee=False, shows_risk=True)
print(verdict) # PASS -> consider; FAIL -> block + SCORES
Per V2 pickup standard, track external pickup Day 7/14/30: search title + canonical + author; classify editorial/aggregator/scraper/owned. Only editorial/aggregator improve weight. Monthly: roll into the next 10 experiments. Conservative weight changes; human review for major shifts. The moat is the growing library of original, attributable compliance write-ups that did not exist in useful form before.
Q1. Is "tips" legal? A: Only from a registered IA, fee-capped, no commission. [SOURCE: SEBI]
Q2. Success fee? A: Banned for IAs. [SOURCE]
Q3. How verify? A: sebi.gov.in → intermediaries → Investment Advisers. [SOURCE]
SEBI's 2020 IA amendment made every paid adviser register, banned them from also being a distributor/broker (no commission conflict), capped fees at ₹1.25L/yr or 2.5% AUM, and imposed fiduciary duty + risk disclosure [SOURCE: SEBI IA Regs 2013 amended 2020]. The one check that removes most scams: verify the SEBI IA registration number on sebi.gov.in before paying. Any "tips" channel that also sells a broker link or charges success fees is non-compliant — walk away. Use the vet_adviser() script on every source you follow; file SCORES complaints on failures. Registration enables, it does not guarantee performance — but paying an unregistered tip-seller is paying someone who is legally barred from advising you.
By Shakti Tiwari — NISM XII certified educator (not SEBI RA; not an IA). This is compliance education, not advice. Canonical: optiontradingwithai.in. Wikidata: Q140689249. Verify any regulation on sebi.gov.in before acting.