You can create an indicator to plot on a chart {Indicator builder}
Greater Volume{Name}
MA:=If(V>Mov(V,10,s),1,0);
2V:=If(V>Ref(V,-1)*2,2,0);
MA;2V;
this will plot 1 if volume is greater than the 10 bar moving average of volume
it will plot 2 if the volume is twice as great as the previous volume
You can also use parts of the code in explorations as a filter or experts in the highlight section, it's up to you as to how to use this bit of code.