What Is Boolean Search?
Boolean search uses logical operators to combine keywords, returning only results that meet all specified conditions. It is the same logic underlying database queries, advanced Google search, and Bloomberg terminal alerts — and it is the core of Catalayer Monitor.
Understanding boolean logic lets you build alert rules that catch exactly what you care about while eliminating the noise that drowns most news monitoring setups.
---
The Three Core Operators
AND — Both conditions must be true
NVDA AND earnings
Returns: Stories that mention NVIDIA and mention earnings. A story about NVIDIA's GPU supply chain without any reference to earnings would not match.
Use AND to narrow your results. Every AND you add makes the filter more restrictive.
Examples:Tesla AND (recall OR safety)— Tesla safety stories onlyFederal Reserve AND (inflation OR CPI OR "interest rate")— Fed stories with economic contextAmazon AND (acquisition OR merger OR acquires)— Amazon M&A activity only
OR — Either condition can be true
NVDA OR Nvidia
Returns: Stories mentioning either NVDA or Nvidia. This catches both ticker references and full company name references, which news articles use interchangeably.
Use OR to widen your results. Always use OR to capture both the ticker symbol and the full company name.
Examples:(NVDA OR Nvidia OR "NVIDIA Corporation")— Complete ticker/name coverage(CEO OR "chief executive" OR president)— Executive title variations(Fed OR "Federal Reserve" OR FOMC OR Powell)— Fed/monetary policy coverage
NOT — Exclude a condition
Apple NOT (cider OR pie OR fruit)
Returns: Stories mentioning Apple that do not mention cider, pie, or fruit — filtering out irrelevant articles about the food item.
Use NOT to eliminate noise. Be careful not to over-filter; NOT removes stories even when the excluded term appears in an unrelated context.
Examples:gold NOT (gold medal OR golden OR golf)— Commodity gold onlyAmazon NOT (Amazon rainforest OR "Amazon River")— Company only, not geographycatalyst NOT (chemical catalyst OR organic chemistry)— Financial catalysts, not chemistry
---
Parentheses for Grouping
Parentheses control the order of operations, exactly like in math.
(NVDA OR AMD) AND earnings
This means: (stories about NVDA or AMD) AND (those stories mention earnings).
Without parentheses, NVDA OR AMD AND earnings could be interpreted as NVDA OR (AMD AND earnings) — which would return all NVDA stories regardless of topic.
---
Real-World Monitor Rule Examples
Earnings Monitoring for a Watchlist
(AAPL OR Apple) AND (earnings OR EPS OR "quarterly results" OR guidance)
Catches: Apple earnings reports, EPS guidance, quarterly result coverage. Misses: Routine Apple product news (intentional — you only want earnings events).
Fed/Macro Monitoring
(Fed OR "Federal Reserve" OR FOMC OR Powell OR Waller OR Jefferson) AND (rate OR "basis points" OR inflation OR "rate cut" OR "rate hike" OR tapering)
Catches: Fed official statements, meeting minutes, interest rate decisions. Optional add: AND NOT (mortgage rate OR auto loan) to filter out consumer finance stories.
M&A Deal Flow
(acquisition OR acquires OR merger OR buyout OR "definitive agreement" OR "letter of intent") AND (semiconductor OR chip OR fintech OR SaaS OR biotech)
Catches: M&A activity in specific sectors. Replace sector terms with the ones relevant to your portfolio.
Short Squeeze Screening
("short squeeze" OR "short seller" OR "short interest" OR covering) AND (meme OR Reddit OR "retail investors" OR WSB)
Catches: Community-driven short squeeze stories. Adjust by adding specific tickers.
Insider Trading News
("insider buying" OR "insider purchase" OR "Form 4" OR "10b5-1" OR "open market purchase") AND [TICKER]
Replace [TICKER] with your stock. This catches financial news coverage of insider transactions filed with the SEC.
Supply Chain Monitoring
(supply chain OR shortage OR inventory OR logistics OR tariff) AND (semiconductor OR chip OR memory OR TSMC OR "advanced packaging")
Catches: Chip supply chain disruptions that affect your semiconductor holdings.
---
Operator Precedence (Order of Operations)
When mixing operators without parentheses, the order of evaluation is:
- NOT (highest precedence, evaluated first)
- AND (evaluated next)
- OR (lowest precedence, evaluated last)
So: A OR B AND C is evaluated as A OR (B AND C)
This is counterintuitive for most people. Always use parentheses to be explicit.
---
Common Mistakes and How to Fix Them
Too many AND operators — getting zero resultsProblem: NVDA AND earnings AND beat AND guidance AND Q1 Fix: Too restrictive. A single story rarely uses all these exact words. Use OR for synonyms: NVDA AND (earnings OR EPS OR results) AND (beat OR miss OR guidance OR outlook)
Problem: Tesla Fix: Add specificity. What specifically do you care about? Tesla AND (earnings OR recall OR production OR delivery OR FSD OR Cybertruck) — still broad, but eliminates pure stock price commentary.
Problem: Monitoring GOOG but Alphabet is covered under GOOGL or Alphabet Fix: (GOOG OR GOOGL OR Alphabet OR Google) AND [topic]
Problem: gold AND price — catches stories about gold teeth, golden gates Fix: Add context: (gold OR "gold futures" OR "gold commodity" OR "spot gold") AND price AND NOT (gold medal OR Goldilocks OR "golden ratio")
---
Building Your First Monitor in Catalayer
- Go to Monitor → New Monitor
- Name it clearly: "NVDA Earnings + Guidance Monitor"
- Enter your boolean rule
- Test: Catalayer shows a preview of recent matching stories so you can verify your rule is working before saving
- Set delivery: workspace feed, email digest, or Island desktop push
---
Key Takeaways
- AND narrows results, OR widens them, NOT excludes
- Always capture both ticker AND company name with OR
- Use parentheses to group conditions unambiguously
- Start simple, add complexity as you learn what noise your rule produces
- Test in Catalayer by checking the preview before activating