Rank: Advanced Member
Groups: Registered, Registered Users Joined: 7/1/2007(UTC) Posts: 33
|
Hi,
I am scanning for RSI double top in the monthly indicator.
I have set the exploration periodicity to monthly and exploration
date to 'most recent date' option, the data loading is set to
2000 already, sufficient data to explore.
Below is my exploration code, run the first
time and save the result
On second run, change the "ValueWhen(2, (above70 OR below70), RSIval)"
to scan for the 2nd top of the RSI of the previous exploration result.
However, the result is still not good to my expectation.
Anyone can advise or comment me how to improve it
Some of the result found to contain only 1 top of the RSI,
how can I ensure double top of the RSI is found only.
Thank you
Exploration code
================
RSIval := RSI(14);
above70 := Cross(70,RSIval);
below70 := Cross(RSIval,70);
ValueWhen(1, (above70 OR below70), RSIval)
AND
Alert((above70 OR below70),10)
AND
YEAR() >= 2006;
|
|
|
|
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.