🎯 策略概述(泰语)
策略工作原理:
- 仅当价格从开盘价下跌到设定值时开启第一笔订单,并使用RSI过滤器以提高入场准确性,减少错误入场的机会
- 进入第一笔订单后,连续设置买入限价单网格,并通过马丁格尔方式增加手数(限制最大手数)以加快盈利回补
- 当总盈利为正时立即平仓所有订单,无需等待K线收盘,帮助快速锁定利润
- 支持复利模式,当累计盈利达到设定百分比时自动增加初始手数,以根据资金扩大利润
📑 输入参数(泰语)
- 初始手数 → 第一笔订单的起始手数
- 马丁格尔倍数 → 后续订单的手数倍数
- 最大手数 → 允许的最大手数
- 网格步长(美元/价格单位)→ 每笔网格订单之间的距离
- 从开盘价下跌(点数)→ 触发第一笔订单所需的价格下跌距离
- 启用RSI过滤器 → 开启/关闭RSI过滤器
- RSI周期 → 计算RSI所用的周期数
- RSI买入最大值 → 允许触发第一笔订单的最大RSI值(必须≤此值)
- 使用复利 → 启用/禁用基于盈利自动增加初始手数的功能
- 复利百分比(ProfitIncreasePercentage)→ 触发增加初始手数的累计盈利百分比
- 复利手数步长(VolumeIncreaseStep)→ 每次达到盈利阈值时增加的手数
💡 开发者意见(泰语)
该策略使用RSI作为信号过滤器,以提高交易准确性。系统仅做多方向交易,适合明显上涨趋势的品种,如黄金、指数和比特币。该系统既适用于Prop Firm账户,也适用于普通CFD经纪商。
⚠️ 策略弱点:如果市场进入强烈下跌趋势,可能会造成较大损失,因为系统使用网格策略进行加仓。如果网格间距设置过小,会导致频繁开仓。
✅ 建议:使用前应进行回测,以了解策略的整体表现和风险。
_____________________________________________________________________________
🎯 Strategy Overview (English)
Key Highlights:
- Opens the first Buy order only when price drops from the current bar’s open by the set distance (DropFromOpenPips). Uses an RSI Filter to improve entry accuracy, helping avoid poor entry timing.
- After the first order, places Buy Limit grid orders below price. Lot size for each new grid order grows with Martingale Multiplier, but is capped at Max Lot Size.
- Closes all orders immediately once total net profit is positive, without waiting for bar close.
- Supports Compound Mode to automatically increase the starting lot size when account profit reaches a set percentage, allowing position size to grow with capital.
📑 Input Parameters (English)
- Initial Lot Size → Starting lot size for the first order
- Martingale Multiplier → Lot size multiplier for each additional grid order
- Max Lot Size → Maximum allowed lot size
- Grid Step (USD/Price Units) → Distance between each grid order
- DropFromOpen (pips) → Required price drop from bar open to trigger the first order
- Enable RSI Filter → Turn RSI filter on or off
- RSI Period → Period used for RSI calculation
- RSI Buy Max → Maximum RSI value allowed to trigger the first order (must be ≤ this value)
- Use Compound → Enable/disable automatic growth of initial lot size based on profit
- Compound (%) (ProfitIncreasePercentage) → Profit growth percentage that triggers an increase in initial lot size
- Compound Volume Step (VolumeIncreaseStep) → Lot size increment each time the profit threshold is reached
💡 Developer’s Note (English)
This strategy uses RSI as a signal filter to improve trading accuracy. It trades only in the Buy direction, making it well-suited for instruments with a clear uptrend such as Gold, stock indices, and Bitcoin. It can be used for both Prop Firm accounts and regular CFD brokers.
⚠️ Weakness: If the market enters a strong downtrend, the account can face significant drawdown because the strategy uses a Grid system to average down. Setting the grid step too small may cause the bot to open too many orders too quickly.
✅ Recommendation: Always perform backtesting to understand the overall risk and behavior of the strategy before using it on a live account.