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 (1 invisible), 672 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 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