Gamestudio Links
Zorro Links
Newest Posts
Zorro Beta 2.61: PyTorch
by jcl. 06/10/24 14:42
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (AndrewAMD, VoroneTZ, 1 invisible), 1,578 guests, and 7 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19058 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Error 037: Invalid value in plot bar 1 Chart #462591
10/12/16 23:26
10/12/16 23:26
Joined: Oct 2016
Posts: 2
C
Comper Offline OP
Guest
Comper  Offline OP
Guest
C

Joined: Oct 2016
Posts: 2
Hi,

I'm trying to plot a simple RSI line and no matter which currency I'm using, I'm always getting the 037 error.
I downloaded tick data from FXCM since 2012, tried different currencies, setting bar period, time, etc.

Error 037: Invalid value in plot "RSI" bar 1

function run() {

set(PLOTNOW);
vars r = series(RSI(priceClose,11));
plot("RSI", r, LINE, GREEN );

}

I'm really not sure how to fix this, there are a few other related topics on web, however I couldn't fix it.
I'd appreciate your feedback.

Re: Error 037: Invalid value in plot bar 1 Chart [Re: Comper] #462594
10/13/16 10:55
10/13/16 10:55
Joined: Apr 2014
Posts: 482
Sydney, Australia
B
boatman Offline
Senior Member
boatman  Offline
Senior Member
B

Joined: Apr 2014
Posts: 482
Sydney, Australia
There's probably a zero or null value in the denominator of the RSI calculation. Try this:

Code:
function run() 
{	
    set(PLOTNOW);
    vars r = series(RSI(series(priceClose()),11));
    plot("RSI", r, NEW, GREEN );
}



You can also make a separate series out of the closing prices, for example:
Code:
...
vars Close = series(priceClose());
vars rsi = series(RSI(Close, 11));
...


Re: Error 037: Invalid value in plot bar 1 Chart [Re: boatman] #462604
10/14/16 11:10
10/14/16 11:10
Joined: Oct 2016
Posts: 2
C
Comper Offline OP
Guest
Comper  Offline OP
Guest
C

Joined: Oct 2016
Posts: 2
The first version proposed works.

Thanks!


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