Need help indentifying indicator - page 160

 

Forex System

Hi Guys,

i search this Forex system, see attachment ! know you that ?

Files:
system.jpg  125 kb
 

I don't know if this CODE means something to you M.

-----------------------------------------------------

Code:

Pds:=Input("Period",OPT1,OPT2,OPT3);

Sensitivity:=Input("Std Dev",.OPT4,OPT5,OPT6);

UseClose:=Input("Use Close",0,1,0);

Should be

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

Opt1 min should be 5 Max should be 50 and steps should be 5

Opt2 min should be 1 and Max should be 5 and steps should be 1

Opt3 Min should be 0 and max should be 1 and steps should be 1

under the long enrty

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season=1 and Ref(Season,-1)1

Under the sell order tab

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season1 and Ref(Season,-1)=1

under the sell short order tab

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season=-1 and Ref(Season,-1)-1

in the buy to cover tab

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season-1 and Ref(Season,-1)=-1

---------------------------------------------------------------

 
bmurat:
Hi Guys,

i search this Forex system, see attachment ! know you that ?

bmurat

You can take a look at this thread : https://www.mql5.com/en/forum/179529

Or this one : https://www.mql5.com/en/forum/trading_systems

 
BASSRAMY:
I don't know if this CODE means something to you M.

-----------------------------------------------------

Code:

Pds:=Input("Period",OPT1,OPT2,OPT3);

Sensitivity:=Input("Std Dev",.OPT4,OPT5,OPT6);

UseClose:=Input("Use Close",0,1,0);

Should be

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

Opt1 min should be 5 Max should be 50 and steps should be 5

Opt2 min should be 1 and Max should be 5 and steps should be 1

Opt3 Min should be 0 and max should be 1 and steps should be 1

under the long enrty

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season=1 and Ref(Season,-1)1

Under the sell order tab

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season1 and Ref(Season,-1)=1

under the sell short order tab

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season=-1 and Ref(Season,-1)-1

in the buy to cover tab

Pds:=Opt1;

Sensitivity:=Opt2;

UseClose:=Opt3;

maMP:=mov(mp(),Pds,e);

maATR:=mov(ATR(1),Pds,e);

ADM:=maMP-maATR/2+Stdev(maATR,Pds)*Sensitivity;

Entry:=if(UseClose,Close>ADM,High>ADM);

Exit:=if(UseClose,ADM>Close,ADM>Low);

{ CLEAN - REMOVE REDUNDANT SIGNAL, 1=Buy -1=Sell }

Signal:=Cum(IsDefined(entry+exit))=1; { Enough data ? }

Signal:=ValueWhen(1,entry-exit0 OR Signal,entry); { Current }

entry:=Signal*(Alert(Signal=0,2) OR entry*Cum(entry)=1); { Current or 1st }

exit:=(Signal=0)*(Alert(Signal,2) OR exit*Cum(exit)=1); { Current or 1st }

entry:=(exit=0)*entry; { favor EXIT }

Signal:=Entry-Exit; { Signal }

Season:=ValueWhen(1,Signal0,Entry)*2-1; { Signal active }

Season-1 and Ref(Season,-1)=-1

---------------------------------------------------------------

BASSRAMY

As far as I see all have the same basic value (the ADM line). What is different are the set of rules to enter of exit the trade but those are not influencing the value of the ADM line.

 

Thank you ..............

 

A silly request maybe someone can help me here as google didn't. I am looking for an indicator that I used to have (but lost damnit). It showed the amount of pips you had in profit or loss for each trade that was open.

But I really can't find it so I hope someone could help me here. It looked like this

Trades open:

EUR: +5 Pips

USDJPY: -12 Pips

etc.

Thanks in advance!

 
Brainios:
A silly request maybe someone can help me here as google didn't. I am looking for an indicator that I used to have (but lost damnit). It showed the amount of pips you had in profit or loss for each trade that was open.

But I really can't find it so I hope someone could help me here. It looked like this

Trades open:

EUR: +5 Pips

USDJPY: -12 Pips

etc.

Thanks in advance!

Here are some of those kind of the indicators

 
Demos6:
Here are some of those kind of the indicators

The rest...

 

Ah it was the Luktom one, thank you very much

 

Hello Everyone!

Kindly have a look at the attached pic,,though the INDICATOR is so simple but ,,,can not seem to find in the forum(some what similar to your "swing alert" indicator)......the better if there's a non-lagging multitime-frame version....

Thank U!

http://imageshack.us/a/img208/2515/cuv2.jpg