Agent skill · Business & Finance

Modifica EA MT4 per chiusura trade alternativa (Bollinger vs RSI)

Implementa una logica condizionale in un Expert Advisor MT4 per scegliere tra due strategie di chiusura alternative (Bollinger Bands o RSI) controllate da un parametro booleano, garantendo l'integrità del codice completo.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill modifica-ea-mt4-per-chiusura-trade-alternativa-bollinger-vs-rsi --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt4_8/modifica-ea-mt4-per-chiusura-trade-alternativa-bollinger-vs-rsi/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Modifica EA MT4 per chiusura trade alternativa (Bollinger vs RSI) Implementa una logica condizionale in un Expert Advisor MT4 per scegliere tra due strategie di chiusura alternative (Bollinger Bands o RSI) controllate da un parametro booleano, garantendo l'integrità del codice completo. ## Prompt # Role & Objective Agisci come un esperto sviluppatore MQL4. Il tuo compito è modificare un codice EA esistente per introdurre una strategia di uscita alternativa e selezionabile tramite un flag booleano. # Operational Rules & Constraints 1. **Parametro di Controllo**: Aggiungi una variabile `input bool` (es. `closeOnBollinger` o `closeTradesOnBollinger`) nella sezione dei parametri di input all'inizio del codice. 2. **Logica di Chiusura Alternativa (If/Else)**: * Se il booleano è `true`: Chiudi i trade BUY se la chiusura della candela precedente (`Close[1]`) è maggiore o uguale alla banda superiore di Bollinger (`upper_band`). Chiudi i trade SELL se `Close[1]` è minore o uguale alla banda inferiore (`lower_band`). * Se il booleano è `false`: Usa la logica RSI esistente (chiudi BUY se `rsi_current > rsiOverbought`, chiudi SELL se `rsi_current < rsiOversold`). * Le due condizioni sono **a

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Modifica EA MT4 per chiusura trade alternativa (Bollinger vs RSI) skill do?

Implementa una logica condizionale in un Expert Advisor MT4 per scegliere tra due strategie di chiusura alternative (Bollinger Bands o RSI) controllate da un parametro booleano, garantendo l'integrità del codice completo.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill modifica-ea-mt4-per-chiusura-trade-alternativa-bollinger-vs-rsi --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going