RedeeCash AROON

Version History

Date Version Changes
07/08/2022 1.00 Initial Release

Description

The Aroon indicator is a technical indicator that is used to identify trend changes in the price of an asset, as well as the strength of that trend. In essence, the indicator measures the time between highs and the time between lows over a time period. The idea is that strong uptrends will regularly see new highs, and strong downtrends will regularly see new lows. The indicator signals when this is happening, and when it isn't.

The RedeeCash AROON technical indicator adds global variables for the current strength of the UP TREND and DOWN TREND as well as the slope of the UP TREND and DOWN TREND AROON indicator lines.

Code Sample

To invoke this indicator from an EA or script, call the iCustom metatrader function,

iCustom(Symbol(),PERIOD_D1,"Market/RedeeCash AROON",25,1,0);

string AroonUpTrendVarName = StringConcatenate(Symbol(),"_aroon_UP");
string AroonDownTrendVarName = StringConcatenate(Symbol(),"_arron_DN");
string AroonUpTrendSlopeVarName = StringConcatenate(Symbol(),"_aroon_UPSlope");
string AroonDownTrendSlopeVarName = StringConcatenate(Symbol(),"_arron_DNSlope");

double upAroon = GlobalVariableGet(AroonUpTrendVarName);
double dnAroon = GlobalVariableGet(AroonDownTrendVarName);
double upSlope = GlobalVariableGet(AroonUpTrendSlopeVarName);
double dnSlope = GlobalVariableGet(AroonDownTrendSlopeVarName);

double maShort = iMA(Symbol(),PERIOD_D1,50,0,MODE_SMA,PRICE_CLOSE,0);
double maLong  = iMA(Symbol(),PERIOD_D1,200,0,MODE_SMA,PRICE_CLOSE,0);             

if (upAroon > dnAroon && upAroon < 70 && maShort > maLong && upSlope > 0) {
  OrderSend(Symbol(),OP_BUY,0.01,Ask,0,0,0);
} else if (upAroon < dnAroon && dnAroon < 70 && maShort < maLong && dnSlope > 0) {
  OrderSend(Symbol(),OP_SELL,0.01,Bid,0,0,0);
}

Usage

When the Moving Averages crosses indicate a DOWN trend, use the RedeeCash AROON indicator to confirm the entry point when the AROON DOWN TREAND value is greater than the AROON UP TREND value, while the AROON DOWN TREND value is less than 70 and the AROON DOWN TREND slop is positive (non-zero).


推荐产品
KFX Symbol Changer
Peter Kariuki Thande
4 (1)
KFX SMA: Symbol Changer + Moving Average (3x) + ATR + RSI + Candle Timer. This indicator allows you to create a Symbol list and change between symbols of the current chart or Timeframe by selecting the appropriate button. On Chart there are three(3) multi timeframe Moving Averages shown (selected by you), ATR Value MTF ( selected by you -  helps with setting SL and TP), RSI Value MTF (selected by you) and a Candle Timer.   Features: - Symbol Changer : Change Symbol and Timeframe of Chart.   (s
FREE
MT4 版本: https://www.mql5.com/en/market/product/157679 MT5 版本: https://www.mql5.com/en/market/product/157680 支撑阻力指标 — 智能市场结构水平 一款简洁、智能且高度可靠的支撑阻力指标,专为专业交易者和自动化交易系统打造。 支撑阻力指标采用先进的聚类算法,结合分形、基于 ATR 的价格分割和多时间框架分析,旨在检测真实的市场水平。 该指标并非绘制随机或嘈杂的线条,而是生成经过统计验证的水平线,这些水平线代表价格反复出现反应的位置,因此非常适合主观交易、算法交易、风险管理和突破验证。 主要特性 高级支撑阻力引擎 采用 ATR 缩放网格分割 将上下分形聚类,形成高精度的结构水平 使用精度模式(高/中/低)过滤噪声 兼容多时间框架 扫描支撑阻力位: 当前图表时间框架,或 M1、M5、M15、M30、H1、H4、D1、W1、MN1 非常适合在较低时间框架交易时依赖较高时间框架结构的交易者。 清晰的可视化效果 自动绘制支撑线和阻力线 可选的基于距离阈值的
FREE
Peak Trough Analysis is the great tool to detect peaks and troughs in your chart. Peak Trough Analysis tool can use three different peaks and troughs detection algorithm. The three algorithm include the orignal Fractals Indicator by Bill Williams, the Modified Fractals indicator and ZigZag indicator. You can use this peak and trough analysis tool to detect the price pattern made up from Equilibrium Fractal-Wave process. For further usage, there are good guide line on how to use this peak trough
FREE
Newlevel
Sergey Nanov
Indicator. Zones of support and resistance levels The most reliable tool in the hands of any technical analyst is support and resistance levels.It is these levels that magically work in the market, because the price then bounces off them, on the contrary, gaining maximum acceleration, punching them and striving for a new price point.However, in practice, many beginners face enormous difficulties in building them.This is due to the fact that the price may react quite differently to them, and ofte
FREE
MQLTA Support Resistance Lines is an indicator that calculates the historical levels of Support and Resistance and display them as Lines on chart. It will also Alert you if the price is in a Safe or Dangerous zone to trade and show you the distance to the next level. The indicator is ideal to be used in other Expert Advisor through the iCustom function. This DEMO only works with AUDNZD, the full product can be found at https://www.mql5.com/en/market/product/26328 How does it work? The indicator
FREE
Sniper Trend Fusion
Ilham Hijrah Saputra
Sniper Trend Fusion This indicator is a powerful all-in-one trading tool designed to simplify chart analysis and improve decision-making. It combines multiple proven techniques into a single system, helping traders identify trend direction, volatility, key price levels, and market structure without clutter. Instead of switching between multiple indicators, everything you need is integrated into one smooth and efficient interface. Key Advantages All-in-One System Combines trend, volatility, sup
FREE
pivot points using by many traders and pivot levels most of the times are very helpfull . this indicator is a custom with internal parameters. it can show two times pivot (weekly and daily). you can choose periods total for each time showing pivots.( 1 week , 2 week ,...1day , 2day ,...) when use weekly and daily pivots , it can show you many support and resistance zones. if have proposal comment too me for upgrading indicator.
FREE
UPD1 Fibo Levels
Vitaliy Kuznetsov
5 (3)
该指标分析指定数量的蜡烛并根据高低绘制斐波那契水平。 由于级别正在重新排列,我们对范围的右侧感兴趣。 价格会吸引水平并对触摸做出反应。 使用此工具在修正后找到趋势入口点。 如果在左边我们看到水平已经完美上升,那么我们可以假设我们已经在极值点找到了运动的终点。 所有线条都通过缓冲区或对象绘制(可选)。 输入参数 。 Bars Count - 计算范围 。 Visual Button - 按钮显示(启用/禁用) 。 Corner - 按钮锚定角度 。 X indent - 以像素为单位的水平填充 。 Y indent - 以像素为单位的垂直填充 。 Label Visual - 显示级别标签 。 Label Font Size   - 字体大小 。 Label Shift Bars   - 在酒吧的铭文的缩进 。 Label Tooltip   - 在关卡上方的光标下显示文本 。 Draw Lines   -  使用缓冲区或对象绘制 。 Box Visual   - 启用/禁用框视觉 。 Box Width   - 箱线粗细 。 Box Style   - 框线样式  。 Le
FREE
Lisek Levels and Channels Indicator
Darius Hans Lischka
4.8 (20)
准备好成为外汇交易的夏洛克·福尔摩斯了吗?️‍️ 介绍终极交易工具: Lisek Levels and Channels 指标!!! 忘掉像马戏团表演一样玩多个指标的杂耍吧。我们把你需要的一切都打包成一场精彩的表演: 价格水平?搞定! 价格通道?你说对了! 价格VWAP?没错! 平衡交易量?都在这里! 还有最棒的是什么?警报和推送通知,它们会比双倍浓缩咖啡更快地唤醒你!️ 你的图表即将成为交易机会的藏宝图: 看看当前价格在哪里,还有所有酷炫的水平线、通道和VWAP。 评估平衡交易量 - 它在跳熊市之舞还是牛市探戈?看看谁占上风:买家还是卖家。 上下指向的箭头像外汇狂欢派对?那显示的是买家或卖家不断增长的交易量。 像井字游戏一样交叉你图表的线条?那些是你的水平线和通道,朋友。 但是等等,还有更多! 认识 Glimpz ,你进入大玩家游戏的VIP通行证。为什么要与鲸鱼对抗,当你可以和它们一起游泳?来自 glimpz.net 的 Glimpz 让你窥探市场大亨的策略。这就像拥有一个交易水晶球,不过不用穿占卜师的服装。 交易风格?我们的花样比高级冰淇淋店还多: 在
FREE
This indicator is based on Mr. Mark Fisher's ACD strategy, based on the book "The Logical Trader." - OR lines - A lines - C lines - Daily pivot range - N days pivot range - Customizable trading session - Drawing OR with the desired time Drawing levels A and C based on daily ATR or constant number - Possibility to display daily and last day pivots in color zone - Displaying the status of daily PMAs (layer 4) in the corner of the chart - Show the order of daily pivot placement with multi-day pi
FREE
Pivot Points are a classic technical analysis indicator that calculates the central pivot point (PP) as well as support (S1–S3) and resistance (R1–R3) levels based on the previous day’s High, Low, and Close. The indicator allows you to: • identify key zones where the price may bounce or break through • determine the direction of the trend • find good entry points, as well as set stop loss and take profit levels Indicator settings: • enable/disable PP, R1/S1, R2/S2, R3/S3 • enable/disable price l
FREE
Fibo Linear Channel
Igor Semyonov
4 (1)
Colored indicator of the linear channel based on the Fibonacci sequence. It is used for making trading decisions and analyzing market sentiment. The channel boundaries represent strong support/resistance levels, as they are the Fibonacci proportion levels. Users can select the number of displayed lines of channel boundaries on the chart by means of the input parameters. Attaching multiple instances of the indicator to the chart with different calculation periods leads to displaying a system of c
UPD1 Pivot Levels
Vitaliy Kuznetsov
5 (2)
该指标在图表上显示基于前一天计算的经典枢轴水平。 您可以选择从哪个小时计算公式。 在平盘中以反转水平交易。 在趋势市场中,将它们用作目标。 结合您的成功交易策略 。 这些级别是使用缓冲区构建的,并显示在整个可用的报价历史记录中。 输入参数 。 Start Hour - 一天从几点开始。 00 - 默认 。 Show Mid Pivots - 显示中间级别 。 Visual Button - 按钮显示(启用/禁用) 。 Corner - 按钮锚定角度 。 X indent - 以像素为单位的水平填充 。 Y indent - 以像素为单位的垂直填充 。 Label Visual - 显示级别标签 。 Label Font Size   - 字体大小 。 Label Shift Bars   - 在酒吧的铭文的缩进 。 Label Tooltip   - 在关卡上方的光标下显示文本 。 Levels Style   - 线条画风格 。 Levels Width   - 宽度 。 Levels Color   - 颜色 。 Alert - 启用/禁用通知 。 Alert Wor
FREE
.................................if you need pivot point s levels............................... ............................this is a daily pivot point level creator........................... ...it is for daily pivots and show levels at times period H4 , H1 , M30 , M15 ,M 5... .................................also shows levels for 3 last days.............................. ................can use it with other indicators and see important levels...............
FREE
SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! Key Features You can use it in all time-frames smaller than daily! Displays closest significant support and resistance levels Update the le
FREE
SR indicator
Alexander Chertnik
5 (3)
SR is a support and resistance indicator, it shows major highs and lows by different colors. The color of a level is changing if the last high or low are touching it. After the closing of a bar above or below level, it will delete it. extern inputs: loop for candles / colors / drawing time *This indicator signal is not perfect and have to be used with other market analysis and confirmations.
FREE
Grapic ByArrowTrend Pro
Truong Cong Truc
1 (1)
Indicator support for only: Entry Point to Trend Pro Link indicator  support   :   https://www.mql5.com/en/market/product/70867 Supports all currency pairs declared in the definition. Help investors do not need to open many charts. Notice the DEAL:  multiple time frames confluence   M15, H1, H4. Entry Point to Trend Pro The indicator helps investors to identify the earliest and perfect reversal point. Easy to make decision to trade with the trend   Price action trading. support resistance an
FREE
Double Price Channel   设置中指定的特定数量柱的价格通道指标。 指标线代表动态支撑或阻力位。上限为一定周期数的最高价,下限为最低价。与基于收盘价的移动平均线不同,该指标不会因小幅波动而“分心”。仅当边界发生变化时才会重新计算。如果是后者,那么值得认真思考一个新趋势的走向。有些策略是在一张图表上同时使用两个不同时期的指标。在这种情况下,周期较短的指标位于第二个指标内。 指标设置说明: Width_Bars - 指标周期 高度 - 高度,以磅为单位 Double Price Channel   设置中指定的特定数量柱的价格通道指标。 指标线代表动态支撑或阻力位。上限为一定周期数的最高价,下限为最低价。与基于收盘价的移动平均线不同,该指标不会因小幅波动而“分心”。仅当边界发生变化时才会重新计算。如果是后者,那么值得认真思考一个新趋势的走向。有些策略是在一张图表上同时使用两个不同时期的指标。在这种情况下,周期较短的指标位于第二个指标内。 指标设置说明: Width_Bars - 指标周期 高度 - 高度,以磅为单位
FREE
Support resistanses show
Meysam Ghasemi
1 (1)
.....................................hi....................... ................for showing high s and low s and support and resistanses .....................we have a lot of ways............................... it can be helpful for finding trends , higher highs , higher lows , lower highs , lower lows .......................today i write on of thems.......................... ........................you can enter the number of last support and resistanses .........................and it will dra
FREE
MQLTA Support Resistance Lines
MQL4 Trading Automation
4.33 (12)
MQLTA Support Resistance Lines is an indicator that calculates the historical levels of Support and Resistance and display them as Lines on chart. It will also Alert you if the price is in a Safe or Dangerous zone to trade and show you the distance to the next level. The indicator is ideal to be used in other Expert Advisor through the iCustom function. This indicator can be tested LIVE on AUDNZD with the following DEMO https://www.mql5.com/en/market/product/26572 How does it work? The indicato
FREE
Artemis ORB Breakout Artemis ORB Breakout is a MetaTrader 4 indicator built for traders who use Opening Range Breakout analysis around key market sessions. The indicator automatically marks the opening range high, low, midpoint, and range box. After the range is complete, it monitors price action and displays the current ORB state, range quality, session status, and trading conditions in a clean Artemis-style dashboard. The indicator supports Custom, London, New York, Asia, and London + New Yo
Awesome Pivot Indicator
Komang Putra Riswanjaya
The Pivot Indicator is a vital tool for technical analysis used by traders in the financial markets. Designed to assist in identifying potential reversal points or trend changes, this indicator provides valuable insights into key levels in the market. Key features of the Pivot Indicator include: Automatic Calculations: The Pivot Indicator automatically calculates Pivot Point, Support, and Resistance levels based on the previous period's high, low, and close prices. This eliminates the complexity
FREE
The SFT Fibo Smart Pivot indicator is a powerful trading tool based on the Fibonacci Golden Ratio, designed to identify key support and resistance levels in the forex market. This indicator has the ability to pinpoint significant price levels that can serve as entry and exit points for trades. It enables traders to analyze the market more effectively and make well-informed decisions. The indicator uses the Fibonacci Golden Ratio to accurately determine support and resistance levels. These levels
FREE
MP Demark Pivot Levels
Pierre Ksachikian
4 (1)
This indicator is stand alone version from  MP Pivot Levels  (All in one) containing Demark's Pivots. Calculations:     PP = X / 4     R1 = X / 2 - LOWprev     S1 = X / 2 - HIGHprev Uses: When the pair currency price may change the direction of movement. Possible constraints of support and resistance that creates plateaus for the currency pair prices. Tendency identification by comparing the present prices according to current day's pivot point and also the prior day's pivot points. ____________
FREE
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of   Smart Money Concepts (SMC)   and trade precisely like the institutions with the   Ultimate CRT Indicator . Built exclusively for serious traders, this indic
SR levels true mql4
Egidijus Bikulcius
5 (1)
Indicator SR levels true in small time frames is very useful for scalping while in bigger ones it is good for day or position trading. SR levels true can draw 4 support/resistance levels based on defined maximum rebouds from price level. Indicator scans  defined number of bars in time axis and defined number of pips in price axis (both sides - up and down) and calculates how much times price was rejected from scanned price levels. At the price levels where maximum rebounds are counted, support
FREE
Water Mark Pro MT4
Robby Suhendrawan
TradingView Style Chart Watermark Transform your MetaTrader 4 charts to look as elegant and professional as TradingView. Are you tired of the default, plain look of MetaTrader? WaterMark MT4 is a lightweight, fully customizable indicator designed to enhance your charting experience by adding sleek, modern watermarks directly to your trading terminal. This indicator bridges the visual gap between standard MetaTrader charts and premium web based charting platforms. It allows you to display the cur
FREE
!!!在 [CodeBase] 中,我发布了 Mql4 指标代码。免费下载代码!!! (您必须在更新终端时调整代码)。 该指标是交易者的工具。它显示了所有周期和符号上的随机指标的运动:М1, М5, М15, М30, Н1, Н4 每分钟(从当前到 -240 分钟的时间尺度,即过去 4 小时)。 Step_Stoch 克服了随机指标的缺点——滞后。例如,在 H1(或 M30)下跌后的上升可以在 H1 的 60 分钟后或 M30 的 30 分钟后在通常的随机指标上看到。该指示器会在一分钟内显示此信息,让您获得更好的结果。 您可以将所有随机指标组合在一起并分析它们的走势,以立即做出最佳交易决策,这可能会导致在关闭交易时损失利润或延迟开盘,此时利润(大部分)的可能性已经丧失. Step_Stoch 线可帮助您更快地看到趋势反转过程的开始。 该指标会自动调整为 4 位和 5 位报价、屏幕 DPI、图表的时间刻度。 输入值     KPeriod, DPeriod, Slowing, Mode_, - 标准随机参数。     ColorBack - 背景颜色。可以在选项卡上更改随
FREE
The Icarus Reversals(TM) FREE Indicator is a powerful tool to identify high-probability reversal points, across all instruments.  The Reversals Indicator provides traders and investors with a simple-to-use and highly dynamic insight into points of likely price-action reversals.  Generated by a unique proprietary code-set, the Reversals Indicator (FREE version) generates long and short trade signals, which can be customised for key inputs and colourisation. Settings of the Icarus Reversals FREE h
FREE
PointsVsBars
Stanislav Korotky
This indicator provides a statistical analysis of price changes (in points) versus time delta (in bars). It calculates a matrix of full statistics about price changes during different time periods, and displays either distribution of returns in points for requested bar delta, or distribution of time deltas in bars for requested return. Please, note, that the indicator values are always a number of times corresponding price change vs bar delta occurred in history. Parameters: HistoryDepth - numbe
FREE
该产品的买家也购买
Neuro Poseidon MT4
Daria Rezueva
4.95 (38)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
Miraculous 指标 – 100% 不重绘的外汇和二元期权工具,基于江恩九方图 这个视频介绍的 Miraculous 指标 是一款专为外汇和二元期权交易者开发的高精度、强大交易工具。该指标的独特之处在于它建立在传奇的 江恩九方图 和 江恩振动法则 之上,使其成为现代交易中可用的最精确预测工具之一。 Miraculous 指标 完全不重绘 ,这意味着它的信号在 K 线收盘后不会改变或消失——你看到的就是你得到的。这为交易者提供了可靠且一致的基础,让他们能够自信地进出场交易。 主要特点: 基于江恩九方图和江恩理论构建 100% 不重绘的信号系统 适用于所有时间周期(M1、M5、H1、H4、日线、周线) 适用于外汇和二元期权交易 清晰的买卖信号,准确率高 可用于剥头皮、日内交易或波段交易 兼容大多数 MT4 平台 这款工具旨在帮助初学者和专业交易者做出更好、更明智的决策。无论您是交易货币、指数还是二元期权,Miraculous 指标都将为您在市场中提供所需的优势。
Trend Catcher ind
Ramil Minniakhmetov
5 (7)
趨勢捕捉指標 趨勢捕捉指標結合了作者獨有的客製化自適應趨勢分析指標,用於分析市場價格趨勢。它透過過濾掉短期噪音,並專注於潛在的動能強度、波動性擴張和價格結構行為,來識別真實的市場方向。此外,它還結合了平滑和趨勢過濾等客製化指標,例如移動平均線、相對強弱指標 (RSI) 和波動率過濾器。 您可以在這裡查看實際運行情況以及我的其他產品: https://www.mql5.com/en/users/mechanic/seller 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。 重要提示!購買後請立即聯繫我,以獲取使用說明和額外獎勵! 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。
Gann Made Easy
Oleg Rodin
4.84 (165)
Gann Made Easy 是一个专业且易于使用的外汇交易系统,它基于使用先生理论的最佳交易原则。 W.D.江恩。该指标提供准确的买入和卖出信号,包括止损和获利水平。您甚至可以使用推送通知在旅途中进行交易。 购买后请联系我,即可免费获得交易指导和超棒的额外指标! 您可能已经多次听说过江恩交易方法。通常 Gann 的理论不仅对于新手交易者而且对于那些已经有一定交易经验的人来说都是非常复杂的东西。这是因为江恩的交易方法在理论上并不那么容易应用。我花了几年时间来完善这些知识,并将最好的原则应用到我的外汇指标中。 该指标非常易于应用。您所需要的只是将其附加到您的图表并遵循简单的交易建议。该指标不断进行市场分析工作并寻找交易机会。当它检测到一个好的入口点时,它会为您提供一个箭头信号。该指标还显示止损和获利水平。 换句话说,当您像先生一样进行交易时,该指标会为您提供最佳江恩建议。江恩亲自告诉你此时此刻该做什么。但最好的部分是您不需要了解任何有关江恩交易原则的知识,因为该指标会为您完成整个市场分析工作。
Prop Firm Sniper
Mohamed Hassan
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
M1 Sniper
Oleg Rodin
5 (24)
M1 SNIPER 是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
Dynamic Forex28 Navigator
Bernhard Schweigert
4.43 (7)
Dynamic Forex28 Navigator - 下一代外汇交易工具。 当前 49% 折扣。 Dynamic Forex28 Navigator 是我们长期流行的指标的演变,将三种功能合二为一: 高级货币强度 28 指标 (695 条评论)+ 高级货币 IMPULSE 带警报 (520 条评论)+ CS28 组合信号(奖励)。 有关指标的详细信息 https://www.mql5.com/en/blogs/post/758844 下一代强度指标提供什么? 您喜欢的原始指标的一切,现在通过新功能和更高的精度进行了增强。 主要特点: 专有货币强度公式。  所有时间范围内的平滑和准确的强度线。 非常适合识别趋势和精确进入。 动态市场斐波那契水平(市场斐波那契)。  此指标独有的独特功能。 斐波那契应用于货币强度,而不是价格图表。 适应实时市场活动以获得准确的反转区域。 实时市场动量。  第 9 行显示市场是活跃还是被动。 对于定时交易至关重要。 全面的警报和显示。  每种货币最强的买入和卖出动量。 ​​28 对的双重动量买入和卖出。 超买/超卖警告外部范围和止损。 反转
BTMM State Engine Pro MT4
Garry James Goodchild
BTMM State Engine Pro is a MetaTrader 4 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
Scalper Inside PRO
Alexey Minkov
4.68 (69)
Scalper Inside PRO Scalper Inside PRO 是一款日内趋势与剥头皮指标,采用独家的内置算法来评估市场方向和关键目标位。该指标会自动计算进场点、出场点以及多个止盈目标位,并显示详细的绩效统计数据,让您能够看到不同品种和策略在历史数据上的表现。这有助于您选择符合当前市场状况的交易品种。您还可以将自己的箭头指标连接到 Scalper Inside PRO,并快速查看它们的统计数据和历史信号。 Scalper Inside PRO 使用手册及参数说明: 点击阅读 该指标适用于任何品种和时间周期(日内交易推荐使用 M5),并包含多种内置策略。它既可作为独立的剥头皮工具使用,也可作为您交易系统的分析组件。 主要功能 基于独家的新一代趋势检测算法 Next-Generation Trend Detection Algorithm (NG TDA) 进行趋势识别。 自动计算进场点和出场点,并提供多级止盈目标(TP1、TP2、TP3)。 三种内置策略和一个优化器,用于将信号适配到当前品种和时间周期(仅在实时模式下可用)。 提供品种和策略在历史数据上的详细绩效统计。 提
MetaBands M4
Vahidreza Heidar Gholami
3.5 (6)
MetaBands使用强大且独特的算法绘制通道并检测趋势,以便为交易者提供进出交易的潜在点。它是一个通道指标和强大的趋势指标。它包括不同类型的通道,可以通过使用输入参数简单地合并以创建新通道。MetaBands使用所有类型的警报通知用户市场事件。 功能 支持大多数通道算法 强大的趋势检测算法 能够合并不同类型的通道 多时间帧和多货币(信号矩阵) 所有类型的警报功能(声音、屏幕闪烁、推送通知、电子邮件、弹出窗口、箭头) 它永远不会重绘 趋势检测 MetaBands使用在通道内振荡的蓝色线来检测趋势。当该线遇到通道的上界时,表明开始下跌趋势,当它遇到下界时,表明开始上涨趋势。如果蓝线接近中线,则市场处于整理期。 该指标使用独特的方法来检测趋势。一开始可能看起来有些复杂,但如果您观看视频教程,您就会意识到它是多么强大且易于使用。 入场和出场信号 当趋势变化或价格穿过上下通道时,MetaBands会立即通过不同的方法提醒交易者,这些方法可以在指标设置中启用。 信号矩阵 要监视来自不同时间框架的多个符号并在一个地方查看信号,请单击右上角按钮或按键盘上的M键以打开信号矩阵。该矩阵可以快速概览
Genesis Matrix Pro is a professional multi-timeframe trend detection indicator designed to help traders identify high-quality market alignment with clarity and structure. It combines 12 different technical indicators into one visual alignment matrix, allowing traders to quickly see when market conditions are bullish, bearish, or neutral. A signal is generated only when the selected strategies are aligned, helping reduce noise and improve decision-making. PLEASE CONTACT ME AFTER PURCHASE TO GET
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Trend Trading System 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Smart Trend Trading System 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Smart Trend 信号转换为自动交易。 Smart Trend Trading System 是一套完整的交易系统,具备不重绘、不回绘、不延迟的特点,专为希望获得更清晰信号、更准确趋势方向以及更有组织交易方式的交易者打造。 Online course , manual and download presets . 它将 10 多种交易工具 整合到一个系统中,包括趋势检测、反转区域、Smart Cloud、移动止损逻辑、支撑与阻力、K线着色、提醒以及多周期分析。 该系统旨在帮助您应对不同的市场环境: 趋势市场: 识别主要趋势,发现回调,跟随动能,并通过止损指导和移动止损选项寻找更清晰的入场机会。 震荡
Advanced Supply Demand
Bernhard Schweigert
4.91 (300)
现在优惠 30%! 任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需
Gann 方块指标是一种强大的市场分析工具,基于 W.D. Gann 在其“市场预测数学公式”一文中介绍的数学概念。该指标融合了与平方数(如 144、90 和 52)有关的 Gann 技术,以及平方 9。此外,它还融入了  关于如何将平方 9 与通道和星形图案结合使用的方法。 用户手册和使用方式: 在使用该指标之前,我们建议您阅读用户手册,并与我们联系以获得任何澄清。您可以在我们的网站上找到完整的用户手册。 该指标提供了 MT5 的完整版本供购买,也提供了 MT4 的免费版本供测试。提供了两个版本的链接供您方便使用。 主要特点和功能: Gann 方块指标为您的交易环境提供了全套工具,使您能够基于几何图案和 Gann 的概念做出明智的决策。以下是主要特点: 平方 9 分析: 该指标可以绘制与平方 9 有关的各种元素,包括水平线、星形图案、网格、Gann 扇形等。这在您的图表上提供了 Gann 的几何概念的视觉表示。 Gann 方块: 该指标绘制了 Gann 方块 52、90 和 144,使您能够可视化和分析它们与价格走势的关系。 自由 Gann 星形图案: 该指标使您能够直接在图表上绘制
Neo Wave PRO
Nikolay Raykov
5 (1)
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
Enigma scalper fx
Yonny Pascal Ekwa Mezui
Enigma Scalper  Overview Enigma Scalper Pro is a multi-filter breakout indicator designed for traders who want clean entry signals with confirmation from several technical conditions instead of relying on a single trigger. The indicator combines: 3-Bar Breakout pattern detection Higher Timeframe confluence Bollinger Band extreme filtering RSI momentum analysis Optional EMA trend filtering ATR-based SL/TP projection Signals are generated only after candle close to ensure stable non-repainting beh
PRO Renko System
Oleg Rodin
5 (30)
PRO Renko Arrow Based System for trading renko charts.  准确的信号交易任何外汇工具. 另外,我将免费提供系统的附加模块! PRO Renko系统是RENKO图表上高度准确的交易系统。该系统是通用的。 该交易系统可应用于各种交易工具。 该系统有效地中和了所谓的市场噪音,打开了获得准确反转信号的通道。 该指标易于使用,只有一个参数负责产生信号。 您可以很容易地使算法适应您感兴趣的交易工具和renko酒吧的大小。 我很乐意通过提供任何咨询支持来帮助所有客户有效地使用该指标。 祝您交易成功!购买后,立即写信给我! 我将与您分享我的建议和我的renko发电机。 另外,我将免费提供系统的附加模块!
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault 是一个专业的剥头皮系统,为您提供成功剥头皮所需的一切。该指标是一个完整的交易系统,可供外汇和二元期权交易者使用。推荐的时间范围是 M5。 该系统为您提供趋势方向的准确箭头信号。它还为您提供顶部和底部信号以及江恩市场水平。无论您拥有何种交易经验,该系统都易于使用。您只需要遵循简单的规则并每天重复该过程。 建议将此系统用于主要货币对。感谢您的关注! 请注意,该指标在策略测试器中可能无法正常工作。因此,我建议仅在模拟或真实账户的真实交易条件下使用该系统。 指示器提供所有类型的警报,包括推送通知。 购买指标后请与我联系。我将免费与您分享我的个人交易建议和出色的奖励指标! 祝您交易愉快,盈利!
Breakout Arrows Mt4
Michael Oko Oboh
5 (1)
Trend Breakout Arrows Indicator The Trend Breakout Arrows Indicator is a momentum-based signal tool designed to identify potential bullish and bearish breakout opportunities. It displays clear arrow signals directly on the price chart, helping traders quickly recognize possible trend changes and continuation setups. Up Arrow (Buy Signal) A magenta up arrow appears below a candle when bullish momentum begins to strengthen. This signal indicates that buying pressure may be overtaking selling press
Pinpoint 是一个高效的交易指标,专为准确的 XAUUSD 买入和卖出信号而设计。 该指标的工作原理没有重绘和没有延迟。 该指标专为在快速变化的市场中实时想要快速,准确和可视化解决方案的交易者而设计。 该指标可作为现成的交易策略。 它根据内置算法分析价格行为,并确定理想的切入点,以及显示未来利润可以记录的位置。 为了更准确地识别潜在的变化,该指标有一个内置的智能趋势线工具,可以根据当前的市场条件动态调整。 根据标准线路设置: 绿色购买倡议。 红色是卖出的主动权. 橙色—有可能拦截以前的倡议。 Pinpoint mt5 Pinpoint Blog Pinpoint 包含多种过滤器,可帮助减少误报并提高输入质量。 默认配置针对 TF m15、m30和1H的XAU/USD在5年时间段内进行了优化。 因此,为更稳定和一致的交易选择了最佳设置,并根据每个时间帧的标准自动设置。 但是,有些设置单独显示在指标菜单中,在那里它们可以保持自动或根据当前市场情况自行更改并选择。 该指标提供清晰直观的买入和卖出信号。 它们由箭头和颜色表示。 橙色信号,在任何方向,意味着风险增加。 这意味着最
The indicator scans for Dinapoli thrust pattern in multiple timeframes for the all markets filtered and shows the results on Dashboard. Key Features Dashboard can be used for all markets It can scan for thrust pattern on MN1, W1, D1, H4, H1, M30, M15 ,M5, M1 timeframes Ability to choose number of bars required above/below displaced moving average to define thrust Parameters UseMarketWatch: Set true to copy all symbols available in market watch MarketWatchCount : Set the number of symbols that
Advanced Currency Strength28 Indicator
Bernhard Schweigert
4.91 (657)
目前40%的折扣 任何新手或专家交易者的最佳解决方案! 这个指标是一个独特的、高质量的、可负担得起的交易工具,因为我们纳入了一些专有的功能和一个新的公式。只需一个图表,你就可以读出28个外汇对的货币强度!想象一下,你的交易将如何得到改善,因为你的交易是在你的手中进行的。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点? 用户手册:点击这里  https://www.mql5.com/en/blogs/post/697384 这是第一本,原版的! 不要买一个毫无价值的崇拜者的克隆品。 特别的 子窗口中的箭头显示强劲的货币势头GAP将指导你的交易! 当基础货币或报价货币处于超卖/超买区域(外盘斐波那契水平)时,在个人图表的主窗口中出现警告信号。 当货币力量从外围区间回落时,回撤/反转警报。 十字星模式的特别警报 可选择多个时间框架,以快速查看趋势! 货币强度线在所有的时间框架中都非常平稳,当使用较高的时间框架来识别总体趋势,然后使用较短的时间框架来确定精确的入口时,效果非常好。你可以根据自己的意愿选择任何时间框架。每个时间框架都由其自身进行了优化。
Reversion King MT4
Eugen-alexandru Zibileanu
市场新王者登场 —— 指标 + 订单管理系统(TP1 + TP2 + TP3)(完整交易系统) 该指标集成了一套先进的交易策略、可自定义订单管理系统以及均值回归(Mean Reversion)交易体系。系统结合 Envelopes 通道扩展技术,并通过 RSI 等多重智能确认过滤器筛选高概率反转机会,生成清晰的 BUY(买入)和 SELL(卖出)信号。 本指标绝不重绘(No Repaint)。 您不仅能够学习如何寻找优质交易机会,还能掌握如何高效管理多个持仓,并利用已有盈利仓位来覆盖潜在亏损交易,实现更专业的资金管理。 本指标专为 M5 时间周期开发和优化,在几乎所有交易品种和货币对上均具有出色表现。同时支持历史回测,可帮助您评估系统在不同市场环境下的表现与适用性。 指标会自动生成清晰的多头(Long)和空头(Short)信号,并基于 ATR 自动计算入场价、止损位(Stop Loss)和止盈位(Take Profit),让风险管理从交易开始就融入系统之中。 多级止盈系统(Multi-TP)设有三个递进式目标位。您可以在 TP1 部分获利了结,在 TP2 进一步锁定利润,并将剩余仓位持
本指标是实践实战交易完善的波浪自动分析的指标 !  案例... 注: 波浪分级用西方叫法不习惯,因受到缠论(缠中说禅)命名方式习惯的影响,我是将基础波浪命名为 笔 ,将二级波段命名为 段 ,同时具有趋势方向的段命名为 主趋段 (以后笔记中都是这种命名方式,先告知大家),但是算法上和缠论关系不大切勿混淆.反映的是本人分析盘面总结的 千变万化纷繁复杂的运行规律 . 对波段进行了标准化定义,不再是不同人不同的浪  ,    对人为干扰的画法进行了排除,在严格分析进场起到了关键的作用 . 使用这个指标,等于将交易界面提升美感,抛弃最原始的K线交易带你进入新的交易层次.如果不是为了交易,在宣传上也将使客户观感提升层次. 指标内容: 1. 基础波浪 (笔) : 首先我们找出了价格波动过程中的基础波动拐点,当然他的有序性低,为下一步的计算提供基础. 2. 二级波段( 段 ) :在基础波浪的基础上,通过算法分析得到层级更明显的二级波段,二级波段为波浪提供了分析基础 3. 波浪( 浪 ): 有着更清晰的趋势,更清晰直观的方向.分析一个波浪是否延续,需要看二级波段的形态,分析二级的构成,可以得出波浪
Harmonic Pattern Plus MT4
Young Ho Seo
4.44 (18)
Introduction Harmonic Patterns are best used to predict potential turning point. Traditionally, Harmonic Pattern was identified manually connecting peaks and troughs points in the chart. Manual harmonic pattern detection is painfully tedious and not suitable for everyone. You are often exposed under subjective pattern identification with manual pattern detection. To avoid these limitations, Harmonic Pattern Plus was designed to automate your harmonic pattern detection process. The functionality
KT Alpha Hunter Arrows MT4
KEENBASE SOFTWARE SOLUTIONS
大多数箭头指标只给你一个信号,然后把剩下的判断全部留给你自己。KT Alpha Hunter Arrows 给你的,是一套完整的交易计划。 每一个信号箭头出现时,图表上都会同时绘制完整计划:入场线、止损位、四个止盈目标,以及实时 Edge 结论,告诉你当前品种和时间周期是否值得交易。套装中还包含 Trade Manager EA,在你手动入场后负责后续执行,让你在市场波动和情绪干扰下依然保持纪律。非重绘。只在K线收盘后给出信号。适用于 Forex、黄金、指数,以及你交易的其他任何品种。 核心功能 非重绘买入和卖出箭头,只在K线收盘后出现。 每个信号都带有入场线、结构性止损和四个止盈目标。 Edge Dashboard 会分别评估当前图表上的买入和卖出机会。 结论系统:No Edge、Marginal、Tradeable、Good 或 Strong。 一键 Auto Optimize 按钮,可根据当前品种和时间周期自动调整设置。 完整套装包含 Trade Manager EA,并内置五种专为本指标设计的交易管理方案。 Prop Firm Risk Panel 可在图表上实时追踪日内回撤
Break Axis Signal
Leandro Bernardez Camero
BreakAxis — 转折点的精确信号 加入频道,及时获取最新更新: https://www.mql5.com/en/channels/forexnewadvisor 基于轴线交叉的信号逻辑 BreakAxis Signal 旨在通过零轴交叉来识别价格方向的变化。 柱状图的变化用于突出可能的市场动量变化,并通过方向箭头提供视觉确认。 信号确认与稳定性 每个信号在满足特定数学条件后生成,避免重绘,保持历史数据的完整性。 买入和卖出信号根据平滑值的动态变化独立标记,这些值是根据最近的高点和低点计算得出。 图形显示与提醒 方向变化会在图表中直观显示,并可选择启用提醒以实现实时监控。 该算法结构清晰,无需依赖传统指标,仅基于价格行为进行处理。 灵活性与参数设置 适用于需要基于交叉机制和柱状图趋势动态生成精准视觉信号的交易者。 支持多种时间周期与交易品种,提供可自定义的周期和平滑参数设置。 常见问题 该指标会重绘吗? 不会。信号在蜡烛图收盘时生成,并保持不变。 是否使用了回绘? 没有。箭头仅在满足确认条件时绘制,且不会回溯应用于历史K线。 可以关闭提醒吗?
PZ ABCD Retracement
PZ TRADING SLU
4 (5)
该指标找到AB = CD回撤形态。 AB = CD回调模式是一种4点价格结构,其中初始价格区间被部分回调,然后与回调完成后等距移动,这是所有谐波模式的基本基础。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 可定制的图案尺寸 可定制的AC和BD比率 可定制的突破时间 可定制的线条,颜色和大小 它根据CD纤维水平显示SL和TP水平 视觉/声音/推送/邮件警报,用于模式和突破 AB = CD Retracements可以扩展和重新绘制很多内容。为了使事情变得更容易,该指标实施了一个转折:它在向交易发出信号之前等待正确方向的Donchian突破。最终结果是带有非常可靠的交易信号的重新粉刷指示器。输入donchian突破时段作为输入。 看涨回撤是蓝色的 空头回撤是红色的 请注意,价格模式(例如AB = CD)可以扩展,指标必须重新绘制以跟随该模式的扩展。如果图案重涂超出了参数中输入的AC / BD / AB = CD比率,则该图案将消失,因为它将不再有效。要交易这些模式,请求助于donchian突破信号。 输入参数 幅度:AB = CD模式的大小 突围
Trend Lines PRO
Roman Podpora
5 (1)
TREND LINES PRO 帮助您了解市场真正的方向转变点。该指标显示真实的趋势反转点以及主要参与者重新入场的时机。 您可以看到 BOS线、 趋势变化和更高时间框架的关键水平——无需复杂的设置或不必要的干扰。信号不会重绘,并在K线收盘后仍然保留在图表上。 VERSION MT 5    -   与……搭配使用时,可发挥其最大潜力   RFI LEVELS PRO 指示器 该指标显示的内容: 实际变化 趋势(BOS 线) 一旦信号出现,它就始终有效!这与会重绘的指标有着重要的区别,后者可能会发出信号后又改变信号,从而导致资金损失。现在,您可以更精准、更准确地进入市场。此外,还有一个功能,会在箭头出现后为K线着色,直到达到目标价位(止盈)或出现反转信号为止。 重复条目   以及主要玩家的充值 为了提高寻找入场点时的视觉清晰度,我们创建了一个模块,该模块首先显示买入/卖出区域,并在该区域内寻找最佳入场点。此外,我们还加入了智能逻辑来管理止损位,该逻辑会随着时间的推移逐步降低止损位的大小,从而降低入场交易时的初始风险(移动止损位)。 信号强度水平(BOS) 该指标采用三个显著性等级来衡量
Legacy of Gann
Pavel Zamoshnikov
4.83 (12)
The indicator very accurately determines the levels of the possible end of the trend and profit fixing. The method of determining levels is based on the ideas of W.D.Gann, using an algorithm developed by his follower Kirill Borovsky. Extremely high reliability of reaching levels (according to K. Borovsky  - 80-90%) Indispensable for any trading strategy – every trader needs to determine the exit point from the market! Precisely determines targets on any timeframes and any instruments (forex, met
作者的更多信息
RedeeCash Volumes Indicator
Patrick Odonnell Ingle
Version History : Date Version Changes 6/20/2022 1.00 Initial release 6/21/2022  1.10 Add global variables for Minimum (SYMBOL_volume_min) and Maximum (SYMBOL_volume_max) History Volumes  Description : RedeeCash Volumes Indicator is the Volumes indicator that you have come to trust for market entry and exit with the added benefit of exposing key metrics as global variables. Including global variables in an indicator permits easier interaction with expert advisors (EA) and scripts. When attaching
FREE
RedeeCash 三角套利機會將可用的貨幣三元組和每個貨幣交易頭寸設置顯示為全局變量,格式為 AAA/BBB、CCC/AAA、CCC/BBB:AAA/BBB -1|0|1 AAA/BBB、CCC/AAA、CCC/BBB:CCC/AAA -1|0|1 AAA/BBB、CCC/AAA、CCC/BBB:CCC/BBB -1|0|1 其中值是 OP_BUY 或 OP_SELL 的交易方向。 如果交易方向指示 -1,則該貨幣對不應發生交易。 三角套利交易對於不再允許對沖的美國賬戶很有用。 實際上有更多的套利機會,該指標以交易設置的形式顯示所有這些機會。 您只需要讀取全局變量並決定交易哪個機會? 當您開倉時,您應該使用至少 200 PIPS 的止盈,否則交易可能會在沒有止盈值的情況下開倉。
FREE
RedeeCash Rate of Change
Patrick Odonnell Ingle
變化率 根據公式, ROC = (Close[n] - Close[n-lookback]) / Close[n-lookback] * 100 繪製一個貨幣對價格行為在回顧期內的變化率,並提供兩個全局變量,SYMBOL_ROC 和 SYMBOL_ROC_LOOKBACK,分別代表最新的變化率值和上一個回顧期的變化率。 使用 iCustom 函數調用指標, iCustom ( "Market/RedeeCash_Rate_of_Change.ex4" , Symbol (), 5 , 0 , 0 ); 然後檢索全局變量, double roc = GlobalVariableGet ( StringConcatenate ( Symbol (), "_ROC" )); double roc_lookback = GlobalVariableGet ( StringConcatenate (Synbol(), "_ROC_LOOKBACK" )); 並執行測試以驗證趨勢, if (roc > roc_lookback && roc > 0 ) trend= "UP" ; if (ro
FREE
RedeeCash WilliamsX50
Patrick Odonnell Ingle
基於 https://tradingstrategyguides.com/williams-percent-range-strategy/ 中確定的策略,但自動支持來自單個專家顧問實例的多種貨幣。還使用 SMA 慢速和快速交叉來確定趨勢方向。 外部策略的基礎是當 Williams %R 在上升趨勢中穿過 -50 時進行買入交易,並在下跌趨勢中進行賣出交易。 您可以控制趨勢週期和 Williams %R 範圍從中點到外部參數,        SINGLE_CURRENCY = true,此參數用於交易單一貨幣,但是,如果您想最大化您的盈利潛力,請將此參數設置為 false 並僅附加到一個圖表,此 EA 將交易在市場觀察窗口中選擇的那些貨幣在您的 Metatrader 4 終端上。        CONCURRENT_ORDERS = 0,此參數是您的策略管理,您可以在其中定義一次可以打開多少並發交易。        TREND_PERIOD = PERIOD_D1,此參數設置趨勢和威廉姆斯%R週期        SLOW_MA_PERIOD = 200,此參數設置慢移平均週
FREE
RedeeCash Multime XMA
Patrick Odonnell Ingle
在多個時間範圍內交叉移動平均線。 雖然傳統的趨勢策略會選擇像每日這樣的時間框架來估計趨勢,但當從 5M 到每月的所有時間框架都顯示相同的趨勢時,該專家顧問將在趨勢方向上進行交易。       SINGLE_CURRENCY = true,允許對單一貨幣進行操作,當禁用 (FALSE) 時,將交易在 metatrader 的市場觀察窗口中選擇的貨幣。       CONCURRENT_ORDERS=0,限制多個訂單同時開倉的數量。       PIPS=100,盈利PIPS       DODDFRANK_COMPLAINCE = false,如果在美國賬戶上交易,您需要啟用 FIFO 以防止接收 FIFO 違規?       LOTS=-1,當 LOTs 參數小於零(或負數)時,使用基於每 100 美元賬戶淨值 0.01 手(非餘額)的內部算法計算手數。 如果賬戶貨幣不是美元,則賬戶淨值轉換為美元進行計算(v1.30)       MAX_AUTOLOTS_TRADE=2,使用自動手數算法的最大交易手數=-1 當 LOTS=0 時,交易將失敗(例如在沒有資金風險的情況下在
FREE
RedeeCash TimeZones
Patrick Odonnell Ingle
該指標將顯示活躍和不活躍的交易時段,並將全局變量設置為交易時段是活躍的 (1) 還是不活躍的 (0)。 使用 iCustom 庫函數,您可以從 EA 交易或腳本調用此指標,如下所示, // 調用自定義指標 iCustom ( Symbol (), PERIOD_D1 , "Market/RedeeCash_TimeZone" , 0 , 0 ,Blue,Red); // 獲取全局變量的值 double NewYorkSessionIsActive = GlobalVariableGet ( "TZ-NewYork" ); double LondonSessionIsActive = GlobalVariableGet ( "TZ-London" ); double SydneySessionIsActive = GlobalVariableGet ( "TZ-Sydney" ); double TokyoSessionIsActive = GlobalVariableGet ( "TZ-Tokyo" ); 交易時段顯示 UTC 時間,其操作範圍在括號中。 HOME 時間指示器顯示本地機
FREE
RedeeCash RSI
Patrick Odonnell Ingle
Version History Date Version Changes 07/09/2022 1.10 Initial released Description The RedeeCash RSI is your typical RSI indicator with the three latest RSI calculations exposed as global variables for easier integration with scripts and expert advisors. Code Sample To invoke this indicator from an EA or script, call the iCustom metatrader function, iCustom ( Symbol (), PERIOD_CURRENT , "Market/RedeeCash RSI" , 14 , 1 , 0 ); string RSIVarName = StringConcatenate ( Symbol (), "_rsi" ); string RSIP
FREE
RedeeCash Interest
Patrick Odonnell Ingle
此智能交易系統 (EA) 就像一個高收益儲蓄賬戶,因為交易將發生在支付(賺取)隔夜利息的貨幣對上。進入和退出頭寸分別基於買入和賣出訂單的最低/最高和最高/最低價格的回溯期。 公共輸入, SINGLE_CURRENCY = true,允許對單一貨幣進行操作,當禁用 (FALSE) 時,將交易在 metatrader 的市場觀察窗口中選擇的貨幣。 CONCURRENT_ORDERS=0,限制多個訂單同時開倉的數量。 PIPS=100,盈利PIPS MAX_PIPS=1000,最高點和最低點與賣價和買價之間的最大 PIPS 距離。 MAX_LOTS=100,您的交易賬戶允許的最大手數。 DODDFRANK_COMPLIANCE=false,如果在美國賬戶上交易,您需要啟用 FIFO 以防止接收 FIFO 違規? LOTS=-1,當 LOTs 參數小於零(或負數)時,使用基於每 100 美元賬戶淨值 0.01 手(非餘額)的內部算法計算手數。如果賬戶貨幣不是美元,則賬戶淨值轉換為美元進行計算(v1.31) MAX_AUTOLOTS_TRADE=2,使用自動手數算法的最大交易手
FREE
RedeeCash Statistics
Patrick Odonnell Ingle
1 (1)
Version History Date Version Changes 07/10/2022 1.00 Initial release Description A collection of modern statistical functions that can be integrated into your own strategy. The included functions are, Mean Median Range Skew Max Min IRange Deviations AbsoluteDeviations MAD StandardDeviation Variance GetCorrelation SamplingDistributionStandardDeviation ZScore CorrelationCoefficient CoVariance Beta Confidence SNormInv PercentOfValue ValueOfPercent MQL Header (mqh) The required header is //+--------
FREE
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS 庫是基於 4xlots.com WEB API 算法的本地化風險管理庫。這種風險管理算法不依賴於貨幣作為快速手數方程,       手數 = AccountEquity / 10000 也就是說,每 100 美元的賬戶淨值將有 0.01 手。 RedeeCash 4XLOTS 庫使用 2011 年首次開發的更詳細和增強的算法作為手動計算。 RedeeCash 4XLOTS 有一個稱為LotsOptimize 的函數。在您的項目中復制並包含以下 RedeeCash_4XLOTS.mqh 文件。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4XLOTS.mqh | //|   Copyright 2011-2022, PressPage Entertainment Inc DBA RedeeCash | //|            
筛选:
无评论
回复评论