Gamestudio Links
Zorro Links
Newest Posts
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
Release 2.68 replacement of the .par format
by Martin_HH. 09/23/25 20:48
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
1 registered members (dBc), 17,435 guests, and 5 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
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: 54
ozgur Offline
Junior Member
ozgur  Offline
Junior Member

Joined: Dec 2019
Posts: 54
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 | 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