Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 32
|
Hi,
I want some help from Senior member to create a exploration formula from following condition-
(1) To serach the securites which have their RSI is Greater than 30 but less than 50 and price/signal line in upward direction.
Thx
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 3/7/2005(UTC) Posts: 1,346
|
hey money.... until one of the seniors speak up here might be something to look at.... just change the rsi value to suit, also for the upward price movement you might want to adjust the ma value...... in the filter section put cola..... at first glance that appears to be trying to catch upward movement, however both the price and rsi could be falling with those conditions still being true....h
RSI(14)>30;
RSI(14)<50;
Mov(C,5,S)> Ref(Mov(C,5,S),-1)
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users Joined: 3/19/2005(UTC) Posts: 2,995
Was thanked: 14 time(s) in 10 post(s)
|
From Merriam-Webster
Etymology: Middle English, from Latin, from senior, adjective
1 : a person older than another <five years my senior>
2 a : a person with higher standing or rank b : a senior fellow of a college at an English university c : a student in the year preceding graduation from a school of secondary or higher level
3 capitalized : [color=red:68f80affc5]a member of a program of the Girl Scouts for girls in the ninth through twelfth grades in school[/color]
4 : SENIOR CITIZEN
Not sure if h fits into category #3 or #4... or both... :lol:
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 32
|
hayseed wrote:hey money.... until one of the seniors speak up here might be something to look at.... just change the rsi value to suit, also for the upward price movement you might want to adjust the ma value...... in the filter section put cola..... at first glance that appears to be trying to catch upward movement, however both the price and rsi could be falling with those conditions still being true....h
RSI(14)>30;
RSI(14)<50;
Mov(C,5,S)> Ref(Mov(C,5,S),-1)
Dear Hayseed,
Thanks for your help.
But Bro, if we want to search that securities which has their RSI value in between 30-50 range. For Example- if we have three securites A, B and C and their RSI value 33, 59 and 41 respectively. We want to search only A and C not B. Then what is the formula for this condition. Please help me.
Thx,
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users Joined: 3/19/2005(UTC) Posts: 2,995
Was thanked: 14 time(s) in 10 post(s)
|
Here is one way... I'm sure there are others. :)
[code:1:a775e7f0c4]ColA [RSI]
RSI (14)
ColB [Trend]
Mov(C,5,S)> Ref(Mov(C,5,S),-1)
Filter
ColA>30 AND ColA<50 AND ColB =1[/code:1:a775e7f0c4]
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 3/7/2005(UTC) Posts: 1,346
|
hey money.... that will be meta's syntax 'ooooppps'....... didn't notice i had for some reason used the ';' instead of 'and' ..... sorry about that.... and you could include a column like g did which would give you the actual rsi value..... again you might want to adjust the ma value or perhaps increase (-1) part......h
column a
RSI(14)>30 and
RSI(14)<50 and
Mov(C,5,S)> Ref(Mov(C,5,S),-1)
filter
cola
-------------------------
|
|
|
|
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)
|
RSI(14)>30 and
RSI(14)<50 and
Mov(C,5,S)> Ref(Mov(C,5,S),-1)
Still leaves you in no man's land, the rsi is still bearish and while the Ma has rose for a day, there is no telling if it will retrace below 30 for a possible divergence signal
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 3/7/2005(UTC) Posts: 1,346
|
hey henry.... that was the reason for the at first glance that appears to be trying to catch upward movement, however both the price and rsi could be falling with those conditions still being true part of my orignal reply.... kinda was hoping you'd have a neater way to code it.... thought about using bbands or some channel type formula.... thanks....h
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 32
|
Thanks to all respected person (hayseed,g_stockman,henry1224) for help me. =D>
|
|
|
|
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)
|
I would add some sort of trend factor to look for retracements
RSI(14)>30 and
RSI(14)<50 and
Mov(C,5,S)> Ref(Mov(C,5,S),-1) and
Mov(C,5,S)>Mov(C,50,S)
|
|
|
|
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.