NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

//@version=5
indicator('Maestro | Fibo Bollinger Screener', shorttitle='Maestro Fibo Bollinger', overlay=true, format=format.price, precision=2)
gurupSec = input.string(defval='2', options=['1', '2', '3', '4', '5','6','7'], group = "Tarama Seçimi")
per = input.timeframe(defval='240', title='Periyot', group = "Tarama Seçimi")
loc = input.int(defval=15, title='Panel Konum', minval = -100,maxval = 100 , step = 5, group='Tarama Seçimi')

gurupfibo = input.string(defval='Pivot', options=['Pivot', '0.236', '0.382', '0.5', '0.618', '0.764', '-236', '-382', '-5', '-618', '-764'], group = "Fibo Seçim")
length = input.int(200, minval=1)
src = input(hlc3, title='Source')
mult = input.float(3.0, minval=0.001, maxval=50)
basis = ta.vwma(src, length)
dev = mult * ta.stdev(src, length)
upper_1 = basis + 0.236 * dev
upper_2 = basis + 0.382 * dev
upper_3 = basis + 0.5 * dev
upper_4 = basis + 0.618 * dev
upper_5 = basis + 0.764 * dev
upper_6 = basis + 1 * dev
lower_1 = basis - 0.236 * dev
lower_2 = basis - 0.382 * dev
lower_3 = basis - 0.5 * dev
lower_4 = basis - 0.618 * dev
lower_5 = basis - 0.764 * dev
lower_6 = basis - 1 * dev
plot(basis, color=color.new(color.fuchsia, 0), linewidth=2)
p1 = plot(upper_1, color=color.new(color.blue, 0), linewidth=1, title='0.236')
p2 = plot(upper_2, color=color.new(color.blue, 0), linewidth=1, title='0.382')
p3 = plot(upper_3, color=color.new(color.blue, 0), linewidth=1, title='0.5')
p4 = plot(upper_4, color=color.new(color.blue, 0), linewidth=1, title='0.618')
p5 = plot(upper_5, color=color.new(color.blue, 0), linewidth=1, title='0.764')
p6 = plot(upper_6, color=color.new(color.red, 0), linewidth=2, title='1')
p13 = plot(lower_1, color=color.new(color.blue, 0), linewidth=1, title='0.236')
p14 = plot(lower_2, color=color.new(color.blue, 0), linewidth=1, title='0.382')
p15 = plot(lower_3, color=color.new(color.blue, 0), linewidth=1, title='0.5')
p16 = plot(lower_4, color=color.new(color.orange, 0), linewidth=1, title='0.618')
p17 = plot(lower_5, color=color.new(color.blue, 0), linewidth=1, title='0.764')
p18 = plot(lower_6, color=color.new(color.green, 0), linewidth=2, title='1')


entry_condition_basis = ta.crossover(close, basis)
entry_condition_upper_1 = ta.crossover(close, upper_1)
entry_condition_upper_2 = ta.crossover(close, upper_2)
entry_condition_upper_3 = ta.crossover(close, upper_3)
entry_condition_upper_4 = ta.crossover(close, upper_4)
entry_condition_upper_5 = ta.crossover(close, upper_5)
entry_condition_upper_6 = ta.crossover(close, upper_4)
entry_condition_lower_1 = ta.crossover(close, lower_1)
entry_condition_lower_2 = ta.crossover(close, lower_2)
entry_condition_lower_3 = ta.crossover(close, lower_3)
entry_condition_lower_4 = ta.crossover(close, lower_4)
entry_condition_lower_5 = ta.crossover(close, lower_5)
entry_condition_lower_6 = ta.crossover(close, lower_6)


// Giriş Seçimine Göre Koşulu Seçin
entry_condition_selected = gurupfibo == 'Pivot' ? entry_condition_basis :
gurupfibo == '0.236' ? entry_condition_upper_1 :
gurupfibo == '0.382' ? entry_condition_upper_2 :
gurupfibo == '0.5' ? entry_condition_upper_3 :
gurupfibo == '0.618' ? entry_condition_upper_4 :
gurupfibo == '0.764' ? entry_condition_upper_5 :
gurupfibo == '0.764' ? entry_condition_upper_6 :
gurupfibo == '-236' ? entry_condition_lower_1 :
gurupfibo == '-382' ? entry_condition_lower_2 :
gurupfibo == '-5' ? entry_condition_lower_3:
gurupfibo == '-618' ? entry_condition_lower_4 :
gurupfibo == '-764' ? entry_condition_lower_5 :
gurupfibo == '-1' ? entry_condition_lower_6:
na

// Fonksiyon İçinde Kullan
func() =>
cond = entry_condition_selected
[close, cond]


// Giriş Koşulu
//entry_condition = ta.crossover(src, upper_4) and ta.crossunder(src, lower_4)

// Koşulu çizgi olarak grafik üzerine çizme
//plotshape(entry_condition_selected, title="0.618 Reached", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)


c1 = input.symbol(title='1', defval='BIST:DOAS', group = "1. Grup Hisseleri")
c2 = input.symbol(title='2', defval='BIST:GRSEL')
c3 = input.symbol(title='3', defval='BIST:KRDMD')
c4 = input.symbol(title='4', defval='BIST:KOZAL')
c5 = input.symbol(title='5', defval='BIST:ASELS')
c6 = input.symbol(title='6', defval='BIST:THYAO')
c7 = input.symbol(title='7', defval='BIST:TUPRS')
c8 = input.symbol(title='8', defval='BIST:VESTL')
c9 = input.symbol(title='9', defval='BIST:BOBET')
c10 = input.symbol(title='10', defval='BIST:MAVI')
c11 = input.symbol(title='11', defval='BIST:TTKOM')
c12 = input.symbol(title='12', defval='BIST:SISE')
c13 = input.symbol(title='13', defval='BIST:ARCLK')
c14 = input.symbol(title='14', defval='BIST:KOZAA')
c15 = input.symbol(title='15', defval='BIST:KMPUR')
c16 = input.symbol(title='16', defval='BIST:AKCNS')
c17 = input.symbol(title='17', defval='BIST:MEGAP')
c18 = input.symbol(title='18', defval='BIST:EBEBK')
c19 = input.symbol(title='19', defval='BIST:TTKOM')
c20 = input.symbol(title='20', defval='BIST:SASA')
c21 = input.symbol(title='21', defval='BIST:PETKM')
c22 = input.symbol(title='22', defval='BIST:TOASO')
c23 = input.symbol(title='23', defval='BIST:BEYAZ')
c24 = input.symbol(title='24', defval='BIST:PGSUS')
c25 = input.symbol(title='25', defval='BIST:GUBRF')
c26 = input.symbol(title='26', defval='BIST:KCHOL')
c27 = input.symbol(title='27', defval='BIST:VAKKO')
c28 = input.symbol(title='28', defval='BIST:MGROS')
c29 = input.symbol(title='29', defval='BIST:KOZAA')
c30 = input.symbol(title='30', defval='BIST:KAREL')
c31 = input.symbol(title='31', defval='BIST:ORCAY')
c32 = input.symbol(title='32', defval='BIST:DURDO')
c33 = input.symbol(title='33', defval='BIST:CUSAN')
c34 = input.symbol(title='34', defval='BIST:BIENY')
c35 = input.symbol(title='35', defval='BIST:NETAS')
c36 = input.symbol(title='36', defval='BIST:BIMAS')
c37 = input.symbol(title='37', defval='BIST:TUREX')
c38 = input.symbol(title='38', defval='BIST:BRLSM')
c39 = input.symbol(title='39', defval='BIST:YUNSA')
c40 = input.symbol(title='40', defval='BIST:TTRAK')

d1 = input.symbol(title='1', defval='BIST:KLSYN',group = "2. Grup Hisseleri")
d2 = input.symbol(title='2', defval='BIST:DERIM')
d3 = input.symbol(title='3', defval='BIST:ARZUM')
d4 = input.symbol(title='4', defval='BIST:PNLSN')
d5 = input.symbol(title='5', defval='BIST:CLEBI')
d6 = input.symbol(title='6', defval='BIST:ATATP')
d7 = input.symbol(title='7', defval='BIST:FONET')
d8 = input.symbol(title='8', defval='BIST:ALCTL')
d9 = input.symbol(title='9', defval='BIST:MAKTK')
d10 = input.symbol(title='10', defval='BIST:SAHOL')
d11 = input.symbol(title='11', defval='BIST:ALKA')
d12 = input.symbol(title='12', defval='BIST:ALKIM')
d13 = input.symbol(title='13', defval='BIST:CVKMD')
d14 = input.symbol(title='14', defval='BIST:GENIL')
d15 = input.symbol(title='15', defval='BIST:SELEC')
d16 = input.symbol(title='16', defval='BIST:DOHOL')
d17 = input.symbol(title='17', defval='BIST:INTEM')
d18 = input.symbol(title='18', defval='BIST:DESA')
d19 = input.symbol(title='19', defval='BIST:ASGYO')
d20 = input.symbol(title='20', defval='BIST:DNISI')
d21 = input.symbol(title='21', defval='BIST:KCAER')
d22 = input.symbol(title='22', defval='BIST:DGNMO')
d23 = input.symbol(title='23', defval='BIST:ENKAI')
d24 = input.symbol(title='24', defval='BIST:OTKAR')
d25 = input.symbol(title='25', defval='BIST:FORTE')
d26 = input.symbol(title='26', defval='BIST:IPEKE')
d27 = input.symbol(title='27', defval='BIST:TAVHL')
d28 = input.symbol(title='28', defval='BIST:EDATA')
d29 = input.symbol(title='29', defval='BIST:EGEEN')
d30 = input.symbol(title='30', defval='BIST:EGGUB')
d31 = input.symbol(title='31', defval='BIST:EGPRO')
d32 = input.symbol(title='32', defval='BIST:TCELL')
d33 = input.symbol(title='33', defval='BIST:ESCAR')
d34 = input.symbol(title='34', defval='BIST:ENJSA')
d35 = input.symbol(title='35', defval='BIST:ERCB')
d36 = input.symbol(title='36', defval='BIST:ALARK')
d37 = input.symbol(title='37', defval='BIST:CEOEM')
d38 = input.symbol(title='38', defval='BIST:ESCOM')
d39 = input.symbol(title='39', defval='BIST:HEKTS')
d40 = input.symbol(title='40', defval='BIST:SDTTR')

e1 = input.symbol(title='1', defval='BIST:ASTOR',group = "3. Grup Hisseleri")
e2 = input.symbol(title='2', defval='BIST:AKFYE')
e3 = input.symbol(title='3', defval='BIST:AHGAZ')
e4 = input.symbol(title='4', defval='BIST:AKENR')
e5 = input.symbol(title='5', defval='BIST:AKSEN')
e6 = input.symbol(title='6', defval='BIST:AKSUE')
e7 = input.symbol(title='7', defval='BIST:ALFAS')
e8 = input.symbol(title='8', defval='BIST:ARASE')
e9 = input.symbol(title='9', defval='BIST:AYDEM')
e10 = input.symbol(title='10', defval='BIST:AYEN')
e11 = input.symbol(title='11', defval='BIST:AYGAZ')
e12 = input.symbol(title='12', defval='BIST:BASGZ')
e13 = input.symbol(title='13', defval='BIST:BIOEN')
e14 = input.symbol(title='14', defval='BIST:CANTE')
e15 = input.symbol(title='15', defval='BIST:CONSE')
e16 = input.symbol(title='16', defval='BIST:ENERY')
e17 = input.symbol(title='17', defval='BIST:ENJSA')
e18 = input.symbol(title='18', defval='BIST:ESEN')
e19 = input.symbol(title='19', defval='BIST:GWIND')
e20 = input.symbol(title='20', defval='BIST:HUNER')
e21 = input.symbol(title='21', defval='BIST:NATEN')
e22 = input.symbol(title='22', defval='BIST:KARYE')
e23 = input.symbol(title='23', defval='BIST:KONTR')
e24 = input.symbol(title='24', defval='BIST:MAGEN')
e25 = input.symbol(title='25', defval='BIST:NTGAZ')
e26 = input.symbol(title='26', defval='BIST:ODAS')
e27 = input.symbol(title='27', defval='BIST:PAMEL')
e28 = input.symbol(title='28', defval='BIST:TRCAS')
e29 = input.symbol(title='29', defval='BIST:TATEN')
e30 = input.symbol(title='30', defval='BIST:YEOTK')
e31 = input.symbol(title='31', defval='BIST:ZEDUR')
e32 = input.symbol(title='32', defval='BIST:EUPWR')
e33 = input.symbol(title='33', defval='BIST:GESAN')
e34 = input.symbol(title='34', defval='BIST:JANTS')
e35 = input.symbol(title='35', defval='BIST:CWENE')
e36 = input.symbol(title='36', defval='BIST:KRDMA')
e37 = input.symbol(title='37', defval='BIST:KRDMB')
e38 = input.symbol(title='38', defval='BIST:ISDMR')
e39 = input.symbol(title='39', defval='BIST:KARSN')
e40 = input.symbol(title='40', defval='BIST:KRTEK')

f1 = input.symbol(title='1', defval='BIST:ATAKP', group='4. Grup Hisseleri')
f2 = input.symbol(title='2', defval='BIST:CCOLA')
f3 = input.symbol(title='3', defval='BIST:EKSUN')
f4 = input.symbol(title='4', defval='BIST:ELITE')
f5 = input.symbol(title='5', defval='BIST:FRIGO')
f6 = input.symbol(title='6', defval='BIST:GOKNR')
f7 = input.symbol(title='7', defval='BIST:KAYSE')
f8 = input.symbol(title='8', defval='BIST:KERVT')
f9 = input.symbol(title='9', defval='BIST:BRSAN')
f10 = input.symbol(title='10', defval='BIST:KRVGD')
f11 = input.symbol(title='11', defval='BIST:KTSKR')
f12 = input.symbol(title='12', defval='BIST:OFSYM')
f13 = input.symbol(title='13', defval='BIST:MIATK')
f14 = input.symbol(title='14', defval='BIST:OYLUM')
f15 = input.symbol(title='15', defval='BIST:PETUN')
f16 = input.symbol(title='16', defval='BIST:PINSU')
f17 = input.symbol(title='17', defval='BIST:PNSUT')
f18 = input.symbol(title='18', defval='BIST:SELGD')
f19 = input.symbol(title='19', defval='BIST:SELVA')
f20 = input.symbol(title='20', defval='BIST:SOKE')
f21 = input.symbol(title='21', defval='BIST:TATGD')
f22 = input.symbol(title='22', defval='BIST:TUKAS')
f23 = input.symbol(title='23', defval='BIST:ULKER')
f24 = input.symbol(title='24', defval='BIST:ULUUN')
f25 = input.symbol(title='25', defval='BIST:YYLGD')
f26 = input.symbol(title='26', defval='BIST:MAKIM')
f27 = input.symbol(title='27', defval='BIST:YAPRK')
f28 = input.symbol(title='28', defval='BIST:VANGD')
f29 = input.symbol(title='29', defval='BIST:AZTEK')
f30 = input.symbol(title='30', defval='BIST:AKSA')
f31 = input.symbol(title='31', defval='BIST:MEDTR')
f32 = input.symbol(title='32', defval='BIST:MEGAP')
f33 = input.symbol(title='33', defval='BIST:MNDRS')
f34 = input.symbol(title='34', defval='BIST:MERCN')
f35 = input.symbol(title='35', defval='BIST:BARMA')
f36 = input.symbol(title='36', defval='BIST:BVSAN')
f37 = input.symbol(title='37', defval='BIST:MIPAZ')
f38 = input.symbol(title='38', defval='BIST:GRTRK')
f39 = input.symbol(title='39', defval='BIST:MPARK')
f40 = input.symbol(title='40', defval='BIST:SMRTG')

g1 = input.symbol(title='1', defval='BIST:AFYON', group="5. Grup Hisseleri")
g2 = input.symbol(title='2', defval='BIST:HKTM')
g3 = input.symbol(title='3', defval='BIST:PLTUR')
g4 = input.symbol(title='4', defval='BIST:BTCIM')
g5 = input.symbol(title='5', defval='BIST:BUCIM')
g6 = input.symbol(title='6', defval='BIST:CIMSA')
g7 = input.symbol(title='7', defval='BIST:CMBTN')
g8 = input.symbol(title='8', defval='BIST:EGSER')
g9 = input.symbol(title='9', defval='BIST:GOLTS')
g10 = input.symbol(title='10', defval='BIST:KLKIM')
g11 = input.symbol(title='11', defval='BIST:KLSER')
g12 = input.symbol(title='12', defval='BIST:KONYA')
g13 = input.symbol(title='13', defval='BIST:NUHCM')
g14 = input.symbol(title='14', defval='BIST:OYAKC')
g15 = input.symbol(title='15', defval='BIST:QUAGR')
g16 = input.symbol(title='16', defval='BIST:EUREN')
g17 = input.symbol(title='17', defval='BIST:TMSN')
g18 = input.symbol(title='18', defval='BIST:ORGE')
g19 = input.symbol(title='19', defval='BIST:BURCE')
g20 = input.symbol(title='20', defval='BIST:BRISA')
g21 = input.symbol(title='21', defval='BIST:DYOBY')
g22 = input.symbol(title='22', defval='BIST:CEMTS')
g23 = input.symbol(title='23', defval='BIST:DAPGM')
g24 = input.symbol(title='24', defval='BIST:HLGYO')
g25 = input.symbol(title='25', defval='BIST:EKGYO')
g26 = input.symbol(title='26', defval='BIST:SNICA')
g27 = input.symbol(title='27', defval='BIST:ALCAR')
g28 = input.symbol(title='28', defval='BIST:BERA')
g29 = input.symbol(title='29', defval='BIST:KONKA')
g30 = input.symbol(title='30', defval='BIST:ACSEL')
g31 = input.symbol(title='31', defval='BIST:MNDTR')
g32 = input.symbol(title='32', defval='BIST:ONCSM')
g33 = input.symbol(title='33', defval='BIST:FROTO')
g34 = input.symbol(title='34', defval='BIST:GOODY')
g35 = input.symbol(title='35', defval='BIST:GENTS')
g36 = input.symbol(title='36', defval='BIST:BURVA')
g37 = input.symbol(title='37', defval='BIST:CEMAS')
g38 = input.symbol(title='38', defval='BIST:RUBNS')
g39 = input.symbol(title='39', defval='BIST:SAFKR')
g40 = input.symbol(title='40', defval='BIST:BOSSA')

h1 = input.symbol(title='1', defval='BIST:SANFM',group = "6. Grup Hisseleri")
h2 = input.symbol(title='2', defval='BIST:SANKO')
h3 = input.symbol(title='3', defval='BIST:SAMAT')
h4 = input.symbol(title='4', defval='BIST:GEREL')
h5 = input.symbol(title='5', defval='BIST:SAYAS')
h6 = input.symbol(title='6', defval='BIST:SEKUR')
h7 = input.symbol(title='7', defval='BIST:SELEC')
h8 = input.symbol(title='8', defval='BIST:KGYO')
h9 = input.symbol(title='9', defval='BIST:KOPOL')
h10 = input.symbol(title='10', defval='BIST:KRONT')
h11 = input.symbol(title='11', defval='BIST:SILVR')
h12 = input.symbol(title='12', defval='BIST:SNGYO')
h13 = input.symbol(title='13', defval='BIST:LINK')
h14 = input.symbol(title='14', defval='BIST:SMART')
h15 = input.symbol(title='15', defval='BIST:GIPTA')
h16 = input.symbol(title='16', defval='BIST:SONME')
h17 = input.symbol(title='17', defval='BIST:SUNTK')
h18 = input.symbol(title='18', defval='BIST:SUWEN')
h19 = input.symbol(title='19', defval='BIST:TKFEN')
h20 = input.symbol(title='20', defval='BIST:TKNSA')
h21 = input.symbol(title='21', defval='BIST:TMPOL')
h22 = input.symbol(title='22', defval='BIST:TGSAS')
h23 = input.symbol(title='23', defval='BIST:TDGYO')
h24 = input.symbol(title='24', defval='BIST:BAKAB')
h25 = input.symbol(title='25', defval='BIST:TUCLK')
h26 = input.symbol(title='26', defval='BIST:TUKAS')
h27 = input.symbol(title='27', defval='BIST:TEZOL')
h28 = input.symbol(title='28', defval='BIST:FMIZP')
h29 = input.symbol(title='29', defval='BIST:GEDZA')
h30 = input.symbol(title='30', defval='BIST:PASEU')
h31 = input.symbol(title='31', defval='BIST:DESPC')
h32 = input.symbol(title='32', defval='BIST:ARDYZ')
h33 = input.symbol(title='33', defval='BIST:PRKAB')
h34 = input.symbol(title='34', defval='BIST:TTRAK')
h35 = input.symbol(title='35', defval='BIST:TURGG')
h36 = input.symbol(title='36', defval='BIST:VESBE')
h37 = input.symbol(title='37', defval='BIST:ULUUN')
h38 = input.symbol(title='38', defval='BIST:DGGYO')
h39 = input.symbol(title='39', defval='BIST:ATEKS')
h40 = input.symbol(title='40', defval='BIST:VBTYZ')

j1 = input.symbol(title='1', defval='BIST:VERUS',group = "7. Grup Hisseleri")
j2 = input.symbol(title='2', defval='BIST:VERTU')
j3 = input.symbol(title='3', defval='BIST:BNTAS')
j4 = input.symbol(title='4', defval='BIST:YAPRK')
j5 = input.symbol(title='5', defval='BIST:YATAS')
j6 = input.symbol(title='6', defval='BIST:BRKSN')
j7 = input.symbol(title='7', defval='BIST:ERSU')
j8 = input.symbol(title='8', defval='BIST:KORDS')
j9 = input.symbol(title='9', defval='BIST:ZEDUR')
j10 = input.symbol(title='10', defval='BIST:XU100')
j11 = input.symbol(title='11', defval='BIST:EYGYO')
j12 = input.symbol(title='12', defval='')
j13 = input.symbol(title='13', defval='')
j14 = input.symbol(title='14', defval='')
j15 = input.symbol(title='15', defval='')
j16 = input.symbol(title='16', defval='')
j17 = input.symbol(title='17', defval='')
j18 = input.symbol(title='18', defval='')
j19 = input.symbol(title='19', defval='')
j20 = input.symbol(title='20', defval='')
j21 = input.symbol(title='21', defval='')
j22 = input.symbol(title='22', defval='')
j23 = input.symbol(title='23', defval='')
j24 = input.symbol(title='24', defval='')
j25 = input.symbol(title='25', defval='')
j26 = input.symbol(title='26', defval='')
j27 = input.symbol(title='27', defval='')
j28 = input.symbol(title='28', defval='')
j29 = input.symbol(title='29', defval='')
j30 = input.symbol(title='30', defval='')
j31 = input.symbol(title='31', defval='')
j32 = input.symbol(title='32', defval='')
j33 = input.symbol(title='33', defval='')
j34 = input.symbol(title='34', defval='')
j35 = input.symbol(title='35', defval='')
j36 = input.symbol(title='36', defval='')
j37 = input.symbol(title='37', defval='')
j38 = input.symbol(title='38', defval='')
j39 = input.symbol(title='39', defval='')
j40 = input.symbol(title='40', defval='')


//GRUP VE TARANACAK HİSSE SAYISINI AYNI ŞEKİLDE DİLEDİĞİNİZ GİBİ ARTIRABİLİRSİNİZ.

a1 = gurupSec == '1' ? c1 : gurupSec == '2' ? d1 : gurupSec == '3' ? e1 : gurupSec == '4' ? f1 : gurupSec == '5' ? g1 : gurupSec == '6' ? h1 : gurupSec == '7' ? j1 : na
a2 = gurupSec == '1' ? c2 : gurupSec == '2' ? d2 : gurupSec == '3' ? e2 : gurupSec == '4' ? f2 : gurupSec == '5' ? g2 : gurupSec == '6' ? h2 : gurupSec == '7' ? j2 : na
a3 = gurupSec == '1' ? c3 : gurupSec == '2' ? d3 : gurupSec == '3' ? e3 : gurupSec == '4' ? f3 : gurupSec == '5' ? g3 : gurupSec == '6' ? h3 : gurupSec == '7' ? j3 : na
a4 = gurupSec == '1' ? c4 : gurupSec == '2' ? d4 : gurupSec == '3' ? e4 : gurupSec == '4' ? f4 : gurupSec == '5' ? g4 : gurupSec == '6' ? h4 : gurupSec == '7' ? j4 : na
a5 = gurupSec == '1' ? c5 : gurupSec == '2' ? d5 : gurupSec == '3' ? e5 : gurupSec == '4' ? f5 : gurupSec == '5' ? g5 : gurupSec == '6' ? h5 : gurupSec == '7' ? j5 : na
a6 = gurupSec == '1' ? c6 : gurupSec == '2' ? d6 : gurupSec == '3' ? e6 : gurupSec == '4' ? f6 : gurupSec == '5' ? g6 : gurupSec == '6' ? h6 : gurupSec == '7' ? j6 : na
a7 = gurupSec == '1' ? c7 : gurupSec == '2' ? d7 : gurupSec == '3' ? e7 : gurupSec == '4' ? f7 : gurupSec == '5' ? g7 : gurupSec == '6' ? h7 : gurupSec == '7' ? j7 : na
a8 = gurupSec == '1' ? c8 : gurupSec == '2' ? d8 : gurupSec == '3' ? e8 : gurupSec == '4' ? f8 : gurupSec == '5' ? g8 : gurupSec == '6' ? h8 : gurupSec == '7' ? j8 : na
a9 = gurupSec == '1' ? c9 : gurupSec == '2' ? d9 : gurupSec == '3' ? e9 : gurupSec == '4' ? f9 : gurupSec == '5' ? g9 : gurupSec == '6' ? h9 : gurupSec == '7' ? j9 : na
a10 = gurupSec == '1' ? c10 : gurupSec == '2' ? d10 : gurupSec == '3' ? e10 : gurupSec == '4' ? f10 : gurupSec == '5' ? g10 : gurupSec == '6' ? h10 : gurupSec == '7' ? j10 : na
a11 = gurupSec == '1' ? c11 : gurupSec == '2' ? d11 : gurupSec == '3' ? e11 : gurupSec == '4' ? f11 : gurupSec == '5' ? g11 : gurupSec == '6' ? h11 : gurupSec == '7' ? j11 : na
a12 = gurupSec == '1' ? c12 : gurupSec == '2' ? d12 : gurupSec == '3' ? e12 : gurupSec == '4' ? f12 : gurupSec == '5' ? g12 : gurupSec == '6' ? h12 : gurupSec == '7' ? j12 : na
a13 = gurupSec == '1' ? c13 : gurupSec == '2' ? d13 : gurupSec == '3' ? e13 : gurupSec == '4' ? f13 : gurupSec == '5' ? g13 : gurupSec == '6' ? h13 : gurupSec == '7' ? j13 : na
a14 = gurupSec == '1' ? c14 : gurupSec == '2' ? d14 : gurupSec == '3' ? e14 : gurupSec == '4' ? f14 : gurupSec == '5' ? g14 : gurupSec == '6' ? h14 : gurupSec == '7' ? j14 : na
a15 = gurupSec == '1' ? c15 : gurupSec == '2' ? d15 : gurupSec == '3' ? e15 : gurupSec == '4' ? f15 : gurupSec == '5' ? g15 : gurupSec == '6' ? h15 : gurupSec == '7' ? j15 : na
a16 = gurupSec == '1' ? c16 : gurupSec == '2' ? d16 : gurupSec == '3' ? e16 : gurupSec == '4' ? f16 : gurupSec == '5' ? g16 : gurupSec == '6' ? h16 : gurupSec == '7' ? j16 : na
a17 = gurupSec == '1' ? c17 : gurupSec == '2' ? d17 : gurupSec == '3' ? e17 : gurupSec == '4' ? f17 : gurupSec == '5' ? g17 : gurupSec == '6' ? h17 : gurupSec == '7' ? j17 : na
a18 = gurupSec == '1' ? c18 : gurupSec == '2' ? d18 : gurupSec == '3' ? e18 : gurupSec == '4' ? f18 : gurupSec == '5' ? g18 : gurupSec == '6' ? h18 : gurupSec == '7' ? j18 : na
a19 = gurupSec == '1' ? c19 : gurupSec == '2' ? d19 : gurupSec == '3' ? e19 : gurupSec == '4' ? f19 : gurupSec == '5' ? g19 : gurupSec == '6' ? h19 : gurupSec == '7' ? j19 : na
a20 = gurupSec == '1' ? c20 : gurupSec == '2' ? d20 : gurupSec == '3' ? e20 : gurupSec == '4' ? f20 : gurupSec == '5' ? g20 : gurupSec == '6' ? h20 : gurupSec == '7' ? j20 : na
a21 = gurupSec == '1' ? c21 : gurupSec == '2' ? d21 : gurupSec == '3' ? e21 : gurupSec == '4' ? f21 : gurupSec == '5' ? g21 : gurupSec == '6' ? h21 : gurupSec == '7' ? j21 : na
a22 = gurupSec == '1' ? c22 : gurupSec == '2' ? d22 : gurupSec == '3' ? e22 : gurupSec == '4' ? f22 : gurupSec == '5' ? g22 : gurupSec == '6' ? h22 : gurupSec == '7' ? j22 : na
a23 = gurupSec == '1' ? c23 : gurupSec == '2' ? d23 : gurupSec == '3' ? e23 : gurupSec == '4' ? f23 : gurupSec == '5' ? g23 : gurupSec == '6' ? h23 : gurupSec == '7' ? j23 : na
a24 = gurupSec == '1' ? c24 : gurupSec == '2' ? d24 : gurupSec == '3' ? e24 : gurupSec == '4' ? f24 : gurupSec == '5' ? g24 : gurupSec == '6' ? h24 : gurupSec == '7' ? j24 : na
a25 = gurupSec == '1' ? c25 : gurupSec == '2' ? d25 : gurupSec == '3' ? e25 : gurupSec == '4' ? f25 : gurupSec == '5' ? g25 : gurupSec == '6' ? h25 : gurupSec == '7' ? j25 : na
a26 = gurupSec == '1' ? c26 : gurupSec == '2' ? d26 : gurupSec == '3' ? e26 : gurupSec == '4' ? f26 : gurupSec == '5' ? g26 : gurupSec == '6' ? h26 : gurupSec == '7' ? j26 : na
a27 = gurupSec == '1' ? c27 : gurupSec == '2' ? d27 : gurupSec == '3' ? e27 : gurupSec == '4' ? f27 : gurupSec == '5' ? g27 : gurupSec == '6' ? h27 : gurupSec == '7' ? j27 : na
a28 = gurupSec == '1' ? c28 : gurupSec == '2' ? d28 : gurupSec == '3' ? e28 : gurupSec == '4' ? f28 : gurupSec == '5' ? g28 : gurupSec == '6' ? h28 : gurupSec == '7' ? j28 : na
a29 = gurupSec == '1' ? c29 : gurupSec == '2' ? d29 : gurupSec == '3' ? e29 : gurupSec == '4' ? f29 : gurupSec == '5' ? g29 : gurupSec == '6' ? h29 : gurupSec == '7' ? j29 : na
a30 = gurupSec == '1' ? c30 : gurupSec == '2' ? d30 : gurupSec == '3' ? e30 : gurupSec == '4' ? f30 : gurupSec == '5' ? g30 : gurupSec == '6' ? h30 : gurupSec == '7' ? j30 : na
a31 = gurupSec == '1' ? c31 : gurupSec == '2' ? d31 : gurupSec == '3' ? e31 : gurupSec == '4' ? f31 : gurupSec == '5' ? g31 : gurupSec == '6' ? h31 : gurupSec == '7' ? j31: na
a32 = gurupSec == '1' ? c32 : gurupSec == '2' ? d32 : gurupSec == '3' ? e32 : gurupSec == '4' ? f32 : gurupSec == '5' ? g32 : gurupSec == '6' ? h32 : gurupSec == '7' ? j32 : na
a33 = gurupSec == '1' ? c33 : gurupSec == '2' ? d33 : gurupSec == '3' ? e33 : gurupSec == '4' ? f33 : gurupSec == '5' ? g33 : gurupSec == '6' ? h33 : gurupSec == '7' ? j33 : na
a34 = gurupSec == '1' ? c34 : gurupSec == '2' ? d34 : gurupSec == '3' ? e34 : gurupSec == '4' ? f34 : gurupSec == '5' ? g34 : gurupSec == '6' ? h34 : gurupSec == '7' ? j34 : na
a35 = gurupSec == '1' ? c35 : gurupSec == '2' ? d35 : gurupSec == '3' ? e35 : gurupSec == '4' ? f35 : gurupSec == '5' ? g35 : gurupSec == '6' ? h35 : gurupSec == '7' ? j35 : na
a36 = gurupSec == '1' ? c36 : gurupSec == '2' ? d36 : gurupSec == '3' ? e36 : gurupSec == '4' ? f36 : gurupSec == '5' ? g36 : gurupSec == '6' ? h36 : gurupSec == '7' ? j36 : na
a37 = gurupSec == '1' ? c37 : gurupSec == '2' ? d37 : gurupSec == '3' ? e37 : gurupSec == '4' ? f37 : gurupSec == '5' ? g37 : gurupSec == '6' ? h37 : gurupSec == '7' ? j37 : na
a38 = gurupSec == '1' ? c38 : gurupSec == '2' ? d38 : gurupSec == '3' ? e38 : gurupSec == '4' ? f38 : gurupSec == '5' ? g38 : gurupSec == '6' ? h38 : gurupSec == '7' ? j38 : na
a39 = gurupSec == '1' ? c39 : gurupSec == '2' ? d39 : gurupSec == '3' ? e39 : gurupSec == '4' ? f39 : gurupSec == '5' ? g39 : gurupSec == '6' ? h39 : gurupSec == '7' ? j39 : na
a40 = gurupSec == '1' ? c40 : gurupSec == '2' ? d40 : gurupSec == '3' ? e40 : gurupSec == '4' ? f40 : gurupSec == '5' ? g40 : gurupSec == '6' ? h40 : gurupSec == '7' ? j40 : na

[v1,s1] = request.security(a1, per, func())
[v2,s2] = request.security(a2, per, func())
[v3,s3] = request.security(a3, per, func())
[v4,s4] = request.security(a4, per, func())
[v5,s5] = request.security(a5, per, func())
[v6,s6] = request.security(a6, per, func())
[v7,s7] = request.security(a7, per, func())
[v8,s8] = request.security(a8, per, func())
[v9,s9] = request.security(a9, per, func())
[v10,s10] = request.security(a10, per, func())
[v11,s11] = request.security(a11, per, func())
[v12,s12] = request.security(a12, per, func())
[v13,s13] = request.security(a13, per, func())
[v14,s14] = request.security(a14, per, func())
[v15,s15] = request.security(a15, per, func())
[v16,s16] = request.security(a16, per, func())
[v17,s17] = request.security(a17, per, func())
[v18,s18] = request.security(a18, per, func())
[v19,s19] = request.security(a19, per, func())
[v20,s20] = request.security(a20, per, func())
[v21,s21] = request.security(a21, per, func())
[v22,s22] = request.security(a22, per, func())
[v23,s23] = request.security(a23, per, func())
[v24,s24] = request.security(a24, per, func())
[v25,s25] = request.security(a25, per, func())
[v26,s26] = request.security(a26, per, func())
[v27,s27] = request.security(a27, per, func())
[v28,s28] = request.security(a28, per, func())
[v29,s29] = request.security(a29, per, func())
[v30,s30] = request.security(a30, per, func())
[v31,s31] = request.security(a31, per, func())
[v32,s32] = request.security(a32, per, func())
[v33,s33] = request.security(a33, per, func())
[v34,s34] = request.security(a34, per, func())
[v35,s35] = request.security(a35, per, func())
[v36,s36] = request.security(a36, per, func())
[v37,s37] = request.security(a37, per, func())
[v38,s38] = request.security(a38, per, func())
[v39,s39] = request.security(a39, per, func())
[v40,s40] = request.security(a40, per, func())

scr_label = 'TARAMAn'
scr_label := s1 ? scr_label + syminfo.ticker(a1) + ' ' + str.tostring(v1) + 'n' : scr_label
scr_label := s2 ? scr_label + syminfo.ticker(a2) + ' ' + str.tostring(v2) + 'n' : scr_label
scr_label := s3 ? scr_label + syminfo.ticker(a3) + ' ' + str.tostring(v3) + 'n' : scr_label
scr_label := s4 ? scr_label + syminfo.ticker(a4) + ' ' + str.tostring(v4) + 'n' : scr_label
scr_label := s5 ? scr_label + syminfo.ticker(a5) + ' ' + str.tostring(v5) + 'n' : scr_label
scr_label := s6 ? scr_label + syminfo.ticker(a6) + ' ' + str.tostring(v6) + 'n' : scr_label
scr_label := s7 ? scr_label + syminfo.ticker(a7) + ' ' + str.tostring(v7) + 'n' : scr_label
scr_label := s8 ? scr_label + syminfo.ticker(a8) + ' ' + str.tostring(v8) + 'n' : scr_label
scr_label := s9 ? scr_label + syminfo.ticker(a9) + ' ' + str.tostring(v9) + 'n' : scr_label
scr_label := s10 ? scr_label + syminfo.ticker(a10) + ' ' + str.tostring(v10) + 'n' : scr_label
scr_label := s11 ? scr_label + syminfo.ticker(a11) + ' ' + str.tostring(v11) + 'n' : scr_label
scr_label := s12 ? scr_label + syminfo.ticker(a12) + ' ' + str.tostring(v12) + 'n' : scr_label
scr_label := s13 ? scr_label + syminfo.ticker(a13) + ' ' + str.tostring(v13) + 'n' : scr_label
scr_label := s14 ? scr_label + syminfo.ticker(a14) + ' ' + str.tostring(v14) + 'n' : scr_label
scr_label := s15 ? scr_label + syminfo.ticker(a15) + ' ' + str.tostring(v15) + 'n' : scr_label
scr_label := s16 ? scr_label + syminfo.ticker(a16) + ' ' + str.tostring(v16) + 'n' : scr_label
scr_label := s17 ? scr_label + syminfo.ticker(a17) + ' ' + str.tostring(v17) + 'n' : scr_label
scr_label := s18 ? scr_label + syminfo.ticker(a18) + ' ' + str.tostring(v18) + 'n' : scr_label
scr_label := s19 ? scr_label + syminfo.ticker(a19) + ' ' + str.tostring(v19) + 'n' : scr_label
scr_label := s20 ? scr_label + syminfo.ticker(a20) + ' ' + str.tostring(v20) + 'n' : scr_label
scr_label := s21 ? scr_label + syminfo.ticker(a21) + ' ' + str.tostring(v21) + 'n' : scr_label
scr_label := s22 ? scr_label + syminfo.ticker(a22) + ' ' + str.tostring(v22) + 'n' : scr_label
scr_label := s23 ? scr_label + syminfo.ticker(a23) + ' ' + str.tostring(v23) + 'n' : scr_label
scr_label := s24 ? scr_label + syminfo.ticker(a24) + ' ' + str.tostring(v24) + 'n' : scr_label
scr_label := s25 ? scr_label + syminfo.ticker(a25) + ' ' + str.tostring(v25) + 'n' : scr_label
scr_label := s26 ? scr_label + syminfo.ticker(a26) + ' ' + str.tostring(v26) + 'n' : scr_label
scr_label := s27 ? scr_label + syminfo.ticker(a27) + ' ' + str.tostring(v27) + 'n' : scr_label
scr_label := s28 ? scr_label + syminfo.ticker(a28) + ' ' + str.tostring(v28) + 'n' : scr_label
scr_label := s29 ? scr_label + syminfo.ticker(a29) + ' ' + str.tostring(v29) + 'n' : scr_label
scr_label := s30 ? scr_label + syminfo.ticker(a30) + ' ' + str.tostring(v30) + 'n' : scr_label
scr_label := s31 ? scr_label + syminfo.ticker(a31) + ' ' + str.tostring(v31) + 'n' : scr_label
scr_label := s32 ? scr_label + syminfo.ticker(a32) + ' ' + str.tostring(v32) + 'n' : scr_label
scr_label := s33 ? scr_label + syminfo.ticker(a33) + ' ' + str.tostring(v33) + 'n' : scr_label
scr_label := s34 ? scr_label + syminfo.ticker(a34) + ' ' + str.tostring(v34) + 'n' : scr_label
scr_label := s35 ? scr_label + syminfo.ticker(a35) + ' ' + str.tostring(v35) + 'n' : scr_label
scr_label := s36 ? scr_label + syminfo.ticker(a36) + ' ' + str.tostring(v36) + 'n' : scr_label
scr_label := s37 ? scr_label + syminfo.ticker(a37) + ' ' + str.tostring(v37) + 'n' : scr_label
scr_label := s38 ? scr_label + syminfo.ticker(a38) + ' ' + str.tostring(v38) + 'n' : scr_label
scr_label := s39 ? scr_label + syminfo.ticker(a39) + ' ' + str.tostring(v39) + 'n' : scr_label
scr_label := s40 ? scr_label + syminfo.ticker(a40) + ' ' + str.tostring(v40) + 'n' : scr_label

lab_1 = label.new(bar_index + loc, close, scr_label, color=color.green, textcolor=color.white, style=label.style_label_center)
label.delete(lab_1[1])

if str.length(scr_label) > 8
alert(scr_label,alert.freq_once_per_bar_close)
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.