Rajandran R Creator of OpenAlgo - OpenSource Algo Trading framework for Indian Traders. Building GenAI Applications. 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

1 min 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. Building GenAI Applications. 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

First Order and Second Order Option Greeks in Tradingview…

The provided Tradingview Pine Script™ code is an Options Greeks Calculator tailored for use on the TradingView platform. It provides real-time analysis and visualization...
Rajandran R
12 min read

Tradingview Pinescript – Real-Time Option Greeks with Implied Volatility…

Converting an existing Option Greeks model from Amibroker AFL to TradingView Pinescript was an ambitious project, one that involved dealing with complex calculations like...
Rajandran R
9 min read

Simple Option Straddle Dashboard – Tradingview Pinescript v5

In this blog post, we’ll walk through creating a Simple Option Straddle Dashboard using TradingView’s Pine Script v5. This dashboard will dynamically calculate the...
Rajandran R
3 min read

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