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 am looking for an indicator that will plot the (open - low)if the low is closest to the open....and the (high-open) if the high is closest to the open.
I would also like to be able to plot a 10 period average of each of these..example: a 10 SMA of open -low...only open minus the low when the open is closest to the low...vice versa for the high - open.
Also is there a way I can plot the weekly open on smaller timeframe charts?
While not exactly what you are looking for, there is an indicator called the 'Directional Day Filter' which is quite useful for determining the trend for the day based on the first hour.
I could provide two different versions coded in C# (NinjaScript) and here is the EasyLanguage code if it helps:
Quote:
Inputs: PlotTime(5),Delay(60) ;
Vars: NuHi(c), NuLo(c), Med(0);
If d<>d[1] then begin
NuHi = H;
NuLo = L;
end;
If H>NuHi then NuHi = H;
If L<NuLo then NuLo = L;
If T = CalcTime(Sess1StartTime,PlotTime) then Med = (NuHi+NuLo)/2;
If Med > 0 then plot1(Med,"DDFLine");
If t = CalcTime(Sess1StartTime,Delay) and nulo>0 then begin
Plot2(NuHi,"hi");
Plot3(NuLo,"lo");
Plot4(C,"C");
If checkalert then alert = true;
end;
While not exactly what you are looking for, there is an indicator called the 'Directional Day Filter' which is quite useful for determining the trend for the day based on the first hour.
I could provide two different versions coded in C# (NinjaScript) and here is the EasyLanguage code if it helps:
Thank you...this looks interesting...Is this indicator available for MT4?
I am not a programmer(very computer illiterate!)
Originally Posted by Perky
i use this to guage my uk open trades for direction
it colors the high/low of the asian session
pretty good really
Thank you for sharing your $TrillionDollarDaysHML indicator Sir,
May I ask question ?
The using of this indi, is it the same with Session indicator Sir ?