Lemnos

Ersoy Support-Resistance-Osilator

website: www.ersoytoptas.com
Newspaper : tr.investing.com/members/36623/opinion



Hi this is a oscillator ...
Close Support , Remote Support , Resistance and works with the live screen.

Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
study("Ersoy- Support-Resistance-Osilatör")
///ersoytoptas@hotmail.com
///Stock Quotes & works in all ..///
///Private Fibonachi-14///
length11 = input(title="Moment", type=integer, defval=14)
offset11 = input(type=integer, defval=0)
source11 = close
lsma11 = linreg(source11, length11,offset11)
plot(lsma11,color=black,title="Moment")
///Private Fibonachi-35///
length13 = input(title="Resistance-35", type=integer, defval=35)
offset13 = input(type=integer, defval=0)
source13 = close
lsma13 = linreg(source13, length13,offset13)
plot(lsma13,color=red,title="Resistance-35")
///Private 144-///
length15 = input(title="Near Support-144", type=integer, defval=144)
offset15 = input(type=integer, defval=0)
source15 = close
lsma15 = linreg(source15, length15,offset15)
plot(lsma15,color=lime,title="Near Support-144")

///Private 382-///
length14 = input(title="Far Support-382", type=integer, defval=382)
offset14 = input(type=integer, defval=0)
source14 = close
lsma14 = linreg(source14, length14,offset14)
plot(lsma14,color=green,title="Far Support-382")