Zu häufiges Handeln-Easy Language Problem | |
Tag,
ich will, dass meine Strategie ein Signal nur einmal handelt und erst wieder handelt, wenn das Set-up von neuem eintritt. Leider führt dieser Code nach dem Eintritt des Set-ups und anschließendem Trade immer weitere Trades aus.
Wie kann ich dies verhindern?
Danke für die Hilfe
//////////////////////////////////////////
Inputs: FastLength(7),SlowLength(26),prozenttrail(0.5);
Vars:EntryLong(0),EntryShort(0),Fast(0),Slow(0);
Fast = Average(Close,FastLength);
Slow = Average(Close,SlowLength);
If Fast crosses above Slow then EntryLong = High +1 point;
If Fast > Slow then Buy("Long") next Bar at EntryLong Stop;
If Fast crosses below Slow then EntryShort = Low -1 point;
If Fast < Slow then Sell("Short") next Bar at EntryShort Stop;
ExitLong next Bar at Slow -1 point Stop;
ExitShort next Bar at Slow +1 point Stop;
SetDollarTrailing(close/100*prozenttrail*bigpointvalue);
Setexitonclose;
|