Hi Amit ji..
Yes, you are correct in your understanding... Obviously, this would only give you approximate values, but with very close approximation..
Use the following to insert in its own panel:
Yes, you are correct in your understanding... Obviously, this would only give you approximate values, but with very close approximation..
Use the following to insert in its own panel:
Code:
_SECTION_BEGIN( "Inverse" );
SetChartOptions( 0, chartShowArrows | chartShowDates | chartWrapTitle | chartLogarithmic );
O = 1 / O;
C = 1 / C;
IH = 1 / L;
IL = 1 / H;
H = IH;
L = IL;
_N( Title = StrFormat( "{{NAME}} (Inversed) - {{INTERVAL}} {{DATE}} InvOpen %.4f%, InvHigh %.4f%, InvLow %.4f%, InvClose %.4f% (%.2f%%), {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ) );
Plot( C, "InvClose", colorDefault, styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() );
_SECTION_END();
:clapping: