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

RE: Strategy performance question...



PureBytes Links

Trading Reference Links

> The other route is only for a programmer (I have taken it).
> 
> Use the workchart scanner to run the strategy on all stocks
> desired. Output one line with information every time the system
> buys or sells. Run a program on the output file, generating a
> report for total test results. 

Here's a non-programming approach.  It's painful but it works.

* Run the system on all the symbols you want to test.
* For each symbol, write out the trade-by-trade report in spreadsheet
  format.
* Read all the spreadsheets into Excel.
* Combine them all (cut & paste) into one worksheet.
* Sort them by date -- I use the closing date of the trade.
* Add a column to compute the running equity, by adding the profit
  from each trade.
* Voila!  You have a portfolio result.  You can chart it or whatever
  you choose.

Gary