Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
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;