//version=5
indicator("Renko Percentage Change", overlay=true)
// Get the Renko brick size
brick_size = request.security(syminfo.ticker, "1D", high - low)
// Calculate percentage change
perc_change = (brick_size / close) * 100
// Plot the percentage change as a label
label.new(bar_index, high, text=str.tostring(perc_change, "#.##") + "%", color=color.green, textcolor=color.white, size=size.small)
indicator("Renko Percentage Change", overlay=true)
// Get the Renko brick size
brick_size = request.security(syminfo.ticker, "1D", high - low)
// Calculate percentage change
perc_change = (brick_size / close) * 100
// Plot the percentage change as a label
label.new(bar_index, high, text=str.tostring(perc_change, "#.##") + "%", color=color.green, textcolor=color.white, size=size.small)
כתב ויתור
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.
כתב ויתור
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.