🎯

mql5-indicator-patterns

🎯Skill

from terrylica/cc-skills

VibeIndex|
What it does

Generates and analyzes technical indicator patterns for MQL5 trading scripts, enabling automated pattern recognition and strategy development in financial market analysis.

πŸ“¦

Part of

terrylica/cc-skills(59 items)

mql5-indicator-patterns

Installation

git cloneClone repository
git clone https://github.com/terrylica/cc-skills.git /tmp/cc-skills
git cloneClone repository
git clone https://github.com/terrylica/cc-skills.git ~/cc-skills-temp
πŸ“– Extracted from docs: terrylica/cc-skills
9Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# cc-skills

Claude Code Skills Marketplace: Meta-skills and foundational tools for Claude Code CLI.

[![Plugins](https://img.shields.io/badge/plugins-20-green.svg)](#plugins)

[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](./LICENSE)

Plugins

| Plugin | Description | Category |

| ------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------ |

| [plugin-dev](./plugins/plugin-dev/) | Plugin development: skill architecture, validation, silent failure auditing, TodoWrite templates | development |

| [itp](./plugins/itp/) | Implement-The-Plan workflow: ADR-driven 4-phase development with preflight, implementation, and release | productivity |

| [gh-tools](./plugins/gh-tools/) | GitHub workflow automation with intelligent GFM link validation for PRs | development |

| [link-tools](./plugins/link-tools/) | Comprehensive link validation: portability checks, lychee broken link detection, path policy linting | quality |

| [devops-tools](./plugins/devops-tools/) | Doppler credentials, Firecrawl self-hosted, ML pipelines, Telegram bot, MLflow, session recovery | devops |

| [dotfiles-tools](./plugins/dotfiles-tools/) | Chezmoi dotfile management via natural language workflows | utilities |

| [doc-tools](./plugins/doc-tools/) | Comprehensive documentation: ASCII diagrams, markdown standards, LaTeX build, Pandoc PDF | documents |

| [quality-tools](./plugins/quality-tools/) | Code clone detection, multi-agent E2E validation, performance profiling, schema testing | quality |

| [productivity-tools](./plugins/productivity-tools/) | Slash command generation for Claude Code | productivity |

| [mql5](./plugins/mql5/) | MQL5 development: indicator patterns, mql5.com article extraction, Python workspace | trading |

| [itp-hooks](./plugins/itp-hooks/) | ITP workflow enforcement: ASCII art blocking, graph-easy reminders, Ruff linting | enforcement |

| [alpha-forge-worktree](./plugins/alpha-forge-worktree/) | Git worktree management for alpha-forge with ADR-style naming and dynamic iTerm2 tab detection | development |

| [ru](./plugins/ru/) | Autonomous AI orchestration with Ralph Wiggum technique - keeps AI in loop until task complete | automation |

| [iterm2-layout-config](./plugins/iterm2-layout-config/) | iTerm2 workspace layout configuration with TOML-based separation of private paths from publishable code | development |

| [statusline-tools](./plugins/statusline-tools/) | Custom status line with git status, link validation (L), and path linting (P) indicators | utilities |

| [notion-api](./plugins/notion-api/) | Notion API integration using notion-client Python SDK with preflight credential prompting | productivity |

| [asciinema-tools](./plugins/asciinema-tools/) | Terminal recording automation: asciinema capture, launchd daemon, Keychain PAT storage | utilities |

| [git-town-workflow](./plugins/git-town-workflow/) | Prescriptive git-town workflow enforcement for fork-based development | devops |

| [quant-research](./plugins/quant-research/) | Quantitative research: SOTA range bar metrics, Sharpe ratios, ML prediction quality, WFO epochs | trading |

Installation

Prerequisites

| Requirement | Check | Install |

| --------------- | ------------------ | --------------------------------------------------------------------------------------- |

| Claude Code CLI | claude --version | [Getting Started Guide](https://docs.anthropic.com/en/docs/claude-code/getting-started) |

Quick Start (Recommended)

Run these commands in your terminal (not inside Claude Code):

```bash

# 1. Add the cc-skills marketplace

claude plugin marketplace add terrylica/cc-skills

# 2. Install all plugins (one-liner)

for p in itp plugin-dev gh-tools link-tools devops-tools dotfiles-tools doc-tools quality-tools productivity-tools mql5 itp-hooks alpha-forge-worktree ru iterm2-layout-config statusline-tools notion-api asciinema-tools git-town-workflow quant-research gmail-tools; do claude plugin install "$p@cc-skills"; done

# 3. Sync hooks to settings.json (requires cloning the repo)

git clone https://github.com/terrylica/cc-skills.git /tmp/cc-skills

/tmp/cc-skills/scripts/sync-hooks-to-settings.sh

# 4. Restart Claude Code to activate hooks

claude

```

Step-by-Step Installation

#### Step 1: Add the Marketplace

```bash

claude plugin marketplace add terrylica/cc-skills

```

This clones the marketplace to ~/.claude/plugins/marketplaces/cc-skills/.

Verify installation:

```bash

claude plugin marketplace list

# Should show: cc-skills - Source: GitHub (terrylica/cc-skills)

```

#### Step 2: Install Individual Plugins

```bash

# Install core plugins

claude plugin install itp@cc-skills

claude plugin install plugin-dev@cc-skills

claude plugin install gh-tools@cc-skills

# Install all remaining plugins

claude plugin install link-tools@cc-skills

claude plugin install devops-tools@cc-skills

claude plugin install dotfiles-tools@cc-skills

claude plugin install doc-tools@cc-skills

claude plugin install quality-tools@cc-skills

claude plugin install productivity-tools@cc-skills

claude plugin install mql5@cc-skills

claude plugin install itp-hooks@cc-skills

claude plugin install alpha-forge-worktree@cc-skills

claude plugin install ru@cc-skills

claude plugin install iterm2-layout-config@cc-skills

claude plugin install statusline-tools@cc-skills

claude plugin install notion-api@cc-skills

claude plugin install asciinema-tools@cc-skills

claude plugin install git-town-workflow@cc-skills

claude plugin install quant-research@cc-skills

```

#### Step 3: Sync Hooks

Hooks provide pre/post tool use enforcement and session events. They must be explicitly synced to ~/.claude/settings.json:

```bash

# Clone the repository (if not already cloned)

git clone https://github.com/terrylica/cc-skills.git ~/cc-skills-temp

# Run the hook sync script

~/cc-skills-temp/scripts/sync-hooks-to-settings.sh

# Output: βœ“ Hooks synced: PreToolUse=7, PostToolUse=3, Stop=5

```

#### Step 4: Restart Claude Code

Hooks require a restart to take effect:

```bash

# Exit any running Claude Code sessions, then:

claude

```

Verify Installation

```bash

# Check marketplace is registered

claude plugin marketplace list

# Inside Claude Code, verify commands are available

# Type "/" and look for itp:go, plugin-dev:create, etc.

```

Updating the Marketplace

When new versions are released:

```bash

# Update the marketplace repository

cd ~/.claude/plugins/marketplaces/cc-skills

git pull

# Reinstall updated plugins (or specific ones)

claude plugin install itp@cc-skills

# Re-sync hooks

./scripts/sync-hooks-to-settings.sh # From the repo directory

```

Troubleshooting

"Source path does not exist" Error

Cause: Marketplace repository is out of sync or has stale data.

Fix:

```bash

# Update the marketplace

cd ~/.claude/plugins/marketplaces/cc-skills

git pull

# Retry installation

claude plugin install plugin-name@cc-skills

```

Slash Commands Not

More from this repository10

🎯
pandoc-pdf-generation🎯Skill

Generates PDF documents from various source formats using Pandoc, enabling flexible document conversion and rendering for documentation workflows.

🎯
python-logging-best-practices🎯Skill

Provides automated guidance and code generation for implementing robust, structured logging practices in Python projects, ensuring proper log configuration and error tracking.

🎯
link-validation🎯Skill

Validates hyperlinks for broken references, portability, and adherence to path policies across documentation and project files.

🎯
ascii-diagram-validator🎯Skill

Validates ASCII diagrams for structural integrity, syntax correctness, and adherence to diagramming best practices within documentation or design artifacts.

🎯
telegram-bot-management🎯Skill

Manages Telegram bot configurations, deployments, and operational workflows within DevOps automation contexts.

🎯
code-hardcode-audit🎯Skill

Identifies and flags hardcoded sensitive information like passwords, API keys, and credentials in source code to improve security and prevent potential data exposure.

🎯
latex-tables🎯Skill

Generates and converts LaTeX table formats, providing easy table creation and transformation utilities for academic and technical document preparation.

🎯
doppler-secret-validation🎯Skill

doppler-secret-validation skill from terrylica/cc-skills

πŸͺ
terrylica-cc-skillsπŸͺMarketplace

Claude Code Skills Marketplace

🎯
asciinema-cast-format🎯Skill

Converts and standardizes asciinema terminal recording cast files, ensuring consistent formatting and compatibility across different recording environments.