[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Trade on gap open?



PureBytes Links

Trading Reference Links

> From:          "Owen Davies" <owen@xxxxxxxxxxxxx>
> To:            <omega-list@xxxxxxxxxx>
> Subject:       Trade on gap open?
> Date:          Thu, 11 Jun 1998 10:34:43 -0400

> It's been a long time since I've played with SuperCharts,
> so maybe it's just my faulty memory (ha!), but I've just
> been trying to write a ystem that buys/sells under various
> conditions on a gap open above/below the previous day's
> range.  For the life of me, I can't figure out any way to
> say, "If (conditions, including the gap), buy/sell today on
> the open."  Am I right in assuming this is just one more

I don't exactly know what you are trying to do, but a gap is just one 
more condition, so you should be able to logically AND it with the 
rest of your conditions -

 IF (conditions AND Open > High[1])   

for example.