Attachments forums

List of attachments posted on this forum.


All files on forums: 160914

Re: Coding Help

pacois, Mon Aug 05, 2019 8:42 am

nyol wrote: Mon Aug 05, 2019 6:28 am Hello Guys

I am inciting my studies in MQL4 language, so my level of knowledge is that of a novice.
I have used the EA Builder to create object-oriented way my first indicators and so I will make several combinations of technical indicators and then analyze the generated codes, which will give me a little notion of things.

My question is:
When I import a custom indicator for EA Builder I do not have the option to declare a condition applied to opening or closing the price.

Example:
In this image you can see that the option to declare a value the condition of the price applied at the time of its closing, is available when we choose the indicator RSI (Relative Strength Index)
Image


But after importing the MomPinboll indicator from "Karakurt " I do not have the option to declare a value the condition and apply it to opening or closing the price.
Image


What do I need to do to make this option available which is crucial to create my indicator?

If any kind-hearted guru can help me I would be immensely grateful.
Good luck to everyone
Hi, iRSIOnArray has no price options.
BufferRSI = iRSIOnArray( BufferROC, 0, ExtPeriodRSI, i )
you can only change from:
Close - Close [i + ExtPeriodROC];
with:
Open - Open [i + ExtPeriodROC];

but MrTools can answer you better.
All files in topic