iSAR last dot value ?

 

hello.

Please help me to get the recent Parabolic SAR dot value by using this "iSAR(Symbol(),0,0.02,0.02,0)", Correct if my question was wrong.

thanks.

 

Here you go: double iSAR( string symbol, int timeframe, double step, double maximum, int shift)

and: https://docs.mql4.com/indicators/iSAR

 
RaptorUK:

Here you go: double iSAR( string symbol, int timeframe, double step, double maximum, int shift)

and: https://docs.mql4.com/indicators/iSAR


I got this, but when i use this double iSAR( string symbol, int timeframe, double step, double maximum, int shift), it doesn't gives the recent value of psar dot, instead it gives the value which is old. right ? i need the last psar dot value on the chart.
 
OK, how do you know it's giving you the wrong value ? are you comparing the value from iSAR to something else to know it's wrong ? if so what are you comparing it against ?
 
RaptorUK:
OK, how do you know it's giving you the wrong value ? are you comparing the value from iSAR to something else to know it's wrong ? if so what are you comparing it against ?


I am not saying it's giving the wrong value. please check this image.

isar = iSAR(Symbol(),0,0.02,0.02,0);

Alert(isar);

 
The result in not possible, (have you used the same setting in the indicator and the EA?)
 
zzuegg:
The result in not possible, (have you used the same setting in the indicator and the EA?)


please check this image

 

look again at your images:

indicator: Step:0.02 Maximum: 0.2

EA : Step 0.02 Maximum: 0.02

 
zzuegg:

look again at your images:

indicator: Step:0.02 Maximum: 0.2

EA : Step 0.02 Maximum: 0.02


Thank you very much sir, it's my mistake i think i never read the docs of iSAR completely.
 
Problem solved. thanks all for your time.
 
giridharseel:
Problem solved. thanks all for your time.
Glad to hear it :-)
Reason: