Gamestudio Links
Zorro Links
Newest Posts
Camera always moves upwards?
by clonman. 11/13/25 14:04
brokerCommand PLOT_HLINE parameters
by M_D. 11/13/25 10:42
ZorroGPT
by TipmyPip. 11/10/25 11:04
Training with the R bridge does not work
by frutza. 11/05/25 00:46
Zorro 2.70
by opm. 10/24/25 03:44
Alpaca Plugin v1.4.0
by TipmyPip. 10/20/25 18:04
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
5 registered members (Grant, AndrewAMD, ozgur, Quad, TipmyPip), 29,980 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sheliepaley, Blueguy, blobplayintennis, someone2, NotEBspark
19177 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
plotting Trail #483710
07/14/21 15:57
07/14/21 15:57
Joined: Mar 2017
Posts: 15
edu Offline OP
Newbie
edu  Offline OP
Newbie

Joined: Mar 2017
Posts: 15
Hi all


I have a code that plots the initial Stop Loss level of every trade I open in a simple strategy.
Does anyone have an idea on how I could plot the trailing Stop Loss?

Thanks in advance, here's the code


Code
function run() 
{

set(PLOTNOW);

int Days = 5;
vars Close=series(priceClose());

Stop=2*ATR(100);
Trail=2*ATR(100);

if(
NumOpenLong < 1 
and Close[0] >= Close[Days]
) 
enterLong();


static var SL ; if(NumOpenLong < 1 and Close[0] >= Close[Days]) {SL  = Close[0]-Stop;} //Stop Loss
plot("Stop", SL, 0, PURPLE);
   
}

Re: plotting Trail [Re: edu] #483711
07/14/21 18:14
07/14/21 18:14
Joined: Sep 2003
Posts: 929
Spirit Offline

Moderator
Spirit  Offline

Moderator

Joined: Sep 2003
Posts: 929
I think that can be done in a TMF. Plot TradeStopLimit.

Re: plotting Trail [Re: Spirit] #483714
07/15/21 07:44
07/15/21 07:44
Joined: Mar 2017
Posts: 15
edu Offline OP
Newbie
edu  Offline OP
Newbie

Joined: Mar 2017
Posts: 15
Thanks!


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1