Gamestudio Links
Zorro Links
Newest Posts
Trading Journey
by howardR. 04/28/24 09:55
basik85278
by basik85278. 04/28/24 08:56
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Help with plotting multiple ZigZag
by M_D. 04/26/24 20:03
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
M1 Oversampling
by jcl. 04/26/24 11:12
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (blaurock), 750 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
wandaluciaia, Mega_Rod, EternallyCurious, howardR, 11honza11
19049 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
TradeStopLimit Issue with Portfolio #482302
01/26/21 16:12
01/26/21 16:12
Joined: Jan 2021
Posts: 4
F
Figurehunter Offline OP
Guest
Figurehunter  Offline OP
Guest
F

Joined: Jan 2021
Posts: 4
I am trying to plot the TradeStopLimit as a visual comparison between what we want vs what the computer is actually doing. I have no problem with one Forex pair and it works great....

[Linked Image]

However, if I use a portfolio of pairs it uses the previous pair' s TradeStopLimit instead of the AssetBox pair. I have tried a number of filters to remove this relationship but no luck.

[Linked Image]

Code
// TradeStopLimit Sandbox ///////////////////////
function run() 
{
	set(PLOTNOW);
	LookBack  = 0;
	StartDate = 20190605;
	EndDate   = 20190610;
	BarPeriod = 30;

	while(asset(loop("GBP/USD","EUR/USD")))
	// while(asset(loop("EUR/USD")))
	{
	vars Prices = series(price(0));
 
	Stop = 20*PIP;
	Trail = 5*PIP;

		printf("\n%s************************************** %s %s %.5f L%d S%d",strdate(YMDHMS,0),Asset,AssetBox,(var)TradeStopLimit, NumOpenLong,NumOpenShort);

		if(strcmp(Asset,AssetBox)==0)
			if(NumOpenLong+NumOpenShort > 0)
		{
			printf("\n%s$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ %s %s %.5f L%d S%d",strdate(YMDHMS,0),Asset,AssetBox,(var)TradeStopLimit, NumOpenLong,NumOpenShort);
		plot("Stop",TradeStopLimit,MINV,PURPLE);
		}
		
	if(Asset=="GBP/USD")
	{
	if (ltod(UTC,0) == 0200)
      enterLong();
	if (ltod(UTC,0) == 1500)
      enterShort();
	}

	if(Asset=="EUR/USD")
	{
	if (ltod(UTC,0) == 0900)
      enterLong();
	if (ltod(UTC,0) == 1900)
      enterShort();
	}}}



Last edited by Figurehunter; 01/26/21 16:14.
Re: TradeStopLimit Issue with Portfolio [Re: Figurehunter] #482303
01/27/21 00:50
01/27/21 00:50
Joined: Jan 2021
Posts: 22
Singapore
S
strimp099 Offline
Newbie
strimp099  Offline
Newbie
S

Joined: Jan 2021
Posts: 22
Singapore
Is this outcome you're trying to achieving a plot that has the selected pair plotted along with the stop set for that selected pair? The documentation in the manual for `plot` says: "Plots a variable, or the first element of the Data series, on the current bar position on the chart, and exports it optionally to a CSV file. The value can be plotted as a dot, line, bar, or band, dependent on Type. The plot is linked to the current asset." Note the last sentence. Perhaps one of the other plotting functions is better suited?

Last edited by strimp099; 01/27/21 00:57.
Re: TradeStopLimit Issue with Portfolio [Re: Figurehunter] #482308
01/27/21 09:29
01/27/21 09:29
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
Not the plot function is wrong, but the rest. If you want to plot a stop limit of a particular trade, first select that trade, and then plot its stop limit. Selecting trades and using their variables is described in the manual under "Trade management".


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1