最后由 zdj861104 于 2022-4-25 21:58 编辑
RSIOMA 指标 — 该指标使用两条移动平均线,计算它们的相对强弱指标,然后也添加了此相对强弱指标的移动平均线。这两条线现在可以准确的发送趋势变更的信号。它们显示在一个单独的窗口,可从0到100之间进行更改。
参数设置:
- RSIOMA Period (默认 = 14) — 相对强弱指标和用于计算相对强弱指标的移动平均线的时段。增大会增加平滑性,缩小会增加信号的发送频率。
- RSIOMA Mode (默认 = MODE_EMA) — 用于相对强弱指标的移动平均线的模式。
- RSIOMA Price (默认 = PRICE_CLOSE) — 用于计算用于相对强弱指标的移动平均线的价格水平。
- MA of RSIOMA Period (默认 = 21) — 相对强弱指标的移动平均线的时段。
- MA of RSIOMA Mode (默认 = MODE_EMA) — 相对强弱指标的移动平均线的模式。
- BuyTrigger (默认 = 20) — a trigger level for the oversold situation.
- SellTrigger (默认 = 80) — a trigger level for the overbought situation.
- BuyTriggerColor (默认 = clrMagenta) — an oversold line color.
- SellTriggerColor (默认 = clrDodgerBlue) — an overbought line color.
- MainTrendLong (默认 = 50) — if RSIOMA is above this level, then the trend is considered to be bullish.
- MainTrendShort (默认 = 50) — if RSIOMA is below this level, then the trend is considered to be bearish.
- MainTrendLongColor (默认 = clrRed) — a bullish trend separator color.
- MainTrendShortColor (默认 = clrGreen) — a bearish trend separator color.
- MainAlerts (默认 = false) — if true, an alert will be issued when RSIOMA crosses the overbought level from above or the oversold level from below.
- AuxiliaryAlerts (默认 = false) — if true, an alert will be issued when the histogram signals an imminent trend reversal.
- EnableNativeAlerts (默认 = false) — if true, a native MetaTrader popup alert will be used for any of the above two conditions.
- EnableEmailAlerts (默认 = false) — if true, an email message will be sent on an alert condition. Email should be properly configured in MetaTrader via Tools->Options->Email.
- EnablePushAlerts (默认 = false) — if true, an email message will be sent on an alert condition. Notifications should be properly configured in MetaTrader via Tools->Options->Notifications.
- TriggerCandle (默认 = Previous) — the candle to issue alerts on: Previous — the most recently closed candle or Current — the yet unfinished candle.
蓝色的粗体线是移动平均线(MA)的相对强弱指标(RSI),浅紫色线是RSI的MA。当RSI在MA的上方,且相RSI在50水平的上方,则发送看涨趋势的信号。当RSI在MA的下方,且RSI在50以下,则发送看跌趋势的信号。当RSI自下方突破20的水平,可以做多;当RSI自下方突破80的水平,可以做空;但那些是较弱的信号。绿线发送做多信号,红线发送做空信号,洋红色意味着超买,蓝线意味着超卖。
|