There are three possible relationships between them:
если Сlose[0] < Open [0], то Х = (High[1] + Low[1] + Close[1] + Low[1] ) / 2;
если Сlose[0] > Open [0], то Х = (High[1] + Low[1] + Close[1] + High[1]) / 2;
если Сlose[0] = Open [0], то Х = (High[1] + Low[1] + Close[1] + Close[1]) / 2.
Where:
- Open[0], High[0], Low[0], Close[0] - prices of the current day;
- Open[1], High[1], Low[1], Close[1] - prices of yesterday.
Predicted minimum price for tomorrow: Min = X - High[1].
Predicted maximum price for tomorrow: Max = Low[1] - X.
And your calculation is not correct, if you compare it with Demark's description. He takes the data of the last candle, how can you determine the maximum and minimum of the current candle based on the same data? This method is more suitable only for the daily range, and then there are large errors.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Daily Range Projections:
The indicator forecasts high and low price values of a financial asset considering yesterday's (completed) and today's day candlesticks parameters.
Author: Nikolay Kositsin