#
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Home
Forex Forum
+ Add Script
Metastock
Expert Advisors
Explorations
Indicators
Trading Systems
Metatrader
MQL Experts
MQL Indicators
MQ4 Experts
MQ4 Indicators
MQ4 Scripts
Tradestation
Functions
Indicators
PaintBars
ShowMe
Trading Systems
Amibroker
Commentaries
Explorations
Functions
Indicators
Trading Systems
Contact us
Newsletter
Group: Metatrader MQ4 Experts
Title: ADX cross Alert EXPERT
Description:
ADX cross Alert EXPERT (doesnt trade - just alerts)
//+------------------------------------------------------------------+ //| ADXcross EXPERT | //| Perky_z | //| | //+------------------------------------------------------------------+ #property copyright "Perky_z@yahoo.com " #property link "http://groups.yahoo.com/group/MetaTrader_Experts_and_Indicators/" //+--------------------------------------------------------------------------------------------------+ //| Alerts in hand with ADXcrosses Indicator they dont need to be run together | //+--------------------------------------------------------------------------------------------------+ // Alerts on cross of + and - DI lines // I use it on 15 min charts // though looks good on any time frame // use other indicators to confirm this trigger tho //---- input parameters double b4plusdi,b4minusdi,nowplusdi,nowminusdi; //---- //---- indicators //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ //| Setting internal variables for quick access to data | //+------------------------------------------------------------------+ int start() { b4plusdi=iADX(NULL,0,14,PRICE_CLOSE,MODE_PLUSDI,1); nowplusdi=iADX(NULL,0,14,PRICE_CLOSE,MODE_PLUSDI,0); b4minusdi=iADX(NULL,0,14,PRICE_CLOSE,MODE_MINUSDI,1); nowminusdi=iADX(NULL,0,14,PRICE_CLOSE,MODE_MINUSDI,0); //Comment (nowplusdi); //+------------------------------------------------------------------+ //| Money Management mm=0(lots) mm=-1(Mini) mm=1(full compounding) | //+------------------------------------------------------------------+ //---- //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ if(b4plusdi>b4minusdi && nowplusdi
nowminusdi) { Alert(Symbol()," ",Period()," ADX BUYING"); } } return(0); // }
Author/Source:
Perky_z@yahoo.com
Forex Directory
|
Forex Trading Systems
|
Privacy
|
Disclaimer
|
Contact