[amibroker] Re: Adjust Volumn Histogram for Spikes ?

2006-07-03 Thread Rick
Dean: here is a formula that i use, hope it helps Rick : VolFactor = 2.5 ; // use this to adjust the amount to truncate Per1 = 50 ; MaxVol = VolFactor*MA(Volume,Per1); col1 = IIf( Close >= Ref( Close, -1 ), colorBlack,colorRed); col2 = IIf(Volume > MaxVol,colorBlue, colorLightGrey); VolTrun

[amibroker] Re: Adjust Volumn Histogram for Spikes ?

2006-07-05 Thread troll
Many thanks Rick - that works like a charm . Dean --- In amibroker@yahoogroups.com, "Rick" <[EMAIL PROTECTED]> wrote: > > Dean: > here is a formula that i use, hope it helps > Rick : > > VolFactor = 2.5 ; // use this to adjust the amount to truncate > Per1 = 50 ; > > MaxVol = VolFact