Simple Coding Help - No Promise.

amitrandive

Well-Known Member
in this code i can find only those scripts who are currently trading below 20 .....

velmont86

First of all , you are not reading the earlier posts since you asked for this , in the next post you ask for scrips below adx 20.When this code was posted , you did not read that one either.
http://www.traderji.com/amibroker/90119-simple-coding-help-no-promise-166.html#post974615

Today morning you modified this to new request adx below 25 and more than 20.
http://www.traderji.com/amibroker/90119-simple-coding-help-no-promise-167.html#post974891

At-least be gracious enough to thank for the first code instead of complaining.
 

velmont86

First of all , you are not reading the earlier posts since you asked for this , in the next post you ask for scrips below adx 20.When this code was posted , you did not read that one either.
http://www.traderji.com/amibroker/90119-simple-coding-help-no-promise-166.html#post974615

Today morning you modified this to new request adx below 25 and more than 20.
http://www.traderji.com/amibroker/90119-simple-coding-help-no-promise-167.html#post974891

At-least be gracious enough to thank for the first code instead of complaining.

no sir ...i m not complaining......i just want to clear my view about that afl....i'll be very grateful if i can find what i need.....
 

amitrandive

Well-Known Member
i want to expolre those scripts....

Like adx is trading below 25 more than 20 periods....
no sir ...i m not complaining......i just want to clear my view about that afl....i'll be very grateful if i can find what i need.....
Here is the latest exploration
Code:
_SECTION_BEGIN("adx");
SetChartOptions(0,0,0,1,1);
range = Param("periods", 14, 2, 200, 1 );
ad = ADX(range);
nt=ad>20 AND ad<25  ;
Filter=nt; 
AddColumn(ad,"adx",1.4,20);
_SECTION_END();
 

extremist

Well-Known Member
hello:)


as in price chart v see top and bottom for any candle

same way can v see RSI or stoch indictor in candle or bar mode
Yes shubh03 it is possible.

Here i present u the OHLC candle form RSI.
similarly u can do others too.

Code:
periods = Param( "Periods", 21, 1, 200, 1 );
//r= RSI( periods);
O=RSIa(O, periods);
H=RSIa(H, periods);
L=RSIa(L, periods);
C=RSIa(C, periods);

PlotOHLC(O,H,L,C,"RSI "+periods, ParamColor( "Color", colorBlack ), ParamStyle("Style",styleCandle)  );
_N(Title = StrFormat(" \n Op=> %g, \n Hi=> %g, \n Lo=> %g, \n Cl=> %g, \n " , O, H, L, C));
 

pratapvb

Well-Known Member

dell

Well-Known Member


the trendline color is red here , i want to change it default to black , how to do this ?
currently have to modify colour each time by double clicking it and in parameters i have to change colour manually . wanna to change permanently black from red .
 

Similar threads