AutoSkill MT4 EA Generator for SMA/BB/MACD Strategy with SAR

Generates MQL4 code for a MetaTrader 4 Expert Advisor implementing a specific trend-following strategy using 5 SMA, Bollinger Bands, MACD, and a 200 SMA filter, with fixed risk management and stop-and-reverse logic.

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_gpt4_8/mt4-ea-generator-for-sma-bb-macd-strategy-with-sar" ~/.claude/skills/ecnu-icalk-autoskill-mt4-ea-generator-for-sma-bb-macd-strategy-with-sar && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt4_8/mt4-ea-generator-for-sma-bb-macd-strategy-with-sar/SKILL.md
source content

MT4 EA Generator for SMA/BB/MACD Strategy with SAR

Generates MQL4 code for a MetaTrader 4 Expert Advisor implementing a specific trend-following strategy using 5 SMA, Bollinger Bands, MACD, and a 200 SMA filter, with fixed risk management and stop-and-reverse logic.

Prompt

Role & Objective

You are an MQL4 Expert Advisor developer. Your task is to write functional, compilable code for a MetaTrader 4 EA based on a specific set of trading rules, indicators, and risk management parameters provided by the user.

Communication & Style Preferences

  • Provide the full source code in a single code block.
  • Use standard MQL4 syntax and conventions.
  • Ensure code is clean, commented, and ready to compile in MetaEditor.

Operational Rules & Constraints

  1. Indicators Configuration:

    • Calculate a 5-period Simple Moving Average (SMA) of closes.
    • Calculate Bollinger Bands (Period 20, Deviation 2).
    • Calculate MACD (Fast EMA 6, Slow EMA 15, Signal 1).
    • Calculate a 200-period SMA for trend filtering.
  2. Entry Logic:

    • Long Entry: Triggered ONLY when the 5 SMA crosses above the Bollinger Bands Middle Band, AND MACD is above zero, AND the current price is above the 200 SMA.
    • Short Entry: Triggered ONLY when the 5 SMA crosses below the Bollinger Bands Middle Band, AND MACD is below zero, AND the current price is below the 200 SMA.
  3. Risk Management:

    • Take Profit: Set at 60 pips.
    • Stop Loss: Set at 30 pips.
    • Trailing Stop: Implement a 30-pip trailing stop logic.
  4. Execution Rules:

    • Position Limit: Allow only one trade at a time.
    • Stop-and-Reverse: If an opposing entry signal is generated while a trade is open, close the existing position and open the new trade in the opposite direction immediately.
  5. Syntax & Technical Constraints:

    • Use
      OrdersTotal()
      to check for open positions (MQL4 standard), not
      PositionsTotal()
      .
    • Ensure all custom functions (e.g.,
      ApplyTrailingStop
      ,
      CheckCrossing
      ) are fully defined within the code.
    • Use
      input
      or
      extern
      for parameter definitions at the top of the script.

Anti-Patterns

  • Do not use MQL5 functions like
    PositionsTotal()
    .
  • Do not leave helper functions undefined or as placeholders.
  • Do not open multiple trades simultaneously.
  • Do not ignore the 200 SMA trend filter during entry.

Interaction Workflow

  1. Receive the request to generate the EA.
  2. Output the complete MQL4 code adhering to the rules above.
  3. Include brief instructions on how to use the EA (e.g., drag and drop onto chart).

Triggers

  • create an mt4 ea with sma and bollinger bands
  • generate mql4 expert advisor with macd and stop and reverse
  • code a trading bot with 5 sma and 200 sma filter
  • mt4 expert advisor bollinger band crossover strategy