Looking at the Extreme_Starc_Bands I think that they already capture the price extremes pretty well.
However I tried to improve it and experimented with a few things.
I cannot really tell if my work is really better than the Extreme_Starc_Bands so I will just post it here and ask you for your opinion.
File lkmma.ctl:
function lkmma;
input s1(series), s2(series), s3(series), s4(series), w1(number), w2(number), w3(number), w4(number), period(number);
result res(series);
vars i(number), tmp(series);
begin
for i := front(s1) to back(s1) do begin
tmp[i] := w1s1[i] + w2s2[i] + w3s3[i] + w4s4[i];
end;
res := mma(tmp, period);
end.
File Modified_Starc_Bands.ctl:
indicator Modified_Starc_Bands;
input factor = 0.9;
draw line_upper(âUpper MSBâ), line_lower(âLower MSBâ);
vars up(series), lo(series), i(number);
begin
for i := front(open) to back(open) do begin
up[i] := max(open[i], close[i]);
lo[i] := min(open[i], close[i]);
end;line_upper := lkmma(high, up, lo, low, 0.5, 0.5, 0, 0, 4) + factormma(truerange(), 4);
line_lower := lkmma(high, up, lo, low, 0, 0, 0.5, 0.5, 4) - factormma(truerange(), 4);
end.
Create and install these files in the order I posted them in Chart Studio (just like tymen explained).
It could be that this is worse than the Extreme_Starc_Bands, but I would like to know if my concept has potential.
I will now concentrate to write an EA for the advanced strategy.
This should help to make a good decision which indicators are better for use.