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 was interested if there are any stochastic indicators that can calculate what is the price price where two K% (or D%) of two Stochastics crossover.
thanks.
i was interested if there are any stochastic indicators that can calculate what is the price price where two K% (or D%) of two Stochastics crossover.
thanks.
Melph's indi (prev.pages) shows 3(tree) stoch. crossover
Stoch (6,3,3) to Stoch (24,3,3). Place the template in the template folder and not in the indicator folder.
Google for keywords: "Spuds Stochastic Thread Theory"
Has anyone tried to make an EA for the "Spuds Stochastic Threads", would that be too complex? Too bad the Spuds topic over at FF was not continued much further into this intriguing indicator...
__________________ Pipping ain't easy but someone's got to do it!
i have a new startey to make ea. who can built up togater with me the stochastic ea....that can follow up the market movement... i have the setting for stochastic and the agorithem for the stochastic that can be bulit....
i have a new startey to make ea. who can built up togater with me the stochastic ea....that can follow up the market movement... i have the setting for stochastic and the agorithem for the stochastic that can be bulit....
I´ve moved your post to this thread where you can find many EA stochastic based. Take a look at first pages.
I need an alert for the stochastic (MT4), the point is, I might have a chart for one hour, but the stochastic which I’d like to watch is set for the daily (As per the attached chart).
If I add the normal Stochastic alert (Stochastic_Cross_Alert) it will give an alert on the one hour Stochastic cross as the chart is hourly, I need to set it for the Daily one.
This is my favorite oscillator and I can't find it in MQL4. I am hoping someone likes the look of it and will code it up for the TSD forum. I can do some Tradestation but no MQL4.
Pretty simple, it is Hull-Stochastic. A raw %k stochastic with Hull MA post-smoothing. I've never seen anyone use it before, I came up with it one night (not exactly rocket science, but it's nice). I have enclosed a pic of it and how I often use it. You can see it is pretty like a woman. Nice timely reversal points, nice and smooth, and it identifies trends very well with the longer Hull settings. It is so smooth I don't bother with a signal line, just the oscillator itself.
The pic shows the H-Stoch overlaid 3 times, with settings of (4,8) (30,40) and (40,50). Those numbers are in this order: (raw %k periods, Hull smoothing periods).
If anyone is interested here is the code. It is in an indicator and a function. I wrote the code for the 3 H-Stoch panel with the colors and I got the function code from the Tradestation forum. I appreciate any help and others might like this as well.
if Value3 >= Value3[1] then
begin
setplotcolor[1](5, green);
Plot5 (Value3, "HStoch3");
end
else if Value3 < Value3[1] then
begin
setplotcolor[1](5, Value5);
Plot5 (Value3, "HStoch3");
end;
if Value2 >= Value2[1] then
begin
setplotcolor[1](6, cyan);
Plot6 (Value2, "HStoch2");
end
else if Value2 < Value2[1] then
begin
setplotcolor[1](6, Value7);
Plot6 (Value2, "HStoch2");
end;
if Value1 >= Value1[1] then
begin
setplotcolor[1](7, Value4);
Plot7 (Value1, "HStoch1");
end
else if Value1 < Value1[1] then
begin
setplotcolor[1](7, red);
Plot7 (Value1, "HStoch1");
end;
Plot8(50, "MidLine");
Implementation below is more efficient with lengthy Weighted Moving Averages.
In addition, the length needs to be converted to an integer value after it is halved and
its square root is obtained in order for this to work with Weighted Moving Averaging
}