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.

סקריפט קוד פתוח

ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יכולים להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אך שימוש חוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.

כתב ויתור

המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.

רוצה להשתמש בסקריפ זה בגרף?
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")