Gamestudio Links
Zorro Links
Newest Posts
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Data from CSV not parsed correctly
by EternallyCurious. 04/20/24 21:39
M1 Oversampling
by 11honza11. 04/20/24 20:57
Scripts not found
by juergen_wue. 04/20/24 18:51
zorro 64bit command line support
by 7th_zorro. 04/20/24 10:06
StartWeek not working as it should
by jcl. 04/20/24 08:38
folder management functions
by VoroneTZ. 04/17/24 06:52
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 533 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Switching from MQL4 #478124
09/10/19 19:33
09/10/19 19:33
Joined: Sep 2019
Posts: 5
Kalahari Desert, ZA
Fred7 Offline OP
Newbie
Fred7  Offline OP
Newbie

Joined: Sep 2019
Posts: 5
Kalahari Desert, ZA
Hi guys, I come from an MQL4 background and just trying to figure out or get my head around this coding. To learn I'm trying to stay on indi's that I understand and once I get the flow will move to the better stuff. (Yes, I did do all the lectures, and trying to sift through the HELP)

How will I do the following?

I thought it'll be something like this.

Code
function RSi_1hour()
{
	TimeFrame = 4;
	vars Close = series(priceClose());
	vars rsi60 = series(RSI(Close,12));
	return rsi60;
}


function run()
{
  set(PLOTNOW);
  BarPeriod = 15;
  MaxBars = 500;
  LookBack = 250;
  asset("EUR/USD"); // dummy asset
  PlotWidth = 800;
  PlotHeight1 = 400;
  
  vars Price = series(price());
  vars Close = series(priceClose());
  vars RSI12 = series(RSI(Close,12));
  vars rsiHTF = series(RSi_1hour());
  
  plot("RSI",RSI12,NEW,RED);
  plot("rsiHTF",rsiHTF,NEW,GREEN);

}


Q1. I'd like to display both TF's for RSI on a M15 chart.
Q2. If I comment out the two "rsiHTF"'s run this the M15 RSI shows normal, but uncomment those two lines and it is staggered and the H1 RSI is only straight line.

Help appreciated.

Last edited by Fred7; 09/10/19 20:28.
Re: Switching from MQL4 [Re: Fred7] #478129
09/11/19 11:32
09/11/19 11:32
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Your function returned a pointer instead of a variable.

var RSi_1hour()
{
TimeFrame = 4;
vars Close = series(priceClose());
return RSI(Close,12);
}

Re: Switching from MQL4 [Re: jcl] #478132
09/11/19 15:19
09/11/19 15:19
Joined: Sep 2019
Posts: 5
Kalahari Desert, ZA
Fred7 Offline OP
Newbie
Fred7  Offline OP
Newbie

Joined: Sep 2019
Posts: 5
Kalahari Desert, ZA
Thanx


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1