Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
Jumnong Khamngam  
For smoothness, there are three main conditions left (Break-Even, ATR Trailing, Step Trailing):
Enable ATR-based trailing stop = true;
Enable break-even  = true;
Enable step-based trailing = true;
Enable multi-level trailing = false;

Enable safety SL  = false;

Because:

Break-Even (Item 1): Keep it first because it's basic protection (move SL to break-even + lock a little). It's not too aggressive, helps prevent losses, but doesn't cap profits significantly.
ATR Trailing (Item 2): Keep it because it's adaptive to volatility (using ATR * multiplier). A wide ATR provides more room for profit runs, which is good for volatile markets.
Step Trailing (Item 3): Keep it because it locks stepwise (not immediately tight, but waits for the step to be full), allowing profit runs between steps longer than real-time trailing.
Jumnong Khamngam  
Version 1.3 adds a function to Scan Strateg with 3 time frames, filtering open orders more accurately, and adjusting trade opening and closing times based on daily news events to minimize losses. Closing trades on Fridays (to prevent the EA from trading on Fridays) or closing the EA during important news events can be very beneficial.