Adx exploration formula

#1
SEniors and afl writers

plz provide the exploration afl for following

rising adx(14) abv 25
chart color blue

declining adx (14) below 40
chart color red
 

johnnypareek

Well-Known Member
#2
SEniors and afl writers

plz provide the exploration afl for following

rising adx(14) abv 25
chart color blue

declining adx (14) below 40
chart color red
Here it is

HTML:
A=ADX();
A1=Ref(ADX(),-1);
BULL=A>25 AND A>A1;
BEAR=A<40 AND A<A1;
Color=IIf( BULL, colorGreen, IIf( BEAR, colorRed, 0 ));
Plot(C,"",COLOR,128);
johnny
 

johnnypareek

Well-Known Member
#7
Hello johnny... i m not able to explore this above Adx exploration. Only can c the chart of it.
Sorry, I didn't read properly that u need exploration .Okay here it is

HTML:
A=ADX();
A1=Ref(ADX(),-1);
BULL=A>25 AND A>A1;
BEAR=A<40 AND A<A1;
Color=IIf( BULL, colorGreen, IIf( BEAR, colorRed, 0 ));
Plot(C,"",COLOR,128);

Filter =bull OR bear;
AddColumn(C,"cmp",1.2);
AddColumn(bull,"BULL",1.2);
AddColumn(bear,"BEAR",1.2);
Wnjoy
 
#8
Sorry, I didn't read properly that u need exploration .Okay here it is

HTML:
A=ADX();
A1=Ref(ADX(),-1);
BULL=A>25 AND A>A1;
BEAR=A<40 AND A<A1;
Color=IIf( BULL, colorGreen, IIf( BEAR, colorRed, 0 ));
Plot(C,"",COLOR,128);

Filter =bull OR bear;
AddColumn(C,"cmp",1.2);
AddColumn(bull,"BULL",1.2);
AddColumn(bear,"BEAR",1.2);
Wnjoy

plz provide plot the circle shapes on price chart for below mentioned formula
rising start point of adx abov 25 blue circle
declining start point of adx below 40 yellow circle
 
Last edited:

johnnypareek

Well-Known Member
#9
chk this

HTML:
A=ADX();
A1=Ref(ADX(),-1);
BULL=A>25 AND A>A1;
BEAR=A<40 AND A<A1;
Color=IIf( BULL, colorGreen, IIf( BEAR, colorRed, 0 ));
Plot(C,"",COLOR,64);
bull=ExRem(bull,bear);
bear=ExRem(bear,bull);
PlotShapes(IIf(bull, shapeHollowCircle, shapeNone),colorGreen, 0,Low,5);  
PlotShapes(IIf(bear, shapeHollowCircle, shapeNone),colorRed, 0,High,-5); 
Filter =bull OR bear;
AddColumn(C,"cmp",1.2);
AddColumn(bull,"BULL",1.2);
AddColumn(bear,"BEAR",1.2);
 
#10
chk this

HTML:
A=ADX();
A1=Ref(ADX(),-1);
BULL=A>25 AND A>A1;
BEAR=A<40 AND A<A1;
Color=IIf( BULL, colorGreen, IIf( BEAR, colorRed, 0 ));
Plot(C,"",COLOR,64);
bull=ExRem(bull,bear);
bear=ExRem(bear,bull);
PlotShapes(IIf(bull, shapeHollowCircle, shapeNone),colorGreen, 0,Low,5);  
PlotShapes(IIf(bear, shapeHollowCircle, shapeNone),colorRed, 0,High,-5); 
Filter =bull OR bear;
AddColumn(C,"cmp",1.2);
AddColumn(bull,"BULL",1.2);
AddColumn(bear,"BEAR",1.2);
it will be great if following condition are show on price chart as text


ADX Value Trend Strength

0-25 Absent or Weak Trend
25-50 Strong Trend
50-75 Very Strong Trend
75-100 Extremely Strong Trend
 

Similar threads