Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by MonsterX. 12/05/25 02:43
ZorroFix. ini /data and /log path
by Martin_HH. 12/02/25 11:42
Parameter selection
by jcl. 12/01/25 12:28
ZorroGPT
by TipmyPip. 11/29/25 09:38
webGL
by Ezzett. 11/27/25 23:22
Chart viewer
by clint000. 11/27/25 21:21
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
2 registered members (SamMcGee, AndrewAMD), 20,212 guests, and 10 spiders.
Key: Admin, Global Mod, Mod
Newest Members
agasior, mosfet, MonsterX, KF_Investments, Luuk
19186 Registered Users
Active Threads | Active Posts | Unanswered Today | Since Yesterday | This Week
The Z Systems
12/06/25 20:08
Good morning,

I would like to ask if this information on https://zorro-project.com/manual/en/account.htm about AssetsForexEUR.csv is not accurate anymore?

Quote
Included asset lists
No guarantee of completeness or correctness! The lists below can be used as examples or templates for your own account specific asset list.

AssetsFix.csv - The default asset list when no different list is specified in the script; determines the 15 assets initially available in the scrollbox. Based on an Oanda™ 100:1 USD account with lot size 1000.

AssetsForex.csv, AssetsForexEUR.csv - 35 currency pairs, including all pairs of the 7 main currencies EUR, USD, AUD, GBP, CHF, NZD, CAD. For trading with a multitude of currencies. Based on a typical Forex account with 100:1 leverage (AssetForex) or 30:1 leverage (AssetsForexEUR). Commission is, as usual, included in the spread.


While testing z6+ in europe it would be nice to have since it gets data from AssetsForex file:
Quote
Trade: Z6+ 2025-12-04
Assets AssetsForex
Lookback 300 bars, 2025-11-18..2025-12-04


I could not find any information about this file in https://zorro-project.com/manual/en/new.htm


Thanks laugh
0 12 Read More
Zorro and the Brokers
12/06/25 12:03
A properly formatted version of the script:

Code

#include <profile.c>


void run() 
{
	set(TESTNOW|PLOTNOW|PARAMETERS|LOGFILE|NOLOCK|PRELOAD);

	StartDate = ifelse(Live, NOW, 20210401);
	BarPeriod = 2;// 1440;
	BarZone = CET;
	EndDate = 20251130;
	resf(BarMode, BR_WEEKEND); // allow weekend trading
	LookBack=150;

	
	setf(TradeMode,TR_POS);

	MaxLong = MaxShort = 1;
	
	while (asset(loop("BNBUSDT")))   
	{		
		
		/// - Test that lifetime means trade is correctly closed
		if (Bar - StartBar > 1 and NumOpenLong < 1) return quit("\nTEST OF BINANCE FUTURES COMPLETED");
		
		LifeTime = 1;
		if (NumOpenLong < 1 and !is(LOOKBACK)) enterLong();
	
		
	}
}

1 106 Read More
Zorro Future
12/05/25 02:43
Hi,

I have purchased an upgrade to run Z6+ but have not received the licenses - have not heard back from Zorro support for almost a week now? Is everything OK with support@opgroup.de? I have never had such a delay in response before.
7 1,450 Read More
Zorro Future
12/02/25 11:42
Is there a possibility to define the /data and /log path in the ZorroFix.ini.
It is not described in the manual, but maybe there is a possibility? I am using a lot cloud storage and that would help a lot to centralize (as I am doing with history and strategy data). I know, I cannot mix different instances without control. But centralized train data as .par and .fac could be used to test or trade on different PC without manual copying.
0 83 Read More
Starting with Zorro
12/01/25 12:28
Brute Force exports the results to a *par.csv file. The first column contains the objective returns, the subsequent columns the parameter velues in the order of their appearance in the script.
3 282 Read More

Gamestudio download | 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