Gamestudio Links
Zorro Links
Newest Posts
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
Release 2.68 replacement of the .par format
by Martin_HH. 09/23/25 20:48
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
0 registered members (), 18,046 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 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