Rajandran R Creator of OpenAlgo - OpenSource Algo Trading framework for Indian Traders. Telecom Engineer turned Full-time Derivative Trader. Mostly Trading Nifty, Banknifty, High Liquid Stock Derivatives. Trading the Markets Since 2006 onwards. Using Market Profile and Orderflow for more than a decade. Designed and published 100+ open source trading systems on various trading tools. Strongly believe that market understanding and robust trading frameworks are the key to the trading success. Building Algo Platforms, Writing about Markets, Trading System Design, Market Sentiment, Trading Softwares & Trading Nuances since 2007 onwards. Author of Marketcalls.in

Sentimental Smooth RSI – TradingView PineScript

56 sec read

Sentimental RSI helps shorter term discretionary Traders to prepare for their trading decision. It doesn’t gives buy or sell signals but guides you to focus on the right side of the trade most of the time especially when your holding period is for 2-3 days.

sentimental-rsi

Just like any other indicator, it has whipsaws but responsive and smooth compared to the traditional RSI where the noise factor reduces and helps you to focus on mean reversion trades.

The Color Transition from Red to Yellow indicates possible mean reversion from negative to a positive trend

The Color Transition from Green to Blue indicates possible mean reversion from positive to the negative trend

The Color Transition from Yellow to Green indicates possible positive trend continuation.

The Color Transition from Green to Blue indicates possible negative trend continuation.

Indicator suits to understand the underlying sentiment on the higher timeframes like 4h, Daily. Helps you to understand the underlying trend setup during your pre-trade analysis.

Tradingview Pinescript Code for Sentimental RSI

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © marketcalls_in
// Coded By Rajandran R - Founder - Marketcalls / Co-Founder Algomojo

//@version=4
study(title="Sentimental Smooth RSI")
source = hlc3, length = input(7, minval=1)
hullma = wma(2*wma(source, length/2)-wma(source, length), round(sqrt(length)))
hrsi = rsi(hullma,length)
bcolor = iff( hrsi-50 > 0,     iff( hrsi > nz(hrsi[1]), color.lime, color.red), iff( hrsi < nz(hrsi[1]), color.red, color.lime))
plot(hrsi-50, color=bcolor, title="Smoothed RSI", style=plot.style_histogram, linewidth=4)
Rajandran R Creator of OpenAlgo - OpenSource Algo Trading framework for Indian Traders. Telecom Engineer turned Full-time Derivative Trader. Mostly Trading Nifty, Banknifty, High Liquid Stock Derivatives. Trading the Markets Since 2006 onwards. Using Market Profile and Orderflow for more than a decade. Designed and published 100+ open source trading systems on various trading tools. Strongly believe that market understanding and robust trading frameworks are the key to the trading success. Building Algo Platforms, Writing about Markets, Trading System Design, Market Sentiment, Trading Softwares & Trading Nuances since 2007 onwards. Author of Marketcalls.in

How to Send TradingView Alerts to Telegram Without Any…

If you're a trader using TradingView, you know how crucial it is to stay updated with real-time alerts. Telegram, with its instant messaging capabilities,...
Rajandran R
3 min read

6 Indian Brokers You Can Connect with TradingView to…

TradingView is a globally recognized charting and trading platform that empowers traders with its advanced analytical tools and intuitive interface. For Indian traders, TradingView...
Rajandran R
2 min read

Integrating Tradingview Lightweight Charts with Yahoo Finance Data –…

Hey traders! If you’re looking for a way to visualize your stock data dynamically and interactively, you’re in for a treat. Today, we’ll explore...
Rajandran R
2 min read

Get Notifications, Alerts on Market Updates, Trading Tools, Automation & More