Code covered by the BSD License  

Highlights from
Trading strategy back tester

image thumbnail
from Trading strategy back tester by Donny Lee
This program shows the profit and lost of using different trading strategies on Singapore stocks.

graphtest.m
x = [0:1:100];
y = (sin(x)).^2;
y1 = sqrt(x);
hold on;
h1 = plot(x,y1);
h2 = plot(x,y);
hold off;
grid on;
delete h1;

Contact us