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
4 registered members (ozgur, EternallyCurious, howardR, 1 invisible), 623 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Tick data and OHLC in the same script #478894
01/07/20 16:47
01/07/20 16:47
Joined: Jan 2020
Posts: 4
P
pablomfz Offline OP
Guest
pablomfz  Offline OP
Guest
P

Joined: Jan 2020
Posts: 4
Hi,

I wondering if it is possible to work with OHLC data in a script that it needs tick data:

I set:
Code
set(PLOTNOW, TICKS);
History = ".t1";
BarPeriod = 1./60;

and in the tick function:
Code
function tick()
{
  // do whatever you want
  printf("\nLast Tick: %f", priceClose(0)); //This prints the quote price successfully

  printf("\n Price Low Time Frame 5 min: %f , Price Low Time Frame 60: %f", priceLow(0),PriceLow(0)); //Here I see OHLC data for 1 second but I need priceLow for 5min and 60 min
}

How can I access OHLC from different timeframes while the script is using .t1 files with a BarPeriod = 1./60?
Thank you!

Pablo.

Re: Tick data and OHLC in the same script [Re: pablomfz] #478895
01/07/20 21:37
01/07/20 21:37
Joined: Dec 2019
Posts: 53
ozgur Online
Junior Member
ozgur  Online
Junior Member

Joined: Dec 2019
Posts: 53
Declare global series() and fill them in run() using TimeFrame then access them in tick() [Assuming you are after for closed bar values].


Moderated by  Petra 

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