mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 18:48:05 +00:00
- Updated BBWN, BBWP, CCV, CV, CVI, EWMA, GKV, HLV, HV, Jvolty, JVOLTYN, MASSI, NATR, RSV, RV, RVI, TR, UI, VOV, VR, YZV indicators with documentation links. - Added documentation links for Aberration, Acceleration Bands, Andrews' Pitchfork, Adaptive Price Zone, ATR Bands, Bollinger Bands, Center of Gravity, Donchian Channels, Decay Min-Max Channel, Detrended Synthetic Price, EACP, EBSW, HOMOD, Jurik Volatility Bands, Keltner Channel, MA Envelope, Min-Max Channel, Price Channel, Regression Channels, Standard Deviation Channel, Stoller Average Range Channel, Super Trend Bands, Ultimate Bands, Ultimate Channel, VWAP Bands, and VWAP with Standard Deviation Bands.
31 lines
916 B
Plaintext
31 lines
916 B
Plaintext
// The MIT License (MIT)
|
|
// © mihakralj
|
|
//@version=6
|
|
indicator("Rate of Change Percentage (ROCP)", "ROCP", overlay=false)
|
|
|
|
//@function Calculates percentage Rate of Change between current price and N periods ago
|
|
//@param source Source price series
|
|
//@param length Lookback period
|
|
//@returns Percentage price change value
|
|
rocp(series float source, simple int length)=>
|
|
if length<=0
|
|
runtime.error("Length must be greater than 0")
|
|
var int count = 0
|
|
float change = na
|
|
if not na(source[count]) and source[count] != 0
|
|
change := 100 * (source - source[count]) / source[count]
|
|
count := math.min(count + 1, length)
|
|
change
|
|
|
|
// ---------- Main loop ----------
|
|
|
|
// Inputs
|
|
i_source = input.source(close, "Source")
|
|
i_length = input.int(9, "Length", minval=1)
|
|
|
|
// Calculate ROCP
|
|
float rocp_val = rocp(i_source, i_length)
|
|
|
|
// Plot
|
|
plot(rocp_val, "ROCP", color=color.yellow, linewidth=2)
|