Rouge1896

Constance Brown RSI [Rouge1896]

Standard RSI (Relative Strength Index) with 2 EMA (Exponential Moving Averages) calculated from the RSI. Please see "Technical Analysis for the Trading Professional" by Constance Brown CMT. Enjoy!

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

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

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
study(title="Constance Brown RSI [Rouge1896]", shorttitle="CBRSI")
src = close
rsi_length=input(14, title="RSI Length")
rsi_ma_length=input(3, title="RSI MA Length")
ma_length=input(3, title="SMA Length")
fastLength=input(9)
slowLength=input(49)

r=rsi(src, rsi_length)

plot(r, color=blue, linewidth=2)
plot(ema(r, fastLength), color=green)
plot(ema(r, slowLength), color=red)