PureBytes Links
Trading Reference Links
|
Paul wrote:
>
> how can I do that with an "if" statement?
> if(colA=1,"go to colB","forget the whole thing") - how to arrange that?
> now say colA was true and we moved to colB- but HOW we moved? say we're in
> colB now should I put another if(colB=1,"go to colC","forget it")
>
> thanks guys
> Paul
>
> > within the last two weeks the following things happened in this
> > particular
> > > order
> > > 1) secret oscillatorA fired, THEN
> > > 2) super-secret oscB fired, THEN
> > > 3) super-ultra-duper systemC fired
> > >
> > > Explorer checks for #1 then (and only then) #2 and so on
> > >
> > > Is that possible in MetaStock?
> > >
> > > thank you
> > > Paul
> >
> > If I understand your question, a 'if' statement will work. My own
> > explorer uses a similiar cascading 'if' statement structure in it.
> >
> > Bruce Giroux
> >
> >
Paul, do you need to look at a column of data historically or just the
most recent date? If the most recent date is adequate, insert the
formulas you use in those columns into the cascading if statement
structure. As I understand your system logic,
If(((secret oscillatorA fired,(if (super-secret oscB fired),(if
(super-ultra-duper systemC fired), false)false)false)
The syntax above isn't quite correct, but I found I was able to make my
system accomplish a cascading if statement structure. I hope this
helps.
Bruce Giroux
|