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

Notification

Icon
Error

Options
Go to last post Go to first unread
pru9871  
#1 Posted : Monday, November 27, 2006 10:44:56 AM(UTC)
pru9871

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/27/2006(UTC)
Posts: 4

how to find out......while volume increase?

please help me.........tq

henry1224  
#2 Posted : Monday, November 27, 2006 5:13:16 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)

are you looking for Volume > than a Moving Average of Volume?

If(V>Mov(V,10,s),1,0)

or are you looking at todays volume is twice as much as yesterdays volume?

If(V>Ref(V,-1)*2,1,0);

pru9871  
#3 Posted : Saturday, December 9, 2006 3:13:44 AM(UTC)
pru9871

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/27/2006(UTC)
Posts: 4

how to put it to metastock? how to use it?
henry1224  
#4 Posted : Saturday, December 9, 2006 6:07:30 AM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)

You can create an indicator to plot on a chart {Indicator builder}

Greater Volume{Name}

MA:=If(V>Mov(V,10,s),1,0);

2V:=If(V>Ref(V,-1)*2,2,0);

MA;2V;

this will plot 1 if volume is greater than the 10 bar moving average of volume

it will plot 2 if the volume is twice as great as the previous volume

You can also use parts of the code in explorations as a filter or experts in the highlight section, it's up to you as to how to use this bit of code.

pru9871  
#5 Posted : Sunday, December 10, 2006 6:40:17 AM(UTC)
pru9871

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/27/2006(UTC)
Posts: 4

thank you henry.............

how can i set MACD buy/sell signal into my chart.

can u teach me how to do it.......step by step................thank you very much.......henry

henry1224  
#6 Posted : Sunday, December 10, 2006 8:31:03 AM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)

Now you want me to develop a system for you!

You can have the signals from an indicator{in a binary form} or you can show the signal with arrows using an expert or color the bar with a highlight from the expert.

You didn't mention if the signal comes from a standard length MACD or from a custom MACD, and if you wanted it to show a signal from the crossing above the signal line?

Did you want to use a trend filter, to only accept trades in long positions when the trend is rising?

Users browsing this topic
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.