Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (SBGuy), 712 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,725
Chicago
AndrewAMD Offline
Serious User
AndrewAMD  Offline
Serious User

Joined: Feb 2017
Posts: 1,725
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

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