Gamestudio Links
Zorro Links
Newest Posts
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
Deeplearning Script
by wolfi. 02/26/24 12:46
Sam Foster Sound | Experienced Game Composer for Hire
by titanicpiano14. 02/22/24 16:22
AssetAdd() vs. modern asset list?
by jcl. 02/21/24 15:01
How many still using A8
by Aku_Aku. 02/20/24 12:18
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (TipmyPip, 1 invisible), 595 guests, and 7 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
Page 1 of 5 1 2 3 4 5
New Zorro version 1.83 #472748
05/20/18 08:52
05/20/18 08:52
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
A new Zorro version is available:

http://opserver.de/down/Zorro_1830.exe

This version will be uploaded to the Download page when no bugs are found in the next time. It contains the new Z10 crypto system plus many other new features and improvements. Especially, check out the contractCPD function that allows you to predict tomorrow's price from market sentiment. The full list of new features and bugfixes can be found on http://manual.zorro-project.com/new.htm.

Please test everything and report any problems here!

Re: New Zorro version 1.83 [Re: jcl] #472777
05/22/18 12:21
05/22/18 12:21
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Small update:

http://opserver.de/down/Zorro_1831.exe

Changes and fixes:

-Z10 included
-MT5 plugin returned wrong leverage
-Error 055 was in fact 047

Re: New Zorro version 1.83 [Re: jcl] #472794
05/23/18 16:53
05/23/18 16:53
Joined: Apr 2018
Posts: 16
C
claudio Offline
Newbie
claudio  Offline
Newbie
C

Joined: Apr 2018
Posts: 16

I'm tryng the MT5 bridge and this is the result I think is wrong.
Note that if I buy 0.1 lot of EURUSD with my real account I will get 1000€ (about 1170$) with a margin cost of 100€ (Leverage 10).

This what I get from code added to TradeTest.c:

printf("n Price %.5f",InitialPrice);
printf("n Spread %.5f",Spread);
printf("n RollLong %.5f",RollLong);
printf("n RollShort %.5f",RollShort);
printf("n PIP %.5f",PIP);
printf("n PIPCost %.5f",PIPCost);
printf("n MarginCost %.5f",MarginCost);
printf("n Leverage %.5f",Leverage);
printf("n LotAmount %.5f",LotAmount);
printf("n Commission %.5f",Commission);

TradeTest
Login 0 MT4/5 (demo)..
!Trading Point Of Financial Instruments UK LTD connected
!Real account not supported at UTC 05-23 16:25
Bal 0.0 Equ 25.00 Mrg 0.0 Pos 53.00
Error 063: marketVol not available
Vol 0.0 Spr 0.00017
V 1.831 on Wed 18-05-23 18:26:18

Trade: TradeTest EUR/USD 2018-05-23
Log Params EUR/USD
Price 1.13795
Spread 0.00017
RollLong -11.01000
RollShort 4.69000
PIP 0.00010
PIPCost 0.00855
MarginCost 10.00000
Leverage 99.11544
LotAmount 100.00000
Commission 0.60000
Session end at 16:26
Logout.. ok

This what I get from MQL5 added in Zorro.mq5

Print("Asset ",Asset);
Print("LotFactor ",LotFactor);
Print("Factor ",Factor);
Print("MODE_POINT ",MarketInfo(Asset,MODE_POINT));
Print("MODE_TICKVALUE ",MarketInfo(Asset,MODE_TICKVALUE));
Print("MODE_LOTSIZE ",MarketInfo(Asset,MODE_LOTSIZE));
Print("MODE_MARGINREQUIRED ",MarketInfo(Asset,MODE_MARGINREQUIRED));
Print("MODE_SWAPLONG ",MarketInfo(Asset,MODE_SWAPLONG));
Print("MODE_SWAPSHORT ",MarketInfo(Asset,MODE_SWAPSHORT));
Print("MODE_SWAPTYPE ",MarketInfo(Asset,MODE_SWAPTYPE));
Print("PERIOD_M15 ",iVolume(Asset,PERIOD_M15,0));
Print("ACCOUNT_LEVERAGE ",AccountInfoInteger(ACCOUNT_LEVERAGE));

Asset EURUSDmicro
LotFactor 0.1
Factor 10.0
MODE_POINT 1e-05
MODE_TICKVALUE 0.008547227706693335
MODE_LOTSIZE 1000.0
MODE_MARGINREQUIRED 0.0
MODE_SWAPLONG -11.01
MODE_SWAPSHORT 4.69
MODE_SWAPTYPE 1.0
PERIOD_M15 2767
ACCOUNT_LEVERAGE 10

Re: New Zorro version 1.83 [Re: claudio] #472802
05/24/18 10:09
05/24/18 10:09
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
This looks ok to me - Required margin was not available, so it returned 0 and got the margin cost from the asset list. Make sure to enter there either the correct margin cost, or the correct leverage.

Re: New Zorro version 1.83 [Re: jcl] #472807
05/24/18 15:19
05/24/18 15:19
Joined: Apr 2018
Posts: 16
C
claudio Offline
Newbie
claudio  Offline
Newbie
C

Joined: Apr 2018
Posts: 16
OK, looks alright.
Thanks!

Re: New Zorro version 1.83 [Re: jcl] #472808
05/24/18 15:22
05/24/18 15:22
Joined: Apr 2018
Posts: 16
C
claudio Offline
Newbie
claudio  Offline
Newbie
C

Joined: Apr 2018
Posts: 16
OK, looks alright.
Thanks!

Re: New Zorro version 1.83 [Re: claudio] #472927
05/30/18 10:00
05/30/18 10:00
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Small update:

http://opserver.de/down/Zorro_1832.exe

Changes:

-roundto now also supports steps > 1
-distribute() bug fixed
-Bittrex plugin bug fixed

Re: New Zorro version 1.83 [Re: jcl] #472940
05/31/18 22:20
05/31/18 22:20
Joined: Aug 2017
Posts: 4
Kent
J
jtu Offline
Guest
jtu  Offline
Guest
J

Joined: Aug 2017
Posts: 4
Kent
Hello,
I installed latest Zorro_1832.exe and tried Test for Z12. There are many Error 055 such as GBP/USD history missing (2018 8192 HistoryGBPUSD_2018.t6).
Could you advise where to download XXXXXX_2018.t6 files?
This zip file http://server.conitec.net/down/history_2016.zip does not have 2018 price data.
Thanks

Re: New Zorro version 1.83 [Re: jtu] #472941
05/31/18 23:13
05/31/18 23:13
Joined: Feb 2017
Posts: 1,718
Chicago
AndrewAMD Offline
Serious User
AndrewAMD  Offline
Serious User

Joined: Feb 2017
Posts: 1,718
Chicago
You would typically get it from your broker. Try that download script.

Re: New Zorro version 1.83 [Re: AndrewAMD] #472948
06/01/18 12:00
06/01/18 12:00
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
History2016 will soon also be updated, probably today.

Page 1 of 5 1 2 3 4 5

Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1