Hi,
Can give some help.
Don't see why you need it PM as somebody else would be interested in.
Ted
Either or, I don't really mind, just leaving all options open.
I am getting lazy these days and have a support and resistance custom indicator (kindly designed by a member here I've not seen for a long time on the boards) which I use to save me the hassle of drawing the S/R on myself (plus its easier to cover more markets that way), anyhow, I just need to make a couple of tweaks to it as its not working correctly but anything underneath the title is all foreign to me so if you know your stuff...?
Basically, it should mark on S/R on any combination of dual+ levels as shown in the charts. For some reason though, it misses what I see as blatant levels according to my requirements and I don't know why. I also want to put in a variable, if possible, to be able to make it draw them a couple of pips higher or lower and be able to change this in the settings myself depending.
I found the folks at forex-tsd.com very helpful.
There are lots of penniless kids who will programme you anything I imagine for a few pips.
Hi,
Can you send the indicator itself?
Ted
Hi,
I managed to see clear picture of your issue.
In the original graph that you provided there should not be a R/S level as they are based on fractals. And in the SnR indicator fractal is calculated based on 2 bars before and after the point. I may see that in the interested points you just don't have fractal situation!
Can you make picture of the same period adding Fractal indicator?
Ted
P.S. what dealer you are using in your work? the one mentioned on the chart? or this one is only for analysis?
Hi,
basically this indicator claims it is using Fractals in the work
but unles you set to check more than 2 bars(total e.g. -1 & +1)
it is using it's own way of recognising Fractal:
if ( (High[shift] >= High[shift-1]) && (High[shift] >= High[shift+1]) )
return(High[shift]);
that means that it is using HIGH values of the bar to decide not the OPEN that you like to see
if you want are 2 choices: we can change to using the built in iFractals function
or change condition to use OPEN value of the bar
what ever you prefer
Ted
P.S. don't understand why there is no attach in the PM
if you want me send modification drop your contact in my PM
Using iFractals is more conservative than the original one. I guess it is looking for fractals in the basic definitions of those i.e. ignoring the small bars and so on. You can see results with switch to using this method.
Ted