Created
January 25, 2023 10:48
-
-
Save tiagosiebler/abd82d483331011576208d2e39019e43 to your computer and use it in GitHub Desktop.
xrpusdt >50% filter bands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// © tsts123 | |
//@version=5 | |
indicator("Tiago / @AlgoTraderL : SR FVG Bands XRPUSDT") | |
l0h = hline(1.18, title="line0 4h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l0l = hline(1.048, title="line0 4h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l0h, l0l, color=color.rgb(255, 156, 114, 75)) | |
if (barstate.islast) | |
label.new(bar_index, 1.18, text="4h 100 % | #389", size=size.normal, style=label.style_label_right, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l1h = hline(1.18, title="line1 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l1l = hline(1.0654, title="line1 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l1h, l1l, color=color.rgb(255, 156, 114, 86.5)) | |
if (barstate.islast) | |
label.new(bar_index, 1.18, text="2h 54 % | #346", size=size.normal, style=label.style_label_left, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l2h = hline(1.1037, title="line2 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l2l = hline(0.973, title="line2 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l2h, l2l, color=color.rgb(255, 156, 114, 77)) | |
if (barstate.islast) | |
label.new(bar_index, 1.1037, text="2h 92 % | #741", size=size.normal, style=label.style_label_right, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l3h = hline(0.9421, title="line3 4h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l3l = hline(0.8346, title="line3 4h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l3h, l3l, color=color.rgb(255, 156, 114, 85.75)) | |
if (barstate.islast) | |
label.new(bar_index, 0.9421, text="4h 57 % | #306", size=size.normal, style=label.style_label_left, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l4h = hline(0.9421, title="line4 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l4l = hline(0.8346, title="line4 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l4h, l4l, color=color.rgb(255, 156, 114, 82.75)) | |
if (barstate.islast) | |
label.new(bar_index, 0.9421, text="2h 69 % | #608", size=size.normal, style=label.style_label_right, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l5h = hline(0.6216, title="line5 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l5l = hline(0.5663, title="line5 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l5h, l5l, color=color.rgb(255, 156, 114, 78.75)) | |
if (barstate.islast) | |
label.new(bar_index, 0.6216, text="2h 85 % | #640", size=size.normal, style=label.style_label_left, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l6h = hline(0.3383, title="line6 4h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l6l = hline(0.3041, title="line6 4h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l6h, l6l, color=color.rgb(114, 255, 130, 82.25)) | |
if (barstate.islast) | |
label.new(bar_index, 0.3383, text="4h 71 % | #326", size=size.normal, style=label.style_label_right, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l7h = hline(0.3383, title="line7 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l7l = hline(0.3102, title="line7 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l7h, l7l, color=color.rgb(114, 255, 130, 80.75)) | |
if (barstate.islast) | |
label.new(bar_index, 0.3383, text="2h 77 % | #631", size=size.normal, style=label.style_label_left, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l8h = hline(0.2888, title="line8 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l8l = hline(0.2631, title="line8 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l8h, l8l, color=color.rgb(114, 255, 130, 84.5)) | |
if (barstate.islast) | |
label.new(bar_index, 0.2888, text="2h 62 % | #478", size=size.normal, style=label.style_label_right, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l9h = hline(0.2552, title="line9 4h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l9l = hline(0.2368, title="line9 4h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l9h, l9l, color=color.rgb(114, 255, 130, 78.5)) | |
if (barstate.islast) | |
label.new(bar_index, 0.2552, text="4h 86 % | #382", size=size.normal, style=label.style_label_left, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
l10h = hline(0.2457, title="line10 2h s.l high", color=color.gray, linestyle=hline.style_solid) | |
l10l = hline(0.2213, title="line10 2h s.l low", color=color.gray, linestyle=hline.style_solid) | |
fill(l10h, l10l, color=color.rgb(114, 255, 130, 75)) | |
if (barstate.islast) | |
label.new(bar_index, 0.2457, text="2h 100 % | #793", size=size.normal, style=label.style_label_right, color = color.rgb(0, 0, 0, 100), textcolor = color.white) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment