enerji furyasının yerini....
klser-kayse-fzlgy-yylgd-fade-netas-atakp-rtalb-brsan-ascgyo
v.b aldı gibi.....
enerji furyasının yerini....
klser-kayse-fzlgy-yylgd-fade-netas-atakp-rtalb-brsan-ascgyo
v.b aldı gibi.....
16.07.2024 - 10.12.2024
https://tr.tradingview.com/v/z0mtJNUa/
trend için
16.07.2024 - 10.12.2024
https://tr.tradingview.com/v/RLuKzsNG/
değeri 79 yapıp incelemek gerekir
16.07.2024 - 10.12.2024
20 emayı...istediğiniz periyoda ....istediğiniz zaman diliminde çizdirrin.....PHP Code:
//@version=5
indicator(title="Papercuts Time Sampled EMA Without Security", shorttitle="Papercuts TSEMA", overlay=true)
colorBull = input.color(defval=#2196F3, title='Bullish Color: ', inline='line2') //Light Blue
colorBear = input.color(defval=#C1B82F, title='Bearish Color: ', inline='line2') //yellow
timeVar = input.timeframe('1', "Resolution", options=['1','3','5','15','30','60'], tooltip="Currently just have this working with these options due to time formatting issues.")
var float SteppedHTFEMA = na
var color emaColor = na
timeVarNum = str.tonumber(timeVar)
formattedTimeHours = str.format_time(time, "HHmm", syminfo.timezone)
formattedTimeMinutes = str.format_time(time, "mm", syminfo.timezone)
dividend = str.tonumber(timeVarNum <= 60 ? formattedTimeMinutes : formattedTimeHours)
divisor = timeVarNum > 60 ? (timeVarNum / 60)*100 : timeVarNum //if using hours then change format and math
ModuloTimeRemainder = dividend % divisor //This trick here is to use modulo to flag when time interval hits, and to update our var at that time only.
if ModuloTimeRemainder == 0
SteppedHTFEMA := ta.ema(close, 20)//technically this can be anything, but i am using EMA as example
emaColor := SteppedHTFEMA > SteppedHTFEMA[1] ? colorBull : SteppedHTFEMA < SteppedHTFEMA[1] ? colorBear : emaColor[1]
plot(SteppedHTFEMA, title="SampledEMA ", color=emaColor, linewidth=2, style=plot.style_line)
// //non painting security call update to just here to check my results against, its close enough for me!
// var string ticker = syminfo.tickerid
// showFsec = input(false,title="show f_security reference")
// f_security(_sym, _res, _src, _rep) =>
// request.security(_sym, _res, _src[not _rep and barstate.isrealtime ? 1 : 0])[_rep or barstate.isrealtime ? 0 : 1]
// plot(showFsec ? f_security(ticker, timeVar, ta.ema(close, 20), false):na, style=plot.style_stepline, color=color.new(color.white,80))
16.07.2024 - 10.12.2024
5-20-50-100-200 sma en yüksek ve en düşük değerlerinin ortalaması ile kanal çizer....
PHP Code:
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © federalTacos5392b
//@version=5
indicator("Multi Time Frame Composite Band", overlay = true)
a_high = (ta.highest(high, 5) + ta.highest(high, 20) + ta.highest(high, 50) + ta.highest(high, 100)+ta.highest(high, 200)) / 5
b_high = (ta.sma(high, 5) + ta.sma(high, 20) + ta.sma(high, 50)) / 3
c_high = (a_high + b_high) / 2
a_low = (ta.lowest(low, 5) + ta.lowest(low, 20) + ta.lowest(low, 50) + ta.lowest(low, 100) +ta.lowest(low, 200)) / 5
b_low = (ta.sma(low, 5) + ta.sma(low, 20) + ta.sma(low, 50)) / 3
c_low = (a_low + b_low) / 2
mid_line = (c_high+c_low)/2
plot(c_high, color=color.blue, title="Composite High")
plot(c_low, color=color.red, title="Composite Low")
plot(mid_line, color=color.black, title="mid_line")
16.07.2024 - 10.12.2024
super trend...
destek-direnç ve
olası destek direnç
PHP Code:
// © OmegaTools
//@version=5
indicator("SuperTrend Zone", overlay = true, timeframe = "")
multi = input.float(2.00, "Supertrend factor")
lenght = input.int(100, "ATR lenght")
width = input.float(1.00, "Zone width")
atrs = ta.atr(lenght) * width
[supertrend, direction] = ta.supertrend(multi, lenght)
supertrendzoneup = if direction < 0
supertrend + atrs
supertrendzonedown = if direction > 0
supertrend - atrs
[supertrend2, direction2] = ta.supertrend(multi*3, lenght*3)
p1 = plot(direction < 0 ? supertrend : na, "direnç", color = #2962ff00, style=plot.style_linebr)
p2 = plot(direction > 0 ? supertrend : na, "destek", color = #e91e6200, style=plot.style_linebr)
p3 = plot(direction < 0 ? supertrendzoneup : na, color = #2962ff00, style=plot.style_linebr)
p4 = plot(direction > 0 ? supertrendzonedown : na, color = #e91e6200, style=plot.style_linebr)
fill(p1, p3, color = color.new(#2962ff, 80))
fill(p2, p4, color = color.new(#e91e63, 80))
plot(direction2 < 0 ? supertrend2 : na, "Olası direnç", color = color.new(#66f506, 1), style=plot.style_linebr)
plot(direction2 > 0 ? supertrend2 : na, "Olası destek", color = color.new(#f70303, 0), style=plot.style_linebr)
16.07.2024 - 10.12.2024
Yer İmleri