View RSS Feed

mql5

XPoints to predict the possible reversal points

Rate this Entry
by , 11-26-2018 at 06:12 AM (730 Views)
      
   
XPoints - indicator for MetaTrader 5

Name:  picture__47.png
Views: 179
Size:  11.6 KB

The indicator predicts the possible reversal points. The EURUSD chart show an interesting pattern - some time before the reversal, there are bars with the following features:

  1. rate = (High - Low) / MathAbs(Close - Open) is significantly greater than 1;
  2. the lowest point (Low) touches the bottom of the channel (possible price growth), or the highest point (High) touches the top of the channel (possible price fall)

These bars are conventionally called X-points. The indicator finds X-points based on the xrate parameter:
(rate >= xrate) && (High-Low) >= xsize && (Up-Dn)>= xminupdn
To filter out false signals, the indicator analyzes the bar that follows the X-point for any price movement in the predicted direction, as well as the position of bar midpoints relative to the center of the channel and each other.

Submit "XPoints to predict the possible reversal points" to Google Submit "XPoints to predict the possible reversal points" to del.icio.us Submit "XPoints to predict the possible reversal points" to Digg Submit "XPoints to predict the possible reversal points" to reddit

Categories
Uncategorized

Comments