Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
3 registered members (NewbieZorro, TipmyPip, 1 invisible), 19,045 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Opening week value #465237
04/13/17 20:09
04/13/17 20:09
Joined: Mar 2015
Posts: 336
Rogaland
N
nanotir Offline OP
Senior Member
nanotir  Offline OP
Senior Member
N

Joined: Mar 2015
Posts: 336
Rogaland
Hi

I am using the open week price to generate some lines from it in live trading. What I noticed is that this value is far from the real sometimes. I guess the reason is that I get the wrong tick quote and zorro use this one as the open price. I am using mt4 bridge 1.11. I have not shifted to 1.13 yet tho.

Quote:

BarPeriod = 60;
vars Opw = series(price());
if(hour()==00 and dow()==1) {Opw[0]= priceOpen();}
else {Opw[0]= Opw[1];}


Maybe I could avoid wrong price quotes using


Quote:

if(hour()==01 and dow()==1) {Opw[0]= priceOpen(1);}
else {Opw[0]= Opw[1];}

Re: Opening week value [Re: nanotir] #465250
04/14/17 11:35
04/14/17 11:35
Joined: May 2016
Posts: 180
Prague
pcz Offline
Member
pcz  Offline
Member

Joined: May 2016
Posts: 180
Prague
From the changelog - could be relevant:

MT4 bridge V1.11 did not properly filter away price outliers by some MT4 servers, which could cause price and profit spikes on the chart (fixed in V1.52.2).


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1