Converting a loop into vector operation - trading strategy

1 view (last 30 days)
I am writing a trading strategy in MATLAB. At certain points dictated by an input array the trades are to be closed/opened. Also there is a stop loss parameter that can only close the trade. Currently I am using a while loop to go through each entry of the array which takes a lot of time for larger data sets. Are there any MATLAB functions that can speed up the process or there is any way I can convert the loop to vector operations speeding up the process?
  1 Comment
AC
AC on 4 Jul 2012
Hi, I am not sure I get your question, would you please add a sample of your code along with more explanation of what you are trying to do?

Sign in to comment.

Answers (1)

Daniel Shub
Daniel Shub on 4 Jul 2012
In general MATLAB loops are no longer "slow". You need to figure out what is taking the time in your loop. The profiler can help with this, but you might also want to use tic/toc. Once you figure out what is taking the most time, you can optimize that.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!