logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
picasso  
#1 Posted : Wednesday, December 11, 2013 3:23:31 AM(UTC)
picasso

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/5/2012(UTC)
Posts: 7

Hello, I need help for this tricky indicator for Metastock. I found it very useful with other software. I call it Fearzone. It´s actually two indicators. Indicator one: FZ1 Value1= highest average price of the last 22 days minus the average price of today. (Average price is the sum of the open, close, high, and low /4) Value2= the highest average price of the last 22 days. FZ1 indicator= value1/value2 The limit line in the FZ1-zone= Bollingerband(200,1) on the FZ1 indicator. Indicator two: FZ2 Value1=average price. (O+C+H+L/4) Value2= 22 period moving average of the average price. FZ2 indicator= value1 – Value2. The limit line in the FZ2-zone=Bolingerband(200,1) on the FZ2 indicator. I enclosed a picture how it should look. Many thanks in advance.
John S  
#2 Posted : Tuesday, December 31, 2013 11:44:23 AM(UTC)
John S

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/9/2012(UTC)
Posts: 169

I'm not clear on what you mean by the "limit line" using the Bollinger Bands. So you'll need clarify. But I believe what I've written below gets you closer.
___________
Create a new custom indicator named "Fear Zone 1" with the following:

AvgPrice:=(O+H+L+C)/4;
HighestAvgPrice:= HHV(AvgPrice,22;
Diff:=AvgPrice-HighestAvgPrice;
FearZone1:=Diff/HighestAvgPrice
FearZone1

Create a new custom indicator named "Fear Zone 2" with the following:

AvgPrice:=(O+H+L+C)/4;
MovAvgOfAvgPrice:= Mov(AvgPrice,22,S);
FearZone2:=AvgPrice-MovAvgOfAvgPrice;
FearZone2
______________________


Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.