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)
View the Pinescript Code in Tradingview
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

Introducing OpenAlgo V1.0: The Ultimate Open-Source Algorithmic Trading Framework…

OpenAlgo V1.0 is an open-source algorithmic trading platform to automate your trading strategies using Amibroker, Tradingview, Metatrader, Python etc. Designed with the modern trader...
Rajandran R
2 min read

Dive Into the TradingView Paper Trading Competition: A Chance…

Welcome to an exhilarating opportunity presented by TradingView – a paper trading competition that not only tests your trading acumen but also offers a...
Rajandran R
1 min read

Introducing PineGPT – To Build Better Tradingview Pinescript Codes

PineGPT is a customGPT for ChatGPT4 users designed to provide expert guidance on creating and understanding TradingView Pine Script indicators and trading strategies. PineGPT...
Rajandran R
1 min read

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