OPEN-SOURCE SCRIPT
已更新 Sigmoidal Candle Count Risk (SCCR)

Sigmoidal Candle Count Risk (SCCR)
This indicator is designed to identify potential reversal levels based on the number of consecutive candles moving in the same direction. Its core premise is based on the sequence of consecutive candles moving in uniform. The assumption is that an increasing sequence of consecutive candles heightens the likelihood of a reversal.
Functionality:
Pine Script®
Pine Script®
This indicator is designed to identify potential reversal levels based on the number of consecutive candles moving in the same direction. Its core premise is based on the sequence of consecutive candles moving in uniform. The assumption is that an increasing sequence of consecutive candles heightens the likelihood of a reversal.
Functionality:
- It uses the sigmoid function to translate the difference between bullish (upward) and bearish (downward) candle counts into a risk value ranging from 0 (low risk, bullish sentiment) to 1 (high risk, bearish sentiment)
1/(1+math.exp(-((usum+dsum)/2)))
- Additionally, it uses a symmetrically weighted moving average for smoothing.
ta.swma()
發行說明
Made a mistake in the previous description. Here is the corrected sigmoid function:1/(1+math.exp(-(usum-dsum)))
Also updated the RiskMeasure() parameters from close>open,open>close to close>close[1],close[1]>close to better reflect increases/decreases in price.
發行說明
Added a timeframe option. Larger timeframe readings tend to provide more probable setups.發行說明
Changed scale from 0-1 to 0-100 and added middle line.發行說明
General script clean up, visual updates, and added description in the script.開源腳本
本著TradingView的真正精神,此腳本的創建者將其開源,以便交易者可以查看和驗證其功能。向作者致敬!雖然您可以免費使用它,但請記住,重新發佈程式碼必須遵守我們的網站規則。
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。
開源腳本
本著TradingView的真正精神,此腳本的創建者將其開源,以便交易者可以查看和驗證其功能。向作者致敬!雖然您可以免費使用它,但請記住,重新發佈程式碼必須遵守我們的網站規則。
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。