I am trying to wire a scrip which will trade a different fund
depending on the time of year. As in if it is Sept 1 buy FSAGX and
sell Oct 1. Then if it is Oct 25 Buy FSELX and sell iif ti is Jan 30.
I tried the following hoping it may be as simple as this but it
will only trade the current symbol on the screen.
SetForeign("FSAGX",True,True);
//Sept For Gold FSAGX
Buy = ( Month() == 8) AND Day() > 1;
Sell = ( Month() == 10 ) AND Day() > 1;
RestorePriceArrays(True);
SetForeign("FSELX",True,True);
// Nov - Jan For FIDELITY Electroniics FSELX
Buy = Month() == 10 AND Day() > 1;
Sell = Month() == 3 AND Day() > 1;
RestorePriceArrays(True);
SetForeign("FSESX",True,True);
// Nov - Jan For ENERGY Services FSESX
Buy = Month() == 1 AND Day() > 1;
Sell = Month() == 6 AND Day() > 1;
RestorePriceArrays(True);
THANKS Ernie