home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / tas412.zip / RSI.PTS < prev    next >
Text File  |  1991-07-04  |  283b  |  13 lines

  1. #PROFIT_TEST  BOTH 20000
  2. #OUTPUT_FILE 'RSIPT.LST'
  3. #PROFIT_COMM  SCHWAB ROUNDLOTS 0 - TODAYS CLOSE
  4. #PROFIT_OUTPUT  DETAIL
  5. F1 : ARRAY;
  6. PLOT BEGIN
  7. F1 = RSI(14);
  8. END; { of PLOT BEGIN}
  9. C1 = F1[-1] < 30 AND F1 > 30;
  10. C2 = F1[-1] > 70 AND F1 < 70;
  11. BUY WHEN (C1);
  12. SELL WHEN (C2);
  13.