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.
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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.