Hey im tinkering with simple code to figure this out but cant seem to get what i want. Im just trying to get an indicator for the % a bull bar closes from its high as well as the % a bear bar closes from its low when I hover over any bar on a 5 minute chart.
plot pctCloseFromHigh = (high - close);.... ;
plot pctCloseFromLow = (close - low);
these are the 2 lines but cant seem to get the value i want in percentage. any help would be great, thanks
plot pctCloseFromHigh = (high - close);.... ;
plot pctCloseFromLow = (close - low);
these are the 2 lines but cant seem to get the value i want in percentage. any help would be great, thanks
Last edited by a moderator: