Trailing Stop Loss

P

PeCoNe

I need to keep track of a so called Trailing Stop Loss.
How can i do that?
Bye Peter
 
P

PeCoNe

Op 2013-08-21 16:45, PeCoNe schreef:
I need to keep track of a so called Trailing Stop Loss.
How can i do that?
The formula is:
if LastPrice * Pct > StopLoss then
StopLoss = LastPrice * Pct
 
Top