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

Re: Multi-Symbol chart system



PureBytes Links

Trading Reference Links

I think you mean:

 If value2 > value1 then...

Bob Fulks

--

At 9:01 AM -0700 9/26/01, Victor C wrote:

>Woops,
>
>I got a little overconfident and wrote it without
>veryfing it in the PowerEditor. The strategy should
>look like this:
>
> If Close[1] of Data2<>0 then
>    value1 = Close of data2 / Close[1] of Data2;
> If Close[1] of Data3<>0 then
>    value2 = Close of data3 / Close[1] of data3;
> 
> If value2 > value3 then
>    buy next bar at open
> else
>    sell next bar at open;