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 learning how to compile files by Visual Studio too and I am studying Stochastic NN
I am using this Indicator to Know It's behavior with the good trend and bad trend
for example : I am using this code when I plan to go short
Code:
int BuildT(int i) // زٍَ ïîëَ÷àهى ïًàâèëüيûé îٍâهٍ ïî ïهًهêَïëهييîٌٍè
{ // èëè ïهًهïًîنàييîٌٍè
int T= 0;
double Previous = djama(n,p,q,i+1);
double Current = djama(n,p,q,i);
double Next = djama(n,p,q,i-1);
if (Current <= Next) T = -1;
if (Current > Next) T = 1;
return (T);
and this code when I am planing to go long
Code:
int BuildT(int i) // زٍَ ïîëَ÷àهى ïًàâèëüيûé îٍâهٍ ïî ïهًهêَïëهييîٌٍè
{ // èëè ïهًهïًîنàييîٌٍè
int T= 0;
double Previous = djama(n,p,q,i+1);
double Current = djama(n,p,q,i);
double Next = djama(n,p,q,i-1);
if (Current < Next) T = -1;
if (Current >= Next) T = 1;
return (T);
}
Then I see the result
I control by (lastBar) from parameter
Sounds really interesting, thank you for sharing. But it seems that your last picture is missed, so I can't see it.
anyone can help me to put svm indicator of BARNIX in mt4? because i have put svm 1,2,3,4,5 in expert/indicators folder but nothing !!! thank you very much attend your reply .