Gamestudio Links
Zorro Links
Newest Posts
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
Data from CSV not parsed correctly
by EternallyCurious. 04/25/24 10:20
Trading Journey
by howardR. 04/24/24 20:04
M1 Oversampling
by Petra. 04/24/24 10:34
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Scripts not found
by juergen_wue. 04/20/24 18:51
zorro 64bit command line support
by 7th_zorro. 04/20/24 10:06
StartWeek not working as it should
by jcl. 04/20/24 08:38
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (EternallyCurious, AndrewAMD, TipmyPip, Quad), 889 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Mega_Rod, EternallyCurious, howardR, 11honza11, ccorrea
19048 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