Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information
I enter in the horizontal lines and my TP is when the indicator shown in the chart.
I enter when the 1 Bar is closed above or below of the price .I dont use SL .I use reversal only.
A Question for MT4 programmers:
What do I change in the code to make the indicator's display text, especially the target data, a little larger? They are kinda tiny on my 17" screen and I don't want to change screen resolution.
Can someone post the REI indicator shown in post #10?
Thanks.
I posted the image (post #10) from here. It is Polish website about Metastock software:
Quote:
DeMark's Indicator and REI Indicator
PUBLISHED: Page 98 and 100 of Tom Demark's new book, "The New Scienceof Technical Analysis" 1994.
COMMENTS: Note that the DeMark indicator on page 100 follows firstand iscontained in one formula only.
The REI (Range Expansion Index follows that and is contained over 5 formulas).
They could probably be compacted to one formula, but I felt that thisis more readable as Tom DeMark presents them in a similar manner.
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Red
double REIBuffer[];
int init()
{
SetIndexStyle(0,DRAW_LINE);
SetIndexShift(0,0);
SetIndexDrawBegin(0,0);
SetIndexBuffer(0,REIBuffer);
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start() {
int limit,SubValues,AbsDailyVal,Rei;
int counted_bars=IndicatorCounted(),x1=0,x2=0;