Metastock Indicator Formula |
Highest high closing in a week |
Some times you wanted to know about highest high 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 with comparison of highest high 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,HighestSince(1,x2 ,CLOSE )) ; |
|
|