Thanks a lot! That was what I was looking for.
I guess it is possible to get the price, simply by writting
ValueWhen(LowestClose, Close); right?
BTW, when and how do you use your CurCloseToPastClose... Seems really
interesting as a concept.
Louis
2008/7/21 Thomas Z. <
tzg@xxxxxxxxxxxxxxxxxxx>:
Hello,
You can do this with the following code:
Period = 20;
LowestClose= LLV(C, Period);
RSIatLowestClose = ValueWhen(LowestClose, RSI());
CurCloseToPastClose = C / LowestClose;
CurRSI_To_RSIatLowestClose = RSI() / RSIatLowestClose;
Thomas
www.PatternExplorer.com
From:
amibroker@xxxxxxxxxxxxxxx [mailto:
amibroker@xxxxxxxxxxxxxxx] On Behalf
Of Louis Préfontaine
Sent: Monday, July 21, 2008 11:02 PM
To:
amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Easy question again
Hi,
Another easy question here. (I'm still juggling with the difficult things
and thanks again to the people who helped me; but why not add this little
twist while I'm here).
I'd like to use to know how to use valuewhen to make it possible to know
what was the price at a particular time.
I had a look in the manual to many files which unfortunately had zigzag
functions in them. This is not what I'm looking for.
What I'd like to do is to compare the price right now to the LLV C of the
last X periods and to get the value of RSI of that LLV C at that time to
compare it with the RSI right now.
Is this possible, without Zig function?
Thanks,
Louis