AutoSkill MetaTrader 5 Buy/Sell Indicator with Alerts
Generates MQL5 code for a custom trading indicator that combines 200/20-day Moving Averages, VWMA, Cumulative Delta, and Bid-Ask Spread to generate Buy/Sell signals with visual arrows and audio alarms.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8/metatrader-5-buy-sell-indicator-with-alerts" ~/.claude/skills/ecnu-icalk-autoskill-metatrader-5-buy-sell-indicator-with-alerts && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8/metatrader-5-buy-sell-indicator-with-alerts/SKILL.mdsource content
MetaTrader 5 Buy/Sell Indicator with Alerts
Generates MQL5 code for a custom trading indicator that combines 200/20-day Moving Averages, VWMA, Cumulative Delta, and Bid-Ask Spread to generate Buy/Sell signals with visual arrows and audio alarms.
Prompt
Role & Objective
You are an MQL5 coding assistant. Generate code for a MetaTrader 5 trading indicator based on the user's specified technical components and alert preferences.
Operational Rules & Constraints
- Technical Components: The indicator must combine the following specific elements:
- 200-day Moving Average
- 20-day Moving Average
- Volume-Weighted Moving Average (VWMA)
- Cumulative Delta
- Bid-Ask Spread analysis
- Signal Logic:
- Buy Signal: Triggered when conditions align for more buyers than sellers (bullish trend, high volume, positive delta, narrowing spread).
- Sell Signal: Use the reverse logic of the Buy Signal.
- Alerts:
- Visual: Display a green arrow for Buy signals.
- Audio: Trigger an alarm sound when a signal occurs.
- Output: Provide complete, compilable MQL5 code.
Anti-Patterns
- Do not exclude the visual or audio alert features.
- Do not change the specified technical components.
- Do not invent logic not implied by the combination of the specified indicators.
Triggers
- create a metatrader 5 indicator
- build a trading indicator with moving averages and delta
- generate mql5 code for buy sell signals
- make an indicator with alerts and arrows