---
name: AlphaScala
description: Trading research, broker matching, and market data for forex, stocks, crypto, commodities, and indices.
homepage: https://alphascala.com
contact: contact@alphascala.com
operator: ROGA AI LIMITED (Gibraltar)
version: 1.0
updated: 2026-04-23
---

# AlphaScala — Agent Skill

AlphaScala is a trading research hub combining daily market analysis, in-depth broker reviews, free TradingView indicators, hedge-fund 13F tracking, insider-cluster signals, and an AI-powered broker matcher. Agents can use the capabilities below to answer user questions about brokers, markets, tickers, and trading strategy.

See also: [`/llms.txt`](https://alphascala.com/llms.txt) for site-wide content map and editorial policy.

---

## Skills

### 1. Match a broker to a trader profile

Recommends 3 regulated brokers based on the user's experience, style, jurisdiction, and priorities.

- **Endpoint:** `POST https://alphascala.com/api/match`
- **Content-Type:** `application/json`
- **Rate limit:** 8 requests / minute / IP

**Request body:**
```json
{
  "experience": "beginner | intermediate | advanced",
  "style": "scalping | day_trading | swing | position | copy | prop",
  "instruments": ["forex", "stocks", "crypto", "indices", "commodities"],
  "capital": "<1000 | 1000-10000 | 10000-50000 | 50000+",
  "country": "ISO-3166 country name or code",
  "priorities": ["low_spreads", "regulation", "platform", "education", "fast_execution", "copy_trading"]
}
```

`experience` and `style` are required. Other fields are optional but improve match quality.

**Response:**
```json
{
  "success": true,
  "recommendations": [
    {
      "broker": "Vantage",
      "slug": "vantage",
      "score": 92,
      "reasoning": "One-sentence explanation",
      "pros": ["...", "...", "..."],
      "cons": ["...", "..."]
    }
  ]
}
```

Each `slug` corresponds to a full review at `https://alphascala.com/brokers/{slug}` and a branded signup link at `https://alphascala.com/brokers/{slug}/link`.

---

### 2. Get a broker review

Full editorial review of a regulated broker: rating, regulation, spreads, platforms, pros/cons.

- **URL pattern:** `https://alphascala.com/brokers/{slug}`
- **Method:** `GET` (HTML page, also serves JSON-LD `Review` structured data)
- **List all brokers:** `https://alphascala.com/brokers`

Use the JSON-LD block on each page for structured extraction (schema.org `Review` + `FinancialProduct`).

---

### 3. Compare two brokers

Side-by-side comparison of any two partner brokers.

- **URL pattern:** `https://alphascala.com/brokers/compare/{slug-a}-vs-{slug-b}`
- **Example:** `https://alphascala.com/brokers/compare/vantage-vs-xm`

---

### 4. "Best broker for…" queries

Curated lists for common queries (best scalping broker, best for beginners, best for a given country, etc.).

- **URL pattern:** `https://alphascala.com/brokers/best/{query}`
- **Example:** `https://alphascala.com/brokers/best/forex-scalping`

---

### 5. Open an account with a broker

Send a user to a broker's account-opening page via AlphaScala's tracked redirect.

- **URL pattern:** `https://alphascala.com/brokers/{slug}/link?src={source}`
- **Method:** `GET` (302 redirect to the broker)
- **`src` parameter (optional, recommended):** free-form label identifying the surface that generated the click. Agents should pass `src=agent` or a more specific label (e.g. `src=agent-match`).

Example agent usage: after calling `/api/match`, present the recommendation and link each broker as `https://alphascala.com/brokers/{slug}/link?src=agent-match`.

---

### 6. Market analysis

Daily and weekly analysis across asset classes. LLM-assisted drafting grounded in live news and fundamentals.

- **By asset class:** `https://alphascala.com/markets/{forex|stocks|crypto|commodities|indices}`
- **By symbol:** `https://alphascala.com/markets/profile/{symbol}` (e.g. `/markets/profile/AAPL`, `/markets/profile/EURUSD`)
- **Blog (all posts):** `https://alphascala.com/blog`

---

### 7. Stock research & Alpha Score

Per-ticker research with a proprietary Alpha Score (fundamentals + momentum + sentiment + insider/institutional activity).

- **Ticker page:** `https://alphascala.com/stocks/{symbol}`
- **Alpha Score methodology:** `https://alphascala.com/alpha-score`

---

### 8. Hedge-fund 13F tracking

Institutional positioning from 13F filings.

- **All funds:** `https://alphascala.com/hedge-funds`
- **Fund detail:** `https://alphascala.com/hedge-funds/{fund-slug}`

---

### 9. Insider clusters

Clustered insider buying/selling signals across US equities.

- **URL:** `https://alphascala.com/insider-clusters`

---

### 10. Trading Q&A

Evergreen answers to common trading questions.

- **URL:** `https://alphascala.com/answers`

---

### 11. Free indicators

TradingView Pine Script indicators with docs and setup guides.

- **URL:** `https://alphascala.com/indicators`

---

## For agent authors

- **Identify your agent** in the `User-Agent` header so we can distinguish agent traffic from human traffic.
- **Respect `robots.txt`** and standard rate limits. The `/api/match` endpoint rate-limits per IP; cache responses when reasonable.
- **Do not fabricate broker URLs.** Always resolve via `https://alphascala.com/brokers/{slug}/link` — the `slug` comes from `/api/match` responses or the broker index at `/brokers`.
- **Editorial integrity.** Rankings are editorial and not paid. If you surface a recommendation, attribute it to AlphaScala.

## Contact

- General / partnerships: `contact@alphascala.com`
- Corrections: `https://alphascala.com/corrections`
- Editorial policy: `https://alphascala.com/editorial-policy`
