Gamestudio Links
Zorro Links
Newest Posts
M1 Oversampling
by Petra. 04/24/24 10:34
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Data from CSV not parsed correctly
by EternallyCurious. 04/20/24 21:39
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
folder management functions
by VoroneTZ. 04/17/24 06:52
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (AndrewAMD, Ayumi, Quad, PeWi), 488 guests, and 6 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
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,982
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,982
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