Hello Members,
Here is the small formula which I found somewhere, Maybe usefull for others.Thanx.
Formula:
-------
_SECTION_BEGIN("Up Low Volume");
UpVol = ValueWhen(C > O, V);
DownVol = ValueWhen(C < O, V);
Period = Param("Period",3,2,10,1);
UpVolAvg = EMA( UpVol, Period ) ...