Hallo,
in der neuen Ausgabe ist die 3 L-R Pattern Strategie beschrieben ich habe das dann gleich mal getestet aber bei mir sieht das mies aus,jetzt meine Frage:wo und was muss ich eingeben bei Startkapital 100.000$ "Riskieren Sie ein Prozent des Kapitals pro Trade für alle Trades"
Ich hoffe die Frage war jetzt nicht allzu dämlich!
gruss arnold
Description:3L-R Pattern Entry Signal
****************************************}
{ To Do Step 1 of 2: Replace with the criteria that will cause a buy order.}
if l[1] < l[2] and l[2]< l[3] and h[0] > h[3] then buy ("3L-R") next bar on the open;
{ To Do Step 1 of 2: Replace "Signal Name" with a short description of the signal.}
variables:profitprice(0),stopprice(0);
input:ptarget(12),stopl(4);
profitprice=entryprice*(1+ptarget/100);
stopprice=entryprice*(1-stopl/100);
if marketposition=1 then begin exitlong("3L-R Exit") at profitprice limit;
exitlong ("3L-R Stop") at stopprice stop;
end;
|