Skip to main content

Bull Fear and Bear Fear Expert for Metastock

parker over 15 years ago Metastock

  • Rating:
    0 / 5 (Votes 0)
  • Tags:
    metastock, expert

In Walter Downs’ article “From Terms To Technical Tools” he introduces the Point of Balance Oscillator, two conditions to color bars and two system tests. All of these can be created quite easily in MetaStock 6.5.

To highlight bars based on the Bull Fear and Bear Fear conditions discussed in the article, choose Expert Advisor from the Tools menu, click on the New button and enter the following expert.

Author: Walter Downs

Files

Indicator / Formula

Copy & Paste Friendly
HIGHLIGHTS

Name: Bull Fear
Color: Blue
Condition:

n := 12 {Time periods};
BullFear := (HHV(HIGH,n) - LLV(HIGH,n))/2 + LLV(HIGH,n);
CLOSE > BullFear


Name: Bear Fear
Color: Red
Condition:

n := 12 {Time periods};
BearFear := (HHV(LOW,n) - LLV(LOW,n))/2 + LLV(LOW,n);
CLOSE < BearFear

0 comments

Leave Comment

Please login here to leave a comment.