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

Notification

Icon
Error

Options
Go to last post Go to first unread
Joy55  
#1 Posted : Sunday, August 1, 2010 6:44:00 AM(UTC)
Joy55

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 6/2/2010(UTC)
Posts: 18

Hello,
Pl help me to write explorations -:
1) For Buy
Daily low is less than or equal to 30 days EMA and close is greater than 15 days EMA.
2) For Sell
Daily high is greater than 30 days EMA and close is less than or equal 15 days EMA.
Your guidance will be appreciated.
Regards.
johnl  
#2 Posted : Sunday, August 1, 2010 6:39:06 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

I would start with writing an indicator something like:

a1:=L<=Mov(C,30,E);
a2:=C>Mov(C,15,E);
a3:=a1*a2;
a3

Then putting this indicator in a new exploration.
You can copy the logic and do the sell indicator.




Joy55  
#3 Posted : Monday, August 2, 2010 7:32:37 AM(UTC)
Joy55

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 6/2/2010(UTC)
Posts: 18

Thanks johnl for your reply.
I have no experience in writing indicator or explorations.But I will try and come back with results.
Regards.
Joy55  
#4 Posted : Tuesday, August 3, 2010 7:48:59 AM(UTC)
Joy55

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 6/2/2010(UTC)
Posts: 18

I tried but not able to write the formula.
Awaiting Help.
Regards.
MSTrainer  
#5 Posted : Wednesday, August 4, 2010 3:06:17 PM(UTC)
MSTrainer

Rank: Newbie

Groups: Registered, Registered Users
Joined: 6/16/2008(UTC)
Posts: 3
Location: Brandon, FL

Joy55 wrote:
Hello,
Pl help me to write explorations -:
1) For Buy
Daily low is less than or equal to 30 days EMA and close is greater than 15 days EMA.
2) For Sell
Daily high is greater than 30 days EMA and close is less than or equal 15 days EMA.
Your guidance will be appreciated.
Regards.

In your Explorer, try this

Underneath the "A" tab, enter:
Low <= Mov(Close, 30, E) AND
Close > Mov(Close, 15, E) {Did you want this to be greater than or equal to?}

B tab:
High >= Mov(Close, 30, E) AND
Close <= Mov(Close, 15, E)

When you run the exploration, you'll either get a 1 or a 0 in the column. You can click on the column headings and sort the data so that all of your buy signals are grouped together or all of your sell signals are grouped together.

If you want to run a scan and only see the buy signals for example, go to the Filter tab and type in "colA" and you'll only see the securities that met the formula criteria that you entered in the A tab.

Hope this helps.

Joy55  
#6 Posted : Saturday, August 7, 2010 1:20:59 PM(UTC)
Joy55

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 6/2/2010(UTC)
Posts: 18

Thanks MSTrainer for your valued help.
Regards.

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.