Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (opm), 778 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Calculating with price series #478434
10/21/19 13:39
10/21/19 13:39
Joined: Oct 2019
Posts: 2
B
Bolle Offline OP
Guest
Bolle  Offline OP
Guest
B

Joined: Oct 2019
Posts: 2
Hello all,

I have got a, probably, simple problem to solve. I have to detemine the upper- as well as lower round figure to the actual price (rounded to 100 PIPS). Example: price = 1.12701; Upper round figure = 1.13000; Lower round figure = 1.12000.

This script is exactely doing that:

function main()
{
var Price = 1.12701;
var U_price= (ceil(Price*100)/100);
var L_price= (floor(Price*100)/100);

printf("Price: %.5f",Price);
printf("\nUpper Price: %.5f",U_price);
printf("\nLower Price: %.5f",L_price);
}



I get an error message with script below though:


function run()
{
vars Price = series(price());
var U_price= (ceil(Price*100)/100);
var L_price= (floor(Price*100)/100);

printf("Price: %.5f",Price);
printf("\nUpper Price: %.5f",U_price);
printf("\nLower Price: %.5f",L_price);



}

The error message says: Wrong type P_MUL:POINTER:LONG:POINTER

I have tried nopw everything I got out of the manual and GOOGLE, hope one of you guys can help me.

Many thanks in Advance.

Re: Calculating with price series [Re: Bolle] #478435
10/21/19 14:12
10/21/19 14:12
Joined: Feb 2017
Posts: 1,718
Chicago
AndrewAMD Offline
Serious User
AndrewAMD  Offline
Serious User

Joined: Feb 2017
Posts: 1,718
Chicago
In the bottom snippet, use Price[0] instead of Price to retrieve a particular element of your price series, where 0 is the element number.

Re: Calculating with price series [Re: Bolle] #478436
10/21/19 14:27
10/21/19 14:27
Joined: Oct 2019
Posts: 2
B
Bolle Offline OP
Guest
Bolle  Offline OP
Guest
B

Joined: Oct 2019
Posts: 2
Hi Andrew,

many thanks for the quick reply, it has worked ! Just that I got it right, the series function goes thru history bar by bar. The [0] index is the lates element of "Price", hence it would always use the current bar to claculate the rest right ?

Again Thanks !

Re: Calculating with price series [Re: Bolle] #478437
10/21/19 14:31
10/21/19 14:31
Joined: Feb 2017
Posts: 1,718
Chicago
AndrewAMD Offline
Serious User
AndrewAMD  Offline
Serious User

Joined: Feb 2017
Posts: 1,718
Chicago


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1