gb50k

For Lolikeet - 2 time frames 1 chart

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

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

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
//@version=2
study("My Script")
//plot(close)


res = input("240", type=resolution)
o = security(tickerid, res, open)
c = security(tickerid, res, close)
h = security(tickerid, res, high)
l = security(tickerid, res, low)


plotcandle(o, h, l, c, title='ceand', color = o < c ? green : red, wickcolor=black)
// most important for backtesting-
// if you use this code to add the 4hr time frame to a 1 hour chart....
// and you want to reference the last cadle in each time frame,
// its x[1]  for the 1hr and x[4] for the 4 hour.  you dont want to use the look at the last candle
// in the 4hr series it carries information that the 1 hr series doesnt have
// untill all 4 hours are done