Converting a loop into vector operation - trading strategy

1 Ansicht (letzte 30 Tage)
Abdul
Abdul am 4 Jul. 2012
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 Kommentar
AC
AC am 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?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Daniel Shub
Daniel Shub am 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.

Kategorien

Mehr zu Transaction Cost Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by