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 (TipmyPip), 17,605 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
Multi strategy HTML page #457399
01/16/16 23:18
01/16/16 23:18
Joined: Jan 2016
Posts: 122
V
Veratyr Offline OP
Member
Veratyr  Offline OP
Member
V

Joined: Jan 2016
Posts: 122
I wrote up a very basic bit of HTML that shows multiple Z strategy logs on the same page:

Code:
<html>
<head>
<title>Zorro Panel</title>
<style type="text/css">
    iframe {
        width: 33%;
        height: 100%;
    }
</style>
</head>
<body>
    <iframe src="Z12.htm"></iframe>
    <iframe src="Z3.htm"></iframe>
    <iframe src="Z7.htm"></iframe>
</body>
</html>



If you're running multiple Z strategies on a VPS or something, using IIS to serve the log folder, you can put this in a .htm beside the Z1/2/3/7/12.htm files and open it instead.

Pretty basic and probably something only a few people will care about but thought I'd share it nonetheless.

Last edited by Veratyr; 01/16/16 23:25.
Re: Multi strategy HTML page [Re: Veratyr] #457429
01/18/16 10:38
01/18/16 10:38
Joined: Jul 2000
Posts: 28,022
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 28,022
Frankfurt
Thanks! Very useful when you don't want to have your status on different pages.

Re: Multi strategy HTML page [Re: jcl] #457470
01/18/16 22:07
01/18/16 22:07
Joined: Mar 2015
Posts: 336
Rogaland
N
nanotir Offline
Senior Member
nanotir  Offline
Senior Member
N

Joined: Mar 2015
Posts: 336
Rogaland
Really useful nice one!
What about doing that each Z is bellow the other ones in the htm? No idea how to code that.

Re: Multi strategy HTML page [Re: nanotir] #457493
01/19/16 19:33
01/19/16 19:33
Joined: Jan 2016
Posts: 122
V
Veratyr Offline OP
Member
Veratyr  Offline OP
Member
V

Joined: Jan 2016
Posts: 122
If you set width to 100% as well you'll get them stacked one above the other but you'll have to scroll:

Code:
<html>
<head>
<title>Zorro Panel</title>
<style type="text/css">
    iframe {
        width: 100%;
        height: 100%;
    }
</style>
</head>
<body>
    <iframe src="Z12.htm"></iframe>
    <iframe src="Z3.htm"></iframe>
    <iframe src="Z7.htm"></iframe>
</body>
</html>



If you want them all visible but half height, you can set width to 100% and height to 33%:

Code:
<html>
<head>
<title>Zorro Panel</title>
<style type="text/css">
    iframe {
        width: 100%;
        height: 33%;
    }
</style>
</head>
<body>
    <iframe src="Z12.htm"></iframe>
    <iframe src="Z3.htm"></iframe>
    <iframe src="Z7.htm"></iframe>
</body>
</html>


Last edited by Veratyr; 01/19/16 22:18.
Re: Multi strategy HTML page [Re: Veratyr] #457497
01/19/16 22:07
01/19/16 22:07
Joined: Mar 2015
Posts: 336
Rogaland
N
nanotir Offline
Senior Member
nanotir  Offline
Senior Member
N

Joined: Mar 2015
Posts: 336
Rogaland
Thanks laugh


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