PureBytes Links
Trading Reference Links
|
I have a problem handling days with no data in the following
situation:
IN AA:
Buys = MyRule1;
Sells = MyRule2;
AddToComposite(Buys,"BS","O");
AddToComposite(Sells,"BS","H");
IN IND BUILD:
Buys = Foreign("BS","O");
Sells = Foreign("BS","H");
Plot(Buys/Sells,"",4,1);
How do I eliminate days with no data (holidays etc) which result in
the plot droping to zero on those days?
Keith (B)
|