Clear Filters
Clear Filters

I get an error in my for statement it says i need to add and end and i did

1 view (last 30 days)
l_s=[];
% test a trade
for i=1:21
if abs(stock_t(3).price(i)-stock_t(5).price(i))>top5(1,4)
for ii=i:21
if stock_t(3).price(i)>stock_t(5).price(i)
l_s(i,1)=-1*stock_t(3).price(i);
l_s(i,2)=1*stock_t(5).price(i);
else
l_s(i,1)=-1*stock_t(3).price(i);
l_s(i,2)=1*stock_t(5).price(i);
end

Accepted Answer

Walter Roberson
Walter Roberson on 21 Nov 2017
MATLAB is not python. You need an end for the inner if, you need an end for the inner for, you need an end for the outer if, you need an end for the outer for -- four ends in total. You only have one end

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!