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.
Can someone help me create a MTF stoch bars indicator in a seperate window
Just like the show of DIGISTOCH.mq4. It seems that DIGISTOCH.mq4 is a MTF stoch bars indicator. But see the arrows, their values are different. So I think maybe DIGISTOCH.mq4 is not the one I want or there is something wrong.
Just like the show of DIGISTOCH.mq4. It seems that DIGISTOCH.mq4 is a MTF stoch bars indicator. But see the arrows, their values are different. So I think maybe DIGISTOCH.mq4 is not the one I want or there is something wrong.
Thanks
You can change the %K, %D and Slowing if you like, the programmer made it changeable.
When you attach the indicator to your currency pair instead of hitting "OK" right away, single click the "Inputs" tab and you'll see where you can change it if you like. Default is 8,3,3 but you can change it to 5,3,3 or whatever else you want to.
See he did it here:
Code:
extern int K_period = 8;
extern int D_period = 3;
extern int S_period = 3;
You can change the %K, %D and Slowing if you like, the programmer made it changeable.
When you attach the indicator to your currency pair instead of hitting "OK" right away, single click the "Inputs" tab and you'll see where you can change it if you like. Default is 8,3,3 but you can change it to 5,3,3 or whatever else you want to.
See he did it here:
Code:
extern int K_period = 8;
extern int D_period = 3;
extern int S_period = 3;
you will probably find that the original indicator has PRICE set to Low/High
whereas the DIGISTOCH is set to Open/Open plus the original stoch i think is set to Simple MA and DIGI to EMA and that can make a big difference to the readings.
you will probably find that the original indicator has PRICE set to Low/High
whereas the DIGISTOCH is set to Open/Open plus the original stoch i think is set to Simple MA and DIGI to EMA and that can make a big difference to the readings.
I checked them.
DIGISTOCH seems to use close/close and it shows signal value only.
But that's what I can do. I don't know how to change them.
Can somebody help me?