Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (AndrewAMD, Nymphodora, Quad), 923 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
How to plot stop TradeStopLimit #481099
08/06/20 15:03
08/06/20 15:03
Joined: May 2020
Posts: 45
A
AdamWu Offline OP
Newbie
AdamWu  Offline OP
Newbie
A

Joined: May 2020
Posts: 45
For open_trades, I would like to plot the min price (where trade will stop loss), and max price (where trade will take profit). I tried this, but:
1. Are TradeTrailLimit, TradeStopLimit the right parameters? I set Stop, Trail, TrailStep, and TrailSlope.
2. They are plot to a new chat, how can I plot them to the main price chart?

Code
for(open_trades) {
    	plot("Dotted",TradeTrailLimit,DOT,RED);
	plot("Dotted",TradeStopLimit,DOT,GREEN);
}

Re: How to plot stop TradeStopLimit [Re: AdamWu] #481115
08/07/20 02:42
08/07/20 02:42
Joined: Apr 2008
Posts: 585
Austria
Petra Offline
Support
Petra  Offline
Support

Joined: Apr 2008
Posts: 585
Austria
The MAIN type parameter goes back to the main chart.

Re: How to plot stop TradeStopLimit [Re: AdamWu] #481117
08/07/20 07:46
08/07/20 07:46
Joined: Mar 2019
Posts: 357
D
danatrader Offline
Senior Member
danatrader  Offline
Senior Member
D

Joined: Mar 2019
Posts: 357
plot("Dotted",TradeTrailLimit,MAIN|DOT,RED);
plot("Dotted",TradeStopLimit,MAIN|DOT,GREEN);

Also you want not to name both "Dotted", rather name them Dotted1 and Dotted2.

https://zorro-trader.com/manual/en/plot.htm
MAIN - for plot, plot this and all following curves in the main price chart.


Moderated by  Petra 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1