Another feature addition could be to add a parameter to show/hide the TPO profile (histogram) at all?
Let's say I want only see the VAH/VAL and POC - but not the profile itself (with its thousands of rectangles 😉)
	
		
								
								
				
			Let's say I want only see the VAH/VAL and POC - but not the profile itself (with its thousands of rectangles 😉)
		Code:
	
	90c91 --- > input bool ShowHistogram = true; // Show TPO profile/histogram? 1095c1096,1097 < PutDot(price, sessionstart, range, bar - sessionstart, rectangle_prefix); --- > if (ShowHistogram) > PutDot(price, sessionstart, range, bar - sessionstart, rectangle_prefix); 1104c1106 < if (ShowSinglePrint) --- > if ((ShowSinglePrint) && (ShowHistogram))
	
	
			
			
