Here you go: double iSAR( string symbol, int timeframe, double step, double maximum, int shift)
RaptorUK:
Here you go: double iSAR( string symbol, int timeframe, double step, double maximum, int shift)
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 ?
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?)
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 :-)
Problem solved. thanks all for your time.
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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.