PureBytes Links
Trading Reference Links
|
That one should be most easy beeing to do for
EQUIS rather than for ourselves.
I should recommend a function
TRY(DATA ARRAY, CONDITION, REF),
that returns (plots) a certain value,
for example try(C, RSI>66, +1)
where REF could/should be the constant 1.
Then we could write
Cond:= xyz*abc;
BuySell:= if (try(c, Cond, +1) > Cond));
BuySell;
What do you think...
......
-----Original Message-----
From: jr <mail@xxxxxxxxxxxxxx>
To: metastock@xxxxxxxxxxxxx <metastock@xxxxxxxxxxxxx>
Date: Mittwoch, 28. Oktober 1998 17:09
Subject: How to do it?
>Hi everyone,
>I have got a problem and would be very
>happy if anyone could help me.
>
>I have set up an indicator that tells me if I should
>go long or short. I use it in the advisor I and like to know
>at which minimum/maximum value on the next day,
>i.e. tomorrow, a buy or a sell signal would beeing issued.
>
>Is it possible to have the MS formula language do that for me.
>At the time I just have to try it out, which is not really nice.
>
>Thank you
>JR
>
>
>
>
|