Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
M1 Oversampling
by jcl. 04/26/24 11:12
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
Eigenwerbung
by jcl. 04/26/24 11:08
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
Trading Journey
by howardR. 04/24/24 20:04
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Scripts not found
by juergen_wue. 04/20/24 18:51
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (EternallyCurious, Petra, AndrewAMD, 1 invisible), 793 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Mega_Rod, EternallyCurious, howardR, 11honza11, ccorrea
19048 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