De stop loss order wordt door traders en beleggers gebruikt om hun posities in de markt te beschermen. In deze aflevering bespreekt Marcel van Vliet de vier manieren om het koersniveau te bepalen waarop de stop loss order het meest effectief geplaatst kan worden.
// Periode.
p = 14
// Average True Range X.
ATRx = AverageTrueRange[p](close) *1.2
// ATRts = ATR Trailing Stop.
// Kantelpunt.
IF close crosses over ATRts THEN
ATRts = close – ATRx
ELSIF close crosses under ATRts THEN
ATRts = close + ATRx
ENDIF
// Berekening van de ATR Trailing Stop tijdens de trend.
IF close > ATRts THEN
ATRnew = close – ATRx
IF ATRnew > ATRts THEN
ATRts = ATRnew
ENDIF
ELSIF close < ATRts THEN
ATRnew = close + ATRx
IF ATRnew < ATRts THEN
ATRts = ATRnew
ENDIF
ENDIF
return ATRts as “Stop Loss Afstand”
Lees meer over het één OP één coaching traject van Traders Trefpunt.
De boeken van Marcel van Vliet.
Lees meer over De Harde Kern, de community van Traders Trefpunt.
De Traders Trefpunt podcast is een eigen initiatief. Help mij met een bedrag dat jij het waard vindt om ook de volgende afleveringen mogelijk te maken.
Cookie | Duur | Omschrijving |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |