Metastock Indicator Formula |
Lowest Low Closing in week |
Some times you wanted to know about lowest low price of the closing in a week for assessing the significance of current price in the pattern. This indicator will help you in to achieve your goal in finding current price for comparison with lowest low price of the closing during last week.
Good Trading
Asad Tirmazie
Technical and Trading Strategist.
|
Formula: |
x:=DayOfWeek()>=Ref(DayOfWeek(),1);
x1:=If(x,1,0);
x2:=DayOfWeek()<=Ref(DayOfWeek(),-1);
ValueWhen(1,x1>0,LowestSince(1,x2 ,CLOSE )) ; |
|
|