hecate

hecate chop filter

hecate Cập nhật   
Chop Filter to remove lateral trade under a threshold. Change the FilterOut parameter to filter all you want. Example of a model using it with a filtering of 0.003 (use to filter out to the level you prefer):
Bình luận:
Updated script to lag less and be more clear
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
study(title="hecate chop filter", shorttitle="h chop filter", overlay=true)
//Example filtering out with a threshold of 0.003 -> http://i.imgur.com/kP7OI1o.png
//hecate tx aswell to zmm20
len = input(10, title="Period", minval=2)
FilterOut=input(0.005, title="FilterOut", minval=0.0001)
HowBigBubbles0to1=input(0.0001, title="HowBigBubbles0to1", minval=0.0001)

lr=linreg(linreg(close,15,0),15,0)
maxlr=highest(lr,50)
minlr=lowest(lr,50)


zld_h=linreg(high,len,0)
zld_l=linreg(low,len,0)
diff(a,b)=>(a-b)/((a+b)/2)
chop=diff(zld_h,zld_l)
t1=chop<FilterOut?maxlr*(1+HowBigBubbles0to1):close
b1=chop<FilterOut?minlr*(1-HowBigBubbles0to1):close

t2=chop>FilterOut?maxlr*(1+HowBigBubbles0to1):close
b2=chop>FilterOut?minlr*(1-HowBigBubbles0to1):close



p1=plot(t1,color=chop<FilterOut?red:na,style=line,linewidth=1)
p1b=plot(b1,color=chop<FilterOut?red:na,style=line,linewidth=1)

p2=plot(t2,color=chop>FilterOut?green:na,style=line,linewidth=1)
p2b=plot(b2,color=chop>FilterOut?green:na,style=line,linewidth=1)

fill(p1,p1b,color=red)
fill(p2,p2b,color=green)