OPEN-SOURCE SCRIPT

Trade With Trend By Rohit

//version=5
indicator("Trade With Trend By Rohit", overlay=true)

// Define the lengths and sources for the EMAs
length = 200
source_high = high
source_low = low

// Calculate the EMAs
ema_high = ta.ema(source_high, length)
ema_low = ta.ema(source_low, length)

// Plot the EMAs
plot(ema_high, color=color.green, title="EMA High", linewidth=2)
plot(ema_low, color=color.red, title="EMA Low", linewidth=2)

// Optional: Fill the area between the two EMAs
fill(plot1 = plot(ema_high), plot2 = plot(ema_low), color=color.new(color.blue, 90), title="EMA Channel")
Bands and ChannelsCandlestick analysisCycles

Skrypt open-source

W prawdziwym duchu TradingView autor tego skryptu opublikował go jako open source, aby inwestorzy mogli go zrozumieć i zweryfikować. Pozdrowienia dla autora! Możesz go używać bezpłatnie, ale ponowne użycie tego kodu w publikacji podlega Zasadom Regulaminu. Możesz go oznaczyć jako ulubione, aby użyć go na wykresie.

Chcesz użyć tego skryptu na wykresie?

Wyłączenie odpowiedzialności