Converting a loop into vector operation - trading strategy
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
AC
el 4 de Jul. de 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?
Respuestas (1)
Daniel Shub
el 4 de Jul. de 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.
0 comentarios
Ver también
Categorías
Más información sobre Transaction Cost Analysis en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!