Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
2K views
3 pages
EasyAlgo V20
Uploaded by
h76bfj6yrq
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download
Save
Save EasyAlgo_V20 For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
2K views
3 pages
EasyAlgo V20
Uploaded by
h76bfj6yrq
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save EasyAlgo_V20 For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save EasyAlgo_V20 For Later
You are on page 1
/ 3
Search
Fullscreen
//@version=5
indicator("EasyAlgo 2.0", overlay=true, precision=0, explicit_plot_zorder=true,
max_labels_count=500)
//---------------- EasyAlgo 2.0 | https://www.easyalgo.io --------------------//
// Get user input
emaCloud = input.bool(true, "EMA Cloud?")
volCloud = input.bool(false, "Volatility Cloud?")
volBands = input.bool(false, "Volatility Bands?")
volSen = input.float(1.5, "Volatility Sensitivity (1-5 (Half Allowed))", 0.5,
5, 0.5)
signals = input.bool(true, "Buy/Sell Signals?")
levels = input.bool(false, "TP/SL Levels?")
suppRes = input.bool(false, "Support/Resistance?")
atrLen = input.int(14, "ATR Length", 1)
atrRisk = input.int(2, "ATR/ Risk", 1)
candlesT = input.bool(true, "Trending Candles")
volBandsSen = input.int(5, "Vol Bands Sensitivity (Default: 5.0)", 1)
useEma = input.bool(true, "Use Exponential MA?")
barsLR = input.int(35, "S/R Looking Period", 1)
// Get Components
ema1 = ta.ema(ohlc4, int(5*volSen*2))
ema2 = ta.ema(ohlc4, int(9*volSen*2))
ema3 = ta.ema(ohlc4, int(13*volSen*2))
ema4 = ta.ema(ohlc4, int(34*volSen*2))
ema5 = ta.ema(ohlc4, int(50*volSen*2))
f_kc(src, len, mult) =>
float basis = useEma ? ta.ema(src, len) : ta.sma(src, len)
float span = useEma ? ta.ema(ta.tr, len) : ta.sma(ta.tr, len)
[basis + span * mult, basis - span * mult]
[upperKC1, lowerKC1] = f_kc(close, 35, 0.5236 * volBandsSen)
[upperKC2, lowerKC2] = f_kc(close, 35, 0.6854 * volBandsSen)
[upperKC3, lowerKC3] = f_kc(close, 35, 0.8472 * volBandsSen)
bull = ema3 >= ema3[1] and ema1 >= ema2 and ema1[1] < ema2[1]
bear = ema3 <= ema3[1] and ema1 <= ema2 and ema1[1] > ema2[1]
trigger = bull ? 1 : 0
atrBand = ta.atr(atrLen) * atrRisk
atrStop = trigger == 1 ? low - atrBand : high + atrBand
barsL = barsLR
barsR = barsLR
pivotHigh = fixnan(ta.pivothigh(barsL, barsR)[1])
pivotLow = fixnan(ta.pivotlow(barsL, barsR)[1])
// Colors
green = #00CC00 , green5 = volCloud ? color.new(#00CC00, 95) :
na, green12_5 = volCloud ? color.new(#00CC00, 87.5) : na, green20 = emaCloud ?
color.new(#00CC00, 80) : na
red = #CC0000 , red5 = volCloud ? color.new(#CC0000, 95) :
na, red12_5 = volCloud ? color.new(#CC0000, 87.5) : na, red20 = emaCloud?
color.new(#CC0000, 80) : na
orange = #FF9800 , orange50 = emaCloud ? color.new(orange, 50) :
na
gray = volBands ? #787B86 : na, gray40 = volBands ? color.new(gray, 60) : na,
gray5 = volBands ? color.new(gray, 95) : na, gray20 = volBands ?
color.new(gray, 80) : na
// Plots
p1 = plot(ema1, "", orange50, editable=false)
p2 = plot(ema2, "", orange50, editable=false)
p3 = plot(ema3, "", orange50, editable=false)
p4 = plot(ema4, "", na, editable=false)
p5 = plot(ema5, "", na, editable=false)
fill(p4, p5, ema4 >= ema5 ? green5 : red5)
fill(p3, p4, ema3 >= ema4 ? green12_5 : red12_5)
fill(p2, p3, ema3 >= ema3[1] ? green20 : red20)
fill(p1, p2, ema1 >= ema3 ? green20 : red20)
barcolor(candlesT ? (ema3 >= ema3[1] ? green : red) : na)
b1 = plot(upperKC1, "", gray40, editable=false)
b2 = plot(upperKC2, "", gray40, editable=false)
b3 = plot(upperKC3, "", gray40, editable=false)
b4 = plot(lowerKC1, "", gray40, editable=false)
b5 = plot(lowerKC2, "", gray40, editable=false)
b6 = plot(lowerKC3, "", gray40, editable=false)
fill(b1, b2, gray5)
fill(b2, b3, gray20)
fill(b4, b5, gray5)
fill(b5, b6, gray20)
plot(pivotHigh, "Resistance", not suppRes or ta.change(pivotHigh) ? na : red, 3,
offset=-(barsR + 1), editable=false)
plot(pivotLow, "Support", not suppRes or ta.change(pivotLow) ? na : green, 3,
offset=-(barsR + 1), editable=false)
y1 = low - (ta.atr(30) * 1.6)
y2 = high + (ta.atr(30) * 1.6)
buy = signals and bull ? label.new(bar_index, y1, ema4 >= ema5 ? "FIRM BUY" :
"BUY", xloc.bar_index, yloc.price, #00CC00, label.style_label_up, #141923,
size.normal) : na
sell = signals and bear ? label.new(bar_index, y2, ema4 <= ema5 ? "FIRM SELL" :
"SELL", xloc.bar_index, yloc.price, #CC0000, label.style_label_down, color.white,
size.normal) : na
lastTrade(src) => ta.valuewhen((ema3 >= ema3[1] and ema1 >= ema2 and ema1[1] <
ema2[1]) or (ema3 <= ema3[1] and ema1 <= ema2 and ema1[1] > ema2[1]), src, 0)
entry = levels ? label.new(time, close, "ENTRY " + str.tostring(lastTrade(close),
"#.##"), xloc.bar_time, yloc.price, color.gray, label.style_label_left,
color.white, size.normal) : na
label.set_y(entry, lastTrade(close))
label.delete(entry[1])
stop_y = lastTrade(atrStop)
stop = levels ? label.new(time, close, "SL " + str.tostring(stop_y, "#.##"),
xloc.bar_time, yloc.price, #CC0000, label.style_label_left, color.white,
size.normal) : na
label.set_y(stop, stop_y)
label.delete(stop[1])
tp1_y = (lastTrade(close)-lastTrade(atrStop))*1 + lastTrade(close)
tp1 = levels ? label.new(time, close, "1:1 TP " + str.tostring(tp1_y, "#.##"),
xloc.bar_time, yloc.price, #00CC00, label.style_label_left, color.white,
size.normal) : na
label.set_y(tp1, tp1_y)
label.delete(tp1[1])
tp2_y = (lastTrade(close)-lastTrade(atrStop))*2 + lastTrade(close)
tp2 = levels ? label.new(time, close, "2:1 TP " + str.tostring(tp2_y, "#.##"),
xloc.bar_time, yloc.price, #00CC00, label.style_label_left, color.white,
size.normal) : na
label.set_y(tp2, tp2_y)
label.delete(tp2[1])
tp3_y = (lastTrade(close)-lastTrade(atrStop))*3 + lastTrade(close)
tp3 = levels ? label.new(time, close, "3:1 TP " + str.tostring(tp3_y, "#.##"),
xloc.bar_time, yloc.price, #00CC00, label.style_label_left, color.white,
size.normal) : na
label.set_y(tp3, tp3_y)
label.delete(tp3[1])
// Alerts
alertcondition(bull, "Buy", "EasyAlgo 2.0\nBuy {{ticker}} @ {{close}}")
alertcondition(bull and ema4 >= ema5, "Firm Buy", "EasyAlgo 2.0\nFirm Buy
{{ticker}} @ {{close}}")
alertcondition(bear and ema4 <= ema5, "Firm Sell", "EasyAlgo 2.0\nFirm Sell
{{ticker}} @ {{close}}")
alertcondition(bear, "Sell", "EasyAlgo 2.0\nSell {{ticker}} @ {{close}}")
You might also like
Alpha V2.0
PDF
100% (1)
Alpha V2.0
2 pages
GodSlayer Price Action Toolkit v1.6.3
PDF
100% (1)
GodSlayer Price Action Toolkit v1.6.3
65 pages
ELITE ALGO TP SMART MONEY - Fixed
PDF
0% (1)
ELITE ALGO TP SMART MONEY - Fixed
40 pages
Elite Algo - New Updated Tradingview Indicator Code
PDF
20% (5)
Elite Algo - New Updated Tradingview Indicator Code
1 page
The Real-Gains Algo 2.5 Final
PDF
No ratings yet
The Real-Gains Algo 2.5 Final
18 pages
LUXALGO - Signals & Overlays
PDF
No ratings yet
LUXALGO - Signals & Overlays
35 pages
Simplealgo v3
PDF
100% (3)
Simplealgo v3
6 pages
Intro To Plastic Injection Molding Ebook
PDF
78% (9)
Intro To Plastic Injection Molding Ebook
43 pages
Lux Algo Trend
PDF
100% (1)
Lux Algo Trend
21 pages
Signals & Overlays
PDF
No ratings yet
Signals & Overlays
30 pages
Infinity Algo - Remake
PDF
No ratings yet
Infinity Algo - Remake
5 pages
Premiumluxstrategy
PDF
No ratings yet
Premiumluxstrategy
15 pages
RoyalPrince TradingView Indicator
PDF
0% (1)
RoyalPrince TradingView Indicator
7 pages
AlgoX Non-Repainting - Bar Mag False
PDF
No ratings yet
AlgoX Non-Repainting - Bar Mag False
13 pages
Elite Algo - AlgoPoint Remake Series
PDF
No ratings yet
Elite Algo - AlgoPoint Remake Series
30 pages
Saiyan Occ Strategy r5.41
PDF
50% (2)
Saiyan Occ Strategy r5.41
15 pages
Quant Algo
PDF
No ratings yet
Quant Algo
15 pages
v1.5.3 Price Action ICT Toolkit-2
PDF
No ratings yet
v1.5.3 Price Action ICT Toolkit-2
65 pages
AlgoX 11
PDF
No ratings yet
AlgoX 11
25 pages
Algo Huge Profit 1
PDF
No ratings yet
Algo Huge Profit 1
15 pages
SAB PRO Pivot Master@free - FX - Pro
PDF
No ratings yet
SAB PRO Pivot Master@free - FX - Pro
24 pages
UT Bot + Nadaraya Watson Envelope With Hull Suite TSL + RSI Reversal
PDF
50% (2)
UT Bot + Nadaraya Watson Envelope With Hull Suite TSL + RSI Reversal
4 pages
AlgoPoint PA Toolkit V1
PDF
0% (1)
AlgoPoint PA Toolkit V1
78 pages
AI Gold N
PDF
No ratings yet
AI Gold N
10 pages
Helium V 6.4.2 US30
PDF
No ratings yet
Helium V 6.4.2 US30
5 pages
STO Process - Pricing Procedure
PDF
No ratings yet
STO Process - Pricing Procedure
30 pages
FREE ALGOs (EasyAlgo 2.0
PDF
25% (4)
FREE ALGOs (EasyAlgo 2.0
3 pages
Oscillator Matrix With Alerts
PDF
No ratings yet
Oscillator Matrix With Alerts
14 pages
Crypto Wolf Occ
PDF
0% (1)
Crypto Wolf Occ
47 pages
FxAlgo (AlgoPoint)
PDF
No ratings yet
FxAlgo (AlgoPoint)
26 pages
Algo Trend
PDF
No ratings yet
Algo Trend
26 pages
Luxalgo
PDF
No ratings yet
Luxalgo
4 pages
AlgoPoint Signals
PDF
No ratings yet
AlgoPoint Signals
13 pages
Ud 3 Dy USp 1
PDF
No ratings yet
Ud 3 Dy USp 1
25 pages
RMI Trend Sniper + AAFLI Merged by Lupen
PDF
0% (1)
RMI Trend Sniper + AAFLI Merged by Lupen
11 pages
Algoman NEXT
PDF
100% (1)
Algoman NEXT
16 pages
Gaussian Signals Candle AlgoPoint
PDF
No ratings yet
Gaussian Signals Candle AlgoPoint
4 pages
AlgoPoint Channels
PDF
No ratings yet
AlgoPoint Channels
3 pages
Ut Bot Strategy Tp1 Tp2
PDF
100% (1)
Ut Bot Strategy Tp1 Tp2
5 pages
GG SHOT Old
PDF
0% (1)
GG SHOT Old
14 pages
@version 5
PDF
No ratings yet
@version 5
5 pages
EzAlgo V12
PDF
50% (2)
EzAlgo V12
13 pages
Premium 2
PDF
No ratings yet
Premium 2
14 pages
FREE ALGOs EasyAlgo 2 0 1
PDF
No ratings yet
FREE ALGOs EasyAlgo 2 0 1
6 pages
FREE ALGOs (EasyAlgo 2.0)
PDF
100% (1)
FREE ALGOs (EasyAlgo 2.0)
3 pages
EzAlgo S&R
PDF
No ratings yet
EzAlgo S&R
4 pages
City Alpha Sniper
PDF
0% (1)
City Alpha Sniper
7 pages
Ultraalgo
PDF
No ratings yet
Ultraalgo
5 pages
Datasheet Motor PM55L 048 HPG9
PDF
100% (7)
Datasheet Motor PM55L 048 HPG9
1 page
Point and Shoot Indicator
PDF
No ratings yet
Point and Shoot Indicator
8 pages
VP (Maps) + OB + S&R + GGSHOT + HH
PDF
0% (3)
VP (Maps) + OB + S&R + GGSHOT + HH
60 pages
EzAlgo SR
PDF
100% (2)
EzAlgo SR
4 pages
100 Marks Project.
PDF
91% (23)
100 Marks Project.
62 pages
FREE ALGOs EzOscillatorv.4
PDF
No ratings yet
FREE ALGOs EzOscillatorv.4
6 pages
BOTV2
PDF
0% (1)
BOTV2
7 pages
AlgoPoint Reversal Finder
PDF
No ratings yet
AlgoPoint Reversal Finder
34 pages
Combine
PDF
No ratings yet
Combine
26 pages
EasyAlgo v2-2
PDF
No ratings yet
EasyAlgo v2-2
3 pages
Algo Lux
PDF
No ratings yet
Algo Lux
3 pages
EzAlgo Oscillator
PDF
No ratings yet
EzAlgo Oscillator
1 page
TradeVortex Indikatoru
PDF
No ratings yet
TradeVortex Indikatoru
3 pages
AlgoRyze Pro-Sol
PDF
No ratings yet
AlgoRyze Pro-Sol
23 pages
FREE ALGOs EasyAlgo 2 0
PDF
No ratings yet
FREE ALGOs EasyAlgo 2 0
6 pages
(Imba) Algo
PDF
No ratings yet
(Imba) Algo
16 pages
Time - Speed - Distance: Grade 5 - Lesson 11 (5ta1)
PDF
No ratings yet
Time - Speed - Distance: Grade 5 - Lesson 11 (5ta1)
5 pages
Tata Nano Car
PDF
No ratings yet
Tata Nano Car
34 pages
1830 Census Form
PDF
No ratings yet
1830 Census Form
1 page
Using Google
PDF
No ratings yet
Using Google
3 pages
Administration of Estates
PDF
No ratings yet
Administration of Estates
52 pages
Petition For Disqualification Bartolome Bermudez
PDF
No ratings yet
Petition For Disqualification Bartolome Bermudez
9 pages
Spatial Information Technology For Sustainable Development Goals
PDF
No ratings yet
Spatial Information Technology For Sustainable Development Goals
254 pages
Import / Export Permit Application Form: or FAX To: 9637 8475
PDF
No ratings yet
Import / Export Permit Application Form: or FAX To: 9637 8475
2 pages
Mod 7
PDF
No ratings yet
Mod 7
70 pages
Investing For Inclusion Exploring Lgbti Lens
PDF
No ratings yet
Investing For Inclusion Exploring Lgbti Lens
48 pages
Installation Instruction: Single Pole Insulated Conductor Rail Programme 812
PDF
No ratings yet
Installation Instruction: Single Pole Insulated Conductor Rail Programme 812
9 pages
Consumer Input
PDF
No ratings yet
Consumer Input
23 pages
Perceived Guest House Brand Value The Influence of Web Interactivity On Brand Image and Brand Awareness
PDF
No ratings yet
Perceived Guest House Brand Value The Influence of Web Interactivity On Brand Image and Brand Awareness
29 pages
Business Communication Report
PDF
No ratings yet
Business Communication Report
15 pages
E+H-PROMAG W 400 - Tender Text - TTW400EN
PDF
No ratings yet
E+H-PROMAG W 400 - Tender Text - TTW400EN
2 pages
Fashion Polka Dot Background Business PPT Templates
PDF
No ratings yet
Fashion Polka Dot Background Business PPT Templates
25 pages
Prlog
PDF
No ratings yet
Prlog
10 pages
CPIM part 2 practice exam 2单词卡 - Quizlet
PDF
No ratings yet
CPIM part 2 practice exam 2单词卡 - Quizlet
15 pages
UFBU Meeting Notice03072025120953
PDF
No ratings yet
UFBU Meeting Notice03072025120953
2 pages
Appendix B For 29
PDF
No ratings yet
Appendix B For 29
1 page
Industrial Shakers
PDF
No ratings yet
Industrial Shakers
4 pages
Sub: Clean Overdraft/ DPN Facility To Employees - Modification of Guidelines
PDF
No ratings yet
Sub: Clean Overdraft/ DPN Facility To Employees - Modification of Guidelines
3 pages
From: Sent: To: Subject
PDF
No ratings yet
From: Sent: To: Subject
2 pages
Los Campeones
PDF
No ratings yet
Los Campeones
1 page
Chapter 2 - Selected Solutions
PDF
No ratings yet
Chapter 2 - Selected Solutions
4 pages
Mclaren Watch - Google Search
PDF
No ratings yet
Mclaren Watch - Google Search
1 page