Page 75 of 157

Re: Coding Help

Posted: Mon May 28, 2018 3:45 am
by yamahaqs300
Hi ! I need some help . I want to use in EA a Moving Average with Level . I don`t need the MA buffer in EA ,I need buffers for levels . I search all internet...and no MA with buffers on level :( .Who can help me ? Thanks

Re: Coding Help

Posted: Tue May 29, 2018 12:15 am
by alpha24
Dear Mladen and Mrtools
I am going to make price smooth in this way
case pr_smoothprice:
if (close>open)
return((open+low)/2.0);
if (close<open)
return((open-low)/2.0);

Problem arises that the price became very sensitive.
will you please help me to lag the results

Re: Coding Help

Posted: Tue May 29, 2018 6:16 am
by mrtools
yamahaqs300 wrote: Mon May 28, 2018 3:45 am Hi ! I need some help . I want to use in EA a Moving Average with Level . I don`t need the MA buffer in EA ,I need buffers for levels . I search all internet...and no MA with buffers on level :( .Who can help me ? Thanks
Maybe something like this one? They are a kind of dynamic levels.

Re: Coding Help

Posted: Fri Jun 01, 2018 12:13 am
by Jumbo
Hello,

I'm new here! Doe's anyone have a indicator with HH / HL and LL LH indicator. I need the price of the highs and the lows, and lower highs - and higher lows.

Like this example.

Best regards!

JUMBO

Re: Coding Help

Posted: Mon Jun 04, 2018 9:00 pm
by TEAMTRADER
Would someone look at this and see why it does not show the stochastics 'line' on the chart please?
Thanks
TEAMTRADER

Re: Coding Help

Posted: Mon Jun 04, 2018 9:21 pm
by Xronos__
TEAMTRADER wrote: Mon Jun 04, 2018 9:00 pm Would someone look at this and see why it does not show the stochastics 'line' on the chart please?
Thanks
TEAMTRADER
Hello TEAMTRADER ,
it does show on chart , you can see it if you shrink your chart to include lower values!.

Re: Coding Help

Posted: Mon Jun 04, 2018 9:35 pm
by TEAMTRADER
Xronos__ wrote: Mon Jun 04, 2018 9:21 pm
Hello TEAMTRADER ,
it does show on chart , you can see it if you shrink your chart to include lower values!.

GBPJPYH1_TEAMTRADER_stoch.png
So in other words it will not work as it was intended to work by superimposing it over the prices.
Pity.
Thanks
TEAMTRADER

Re: Coding Help

Posted: Mon Jun 04, 2018 9:57 pm
by Xronos__
@TEAMTRADER
exactly ! to learn how to do it , a good idea will be to study similar with your indention indicators created by mladen or mrtools ,
also keep in mind that is not the same task for all kind of indicators .
Have a look at this one it might be a nice start for you : OnChart Stochastic 3.01.mq4 viewtopic.php?p=1295367823#p1295367823

Re: Coding Help

Posted: Mon Jun 04, 2018 10:38 pm
by TEAMTRADER
Xronos__ wrote: Mon Jun 04, 2018 9:57 pm @TEAMTRADER
exactly ! to learn how to do it , a good idea will be to study similar with your indention indicators created by mladen or mrtools ,
also keep in mind that is not the same task for all kind of indicators .
Have a look at this one it might be a nice start for you : OnChart Stochastic 3.01.mq4 viewtopic.php?p=1295367823#p1295367823
There are many things I can do but coding will never be one of them
Thanks
TEAMTRADER

Re: Coding Help

Posted: Tue Jun 05, 2018 8:04 am
by wojtek
Dear Coders.

would it be possible to attach an exact translation of the following indicators
from MQ4 into MQ5, please? I would be very grateful.