It was Barry's... and when tweaked to my settings it will be mine!!!
I need/want the lines drawn as regular lines and from open/close instead of high/lows if possible...
Maybe people got to be aware of that indicator.
The reason being -
It is based on fractals - if middle (3rd) candle is lower/higher than the 2 candles on either side, a new S/R level appears on the 3rd candle. If however, on that 3rd candle/candle of appearance, price penetrates through the S/R level, then that S/R level disappears!
This leaves a very neat looking chart, but it is misleading, as in real-time, more S/R levels were being drawn than are shown in history.
I have monitored this indicator, and tests have shown that about 1 in 4 S/R levels disappear in this way, on the same candle that they first appeared on. So, it is to be treat with caution IMO.
It was Barry's... and when tweaked to my settings it will be mine!!!
I need/want the lines drawn as regular lines and from open/close instead of high/lows if possible...
int start()
{
i = Bars;
while(i >= 0)
{
val1 = iFractals(NULL, 0, MODE_UPPER, i);
//----
if(val1 > 0)
v1 = High;
else
v1 = v1[i+1];
val2 = iFractals(NULL, 0, MODE_LOWER, i);
//----
if(val2 > 0)
v2 = Low;
else
v2 = v2[i+1];
i--;
}
return(0);
}
wasp,
open file in editor, and look for the bits I have highlighted.
replace the "High" with Open or close.
and replace "Low" with open or clsoe as you see fit.
then recompile and see if it works.
(just an initial analysis. you may have to be more detailed as to when the open or close should be used.)
play around with those two parameters.
hope you had a good week.
your having a laugh aren't you?!?!
. Thats his dynamic fibs/SR indicator. Theres one that plots just the blue/red S/R lines.
. Thats his dynamic fibs/SR indicator. Theres one that plots just the blue/red S/R lines.
Try this
Nothing special, but it works for me
User choice of O/C or H/L
WOW!
this indicator is absurdly useless IMO!
WOW!
this indicator is absurdly useless IMO!
I trade off a daily chart & iy gives me all the info I need for Multi lot trading.
Have a good one JT.
It just changed appearance actually in my chart view. Now it shows numbers & %'s, so i'm guessing it is some kind of fibonacci projection. Before that it was just showing the linescovering the last 2 bars. So maybe it is now slightly more useful IMO.
Cheers Jtrader... All S/R indicators seem to be fractal based which is pointless so I'll steer clear thanks.