try this, just add line for each symbol Buy = (( Month() == 8) AND Day() > 1 and Name() == "FSAGX") or (( Month() == 10) AND Day() > 1 and Name() == "FSELX"); Sell = ( Month() == 10 ) AND Day() > 1 and Name() == "FSAGX" or (( Month() == 3) AND Day() > 1 and Name() == "FSELX");
-- Cheers Graham Kav AFL Writing Service http://www.aflwriting.com On 01/12/2007, Ernie Newman <[EMAIL PROTECTED]> wrote: > Thanks but! The symbols change but the dates are always the same. > The first symbol buys on 8/2 and sells on 10/1 but so do the other 2 > symbols. And that's only if I take out SetForeign statement > else only the first symbol it scanned. What is WRONG? Do I need a > begin and end statement I don't see one in the Help area? > Thanks > > --- In [email protected], Dale Butkowski <[EMAIL PROTECTED]> > wrote: > > > > Try this: > > Buy = ( Month() == 8) AND Day() > 1 and Name() == "FSAGX"; > > Sell = ( Month() == 10 ) AND Day() > 1 and Name() == "FSAGX"; > > > > Run on all stocks or better yet a watchlist containing the Fido > Selects. > > > > dale b > > > > > 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
