如果免费资源下载的文件为TXT文档 请联系站长更新!站长微信:Lv596999 Telegram:@eapoj 站长因大部分时间研究EA,做风控,没太多时间更新下载地址,请谅解! |
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.
![]()
![]()