konstantin.novik

USDRUB Budget Line

This indicator plots an estimated level of USDRUB rate according to the oil price in rubles to balance the budget. The indicator works at arbitrary timescales. You can change the estimated oil price level in rubles (default value is 3150 rubles/bbl) and the ticker for the oil.

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

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

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
//@version=2
study(title = "USDRUB Budget Line", shorttitle = "BUDL", overlay = true, precision = 4)
oilLevel = input(title = "RUB Oil Level", type = float, defval = 3150.0, minval = 1.0, step = 1.0)
oilTicker = input(title = "Ticker for Oil", type = string, defval = "UKOIL")
rubLevel = security(oilTicker, period, oilLevel/close)
plot(rubLevel)