HIDING TIME CANDLES Merry Christmas to All. I trade the 1 minute chart for scalping the emini futures. That's 360 candles per session that i must watch dance around. The Market goes up , the market goes down and the Market goes sideways. I don't care about sideways- just up and down. The compression areas cause me the most grief-so i'd like those areas to disappear. Using the principles of the NR 7 eg. That shows those 7 candles (or more-if you increase the number of candles in that zone) . So if those "X" number of candles would be blakened or hidden, then that should leave you seeing only the Parabolic up candles approaching that zone-as well as the parabolic downward candles falling from that zone. That would get rid of a lot of candles that i now have to watch gyrate.I don't know if it's possible to actually Not have them print-which would allow for a narrower chart-due to the fewer candles. Or-if they would have to be printed black / or hidden- but still take up the sideways space on the chart. Any help or ideas around this would be appreciated.
hello and welcome.
when asking strangers for help, it is best to assume we don't know what you are talking about and provide as much info as possible. i don't know what nr7 is and i'm not going to go searching for it.
if it is not a paid indicator, then provide a link that describes the rules of the system.
after being able to identify the undesirable bars, it would be simpler to color them black.
partial code example
def hidebar = .... some true/false formula
AssignPriceColor(if hidebar then color.black else Color.CURRENT);
https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Look---Feel/AssignPriceColor
Make sure only one of your loaded studies includes assignpricecolor().
if you have more than one study loaded that uses assignpricecolor() , the bars may be colored unpredictably.
to remove some candles and shift others back in time, is possible, but would require alot of code to handle unknown quantities of candles.
here is an example that shifts the bars from 5 fridays and shifts them together, to the left.
https://usethinkscript.com/threads/...om-1-day-a-week-onto-5-sequential-days.11531/
maybe a different type of chart is what you are looking for?
maybe a range chart ?
https://tlc.thinkorswim.com/center/howToTos/thinkManual/charts/Chart-Aggregation/Range-Charts
how to use range bars
ukspreadbetting