You are on page 1of 5

?

bearColor :

label. R1 or Below S1

 Rate
 https://www.tradingview.com/script/PvzZIeoo-RESEARCH-Rate-of-
Change/


 Mean Absolute Deviation 
 https://www.tradingview.com/script/qXc06HaE-RESEARCH-Mean-
Absolute-Deviation/


 Custom Median vs Built-in Median 
 https://www.tradingview.com/script/yjQx0BVg-RESEARCH-Custom-
Median-vs-Built-in-Median/


 Quasi White Noise 
 https://www.tradingview.com/script/UWKXaj5O-RESEARCH-Quasi-
White-Noise/

 Rate of Change 
 https://www.tradingview.com/script/PvzZIeoo-RESEARCH-Rate-of-
Change/


 Mean Absolute Deviation 
 https://www.tradingview.com/script/qXc06HaE-RESEARCH-Mean-
Absolute-Deviation/


 Custom Median vs Built-in Median 
 https://www.tradingview.com/script/yjQx0BVg-RESEARCH-Custom-
Median-vs-Built-in-Median/


 Quasi White Noise 
 https://www.tradingview.com/script/UWKXaj5O-RESEARCH-Quasi-
White-Noise/


 Rate of Change 
 https://www.tradingview.com/script/PvzZIeoo-RESEARCH-Rate-of-
Change/


 Mean Absolute Deviation 
 https://www.tradingview.com/script/qXc06HaE-RESEARCH-Mean-
Absolute-Deviation/

 .com/script/yjQx0BVg-RESEARCH-Custom-Median-vs-Built-in-Median/


 Quasi White Noise 
 https://www.tradingview.com/script/UWKXaj5O-RESEARCH-Quasi-
White-Noise/

Mean Absolute Deviation 


https://www.tradingview.com/script/qXc06HaE-RESEARCH-Mean-Absolute-
Deviation/

Custom Median vs Built-in Median 


/
Quasi White Noise 
https://www.tradingview.com/script/UWKXaj5O-RESEARCH-Quasi-White-
Noise/

SMA Crossover Prediction 


https://www.tradingview.com/script/aERsVfMF-RESEARCH-SMA-Crossover-
Prediction/
Rate of Change 
Mean Absolute Deviation 

Custom Median vs Built-in Median 


https://www.tradingview.com/script/yjQx0BVg-RESEARCH-Custom-
Median-vs-Built-in-Median/

Quasi White Noise 


https://www.tradingview.com/script/UWKXaj5O-RESEARCH-Quasi-
White-Noise/

Percentrank Bug 
https://www.tradingview.com/script/GibJ8AAn-RESEARCH-Percentrank-
Bug/

 OPEN Between CPR- R1 OR CPR-S1


 If opening It Will Be a “RANGE BOUND DAY”. Until R1/S1 or Previous
Day High/Low Breaks
RSI_VWAP_overSold = input(20, "RSI-VWAP OVERSOLD", type=input.float)

RSI_VWAP_overBought = input(80, "RSI-VWAP OVERBOUGHT", type=input.float)


// Plotting, overlay=false

r, DIVS code

) RSI)) // Finds bar with highest

max_r

pivothRSI = bool(na)

pivotlRSI = bool(na)

divbearRSI = bool(na)

divbullRSI = bool(na)

// If bar with lowest / highest is current bar, use it's value

maxRSI := hbRSI == 0 ? close : na(maxRSI[1]) ? close : maxRSI[1]

max_rsiRSI := hbRSI == 0 ? rsiRSI : na(max_rsiRSI[1]) ? rsiRSI : max_rsiRSI[1]

minRSI := lbRSI == 0 ? close : na(minRSI[1]) ? close : minRSI[1]

min_rsiRSI := lbRSI == 0 ? rsiRSI : na(min_rsiRSI[1]) ? rsiRSI : min_rsiRSI[1]

// Compare high of current bar being examined with previous bar's high

// If curr bar high is higher than the max bar high in the lookback window range

if close > maxRSI // we have a new high

maxRSI := close // change variable "max" to use current bar's high value

if rsiRSI > max_rsiRSI // we have a new high

max_rsiRSI := rsiRSI // change variable "max_rsi" to use current bar's RSI value

if close < minRSI // we have a new low

minRSI := close // change variable "min" to use current bar's low value

if rsiRSI < min_rsiRSI // we have a new low

min_rsiRSI := rsiRSI // change variable "min_rsi" to use current bar's RSI value

// Finds pivot point with at least 2 right candles with lower value

>= rsiRSI[1])

divbullRSI := true
// Alerts

You might also like