ATR Adjusted Price Chart View

Open=Close[1];
Close=Open+(close -Open)/(ATR*Multiplier);
High=Open+(high -Open)/(ATR*Multiplier);
Low=Open+(low -Open)/(ATR*Multiplier);
Various alternative adjustments instead of ATR can be applied.
(Deviation, Moving averages, Channel percentage...)