📝 产品详情
Sentiment Ratio
| 作者 | Robert Walker |
| 版本 | v1.1 |
| 激活数 | 0 |
The Sentiment Ratio indicator gauges current Market Sentiment between -100% and 100%, where lower than -40% is considered Bearish and higher than 40% is Bullish. The channel between the two is considered Neutral.
The indicator has been a very useful filter tool for signals within a trading system.
Example call function:
int SentimentIndicator(double triggerLevel)//Return sentiment if trigger level is activated
{
double sentimentRatio=iCustom(NULL,0,"Sentiment Ratio",0,0,0);
if(sentimentRatio>=triggerLevel) return(OP_BUY);
else if(sentimentRatio<=-triggerLevel) return(OP_SELL);
return(-1);//Default: No indication
}
Basis of calculation:
The calculation in the indicator applies weighted averages from RSI, Stochastic Oscillator, and William’s Percent Range.
安全须知
本产品仅通过 MQL5.com 官方渠道获取。其他渠道版本可能缺少完整功能和技术支持。
EA 配置
| 交易品种 | XAUUSD |
| 时间框架 | H1 (推荐) |
| 推荐经纪商 | IC Markets, IC Trading |
| 最低存款 | $300 / 0.01手 |
📸 截图预览