Topic: info about methods embebed in the indicators

I have been analysing the code of a few indicators in order to develope one on my own and I have realiased thath in the calculation of the logic part, there is always a end call to one of the methods:

OscillatorLogic()
NoDirectionOscillatorLogic()
BandIndicatorLogic()
IndicatorRisesLogic()
IndicatorFallsLogic()
IndicatorIsHigherThanAnotherIndicatorLogic()
IndicatorIsLowerThanAnotherIndicatorLogic()
IndicatorCrossesAnotherIndicatorUpwardLogic()
IndicatorCrossesAnotherIndicatorDownwardLogic()
BarOpensAboveIndicatorLogic()
BarOpensBelowIndicatorLogic()
BarOpensAboveIndicatorAfterOpeningBelowLogic()
BarOpensBelowIndicatorAfterOpeningAboveLogic()
BarClosesAboveIndicatorLogic()
BarClosesBelowIndicatorLogic()

I wonder if it is possible the get some info about the parameters of the methods and more important: what does the method do?

Thanks in advance
P.

Re: info about methods embebed in the indicators

These methods takes the components that represent the indicator values and calculates the buy / sell signals (depending on the type of the component given as a reference)

I'll upload the base classes to GitHub soon.

Now you can see them in the MQL folder.

Re: info about methods embebed in the indicators

Now you can see them in the MQL folder.

...ummm I think I'm lost. What do you mean?

In GitHub I can't see any "MQL" folder.

The folder where the MQL indicators code are stored in the local PC?

C:\Program Files\Forex Strategy Builder Pro\User Files\MT4 Files\MQL\Forexsb.com\Indicators

I don't think so. In MQL files appears again the same private method call:

OscillatorLogic()
NoDirectionOscillatorLogic()
...

Re: info about methods embebed in the indicators

This code is in: C:\Program Files\Forex Strategy Builder Pro\User Files\MT4 Files\MQL\Forexsb.com\Indicator.mqh file.

It is 99% equal to the C# code. The only difference is array initialization / copy in MQL.

Re: info about methods embebed in the indicators

Thanks a lot!!!

I'll be back with more questions soon ;-)