- Katılım
- 23 Eki 2020
- Mesajlar
- 1,828
From Terms To Technical Tools 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 canbe created quite easily in MetaStock 6.5. To highlight bars based on the Bull Fear and Bear Fear conditions discussedin the article, choose Expert Advisor from the Tools menu, click on theNew button and enter the following expert: |
|
Bull Fear and Bear Fear Expert 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 |
Source / From: |