JayRogers

High Low Envelope Sigma

Description:

High and Low Envelope channel with median line and 'sigma' offsets to try and encapsulate price flow and quickly locate likely areas of support and resistance on the fly.
开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?
//@version=2

study(title = "High Low Envelope Sigma", shorttitle = "HLE Sigma", overlay = true)

// Revision:        1
// Author:          @JayRogers
//
// *** USE AT YOUR OWN RISK ***
// 
// Description:
// - High and Low Envelope channel with median line and 'sigma' offsets to try and encapsulate
//   price flow and quickly locate likely areas of support and resistance within smaller trend.

//=== INPUTS ===
length  = input(defval = 25, title = "Envelope Length", minval = 1, maxval = 1000)
sigma   = input(defval = 1.0, title = "Sigma Multiply", minval = 0.01, step = 0.1)
//=== /INPUTS ===

//=== SERIES and VAR ===
upperEnvelope   = highest(high, length)
lowerEnvelope   = lowest(low, length)
envelopeMedian  = (upperEnvelope + lowerEnvelope) / 2
envelopeSigma   = ((upperEnvelope - lowerEnvelope) / 8) * sigma
//=== /SERIES and VAR ===

//=== PLOTTING ===
plot(upperEnvelope, title = "Upper Envelope", color = #66FFFF, linewidth = 2)
plot(envelopeMedian + envelopeSigma, title = "Upper Sigma", color = #66FFFF, linewidth = 1, style = line)
plot(envelopeMedian, title = "Median", color = silver, linewidth = 1, style = circles)
plot(envelopeMedian - envelopeSigma, title = "Lower Sigma", color = #FF1133, linewidth = 1, style = line)
plot(lowerEnvelope, title = "Lower Envelope", color = #FF1133, linewidth = 2)
//=== /PLOTTING ===