Hi firecrest. I tried that
Code:
#define CURVES	1260
#define SAMPLES	1000
#define BUCKET	0.0005


But the result looks the same as above. Seems like BUCKET is not really used in the Histogram, but Bucket instead:

Code:
void _plotHistogram(string Name,var Value,var Step,int Color)
{
  var Bucket = floor(Value/Step);
  plotBar(Name,Bucket,Step*Bucket,1,SUM+BARS+LBL2,Color);
}



To be honest, I really have difficulties understanding the bootstrap script.