以多倉為例
variable:n=0;
variable:m=0;
if 開倉條件 and holding=0 then begin
buy;
n:=h;
m:=l;
end
if h>n then n:=h;
if l<m then m:=l;
最大盈利:=(n-enterprice)*multiplier;
最大虧損:=(l-enterprice)*multiplier;
if time=closetime(0) then begin
n:=0;
m:=0;
end