Ask! - page 4

 

Change your Display Options

Maratha:
Hi Codesguru,

The links that you provided in lessons section for lesson 1 and 2 are not working. I found lesson 1 (welcome.pdf) on the thread, but could not locate lesson 2....would you pl post the message and thread for the same?

Thanks,

Maratha.

Maratha,

To locate lesson 2 (And other old lessons) you have to change the option From The-->Last month to Last 2 months in your "Display Options".

 

Got it!

Thanks!! BTW, you have done a great job here!

 

Hi Codesguru,

is it possible to get the highest / lowest value of an indicator like the RSI of the last say 20 bars , by using the highest / lowest functions ?

 

DFC high alert

Excuse me sir, i am trying very hard to learn by your valuable lessons but its hard for me. (Maybe my husband who is a real ''expert'' in forex could do that, but not me, but away from new year he will be back so yu can talk a lot with him and maybe yu could find the holly grail in trading together with him).

so i need an alert when price touches the attached indicator. Is that possible pls? tks vm in advance again.

Files:
 

hello codesguru,

i am new to this forum.i use daily , weekly ,monthly pivots to follow the market direction. i managed to get daily and weekly pivot plotters.But i was unable to get monthly pivots. Could you please help me out. please tell me how to get monthly and probably yearly pivots.

thanking you,

segul.

 

Is there an easyer way to code a range

 

How hard would it be to making a basic expert for shi

 

Reading JMASlope Value From Expert

Hi Codersguru,

I'm trying to get current JMASlope value using iCustom but not sure how to do it, can you please help me?

Is this correct?

double Slope = iCustom(NULL,0,"JMASlope",14,0,0);

Thank you.

Files:
jmaslope.mq4  12 kb
 

iCustom with JMASlope

zuhainis:
Hi Codersguru,

I'm trying to get current JMASlope value using iCustom but not sure how to do it, can you please help me?

Is this correct?

double Slope = iCustom(NULL,0,"JMASlope",14,0,0);

Thank you.

zuhainis,

Try this:

double Slope = iCustom(NULL,0,"JMASlope",14,0,0,0);

parmeter 1 :the symbol - NULLfor current symbol.

parmeter 2 : time frame - 0 for current time frame.

parmeter 3 : indicator name - here it's "JMASlope".

parmeter 4 : this is a setting for JMASlope - Length= 14.

parmeter 5 : this is a setting for JMASlope - Phase= 1500.

parmeter 6 : the line (buffer) number (range from 0 to 7).

parmeter 7 : the working bar - 0 for the current bar.

I didn't try it yet, so please try it and tell me what will you get?

 
codersguru:
zuhainis,

Try this:

double Slope = iCustom(NULL,0,"JMASlope",14,0,0,0);

parmeter 1 :the symbol - NULLfor current symbol.

parmeter 2 : time frame - 0 for current time frame.

parmeter 3 : indicator name - here it's "JMASlope".

parmeter 4 : this is a setting for JMASlope - Length= 14.

parmeter 5 : this is a setting for JMASlope - Phase= 1500.

parmeter 6 : the line (buffer) number (range from 0 to 7).

parmeter 7 : the working bar - 0 for the current bar.

I didn't try it yet, so please try it and tell me what will you get?

Thank you for the quick reply.

I'm waiting for market open to test it.

Reason: