system trading is best if used Systematically

fahed

Active Member
#81
Abhi,

1 suggestion, why dont you create one AFL for this and create optimization for it to, So we can backtest it on diffrent stocks and use the optimized values.

regards,
Fahed
 

fahed

Active Member
#82
Abhi,

1 suggestion, why don't you create one AFL for this and create optimization for it to, So we can backtest it on different stocks and use the optimized values.

regards,
Fahed
 

abhiwhy

Well-Known Member
#83
sir,
can u explain how 2 plot this in amibroker.
in ami use 3and 13 period exponential moving average in price chart

add a new pane and add adx , ADX, DI+ ,DI- will be displayed in the same pane , in blue, green and red respectively , right click/parameters / in DI+ and DI- section chose the option hide , now drag the simple moving average formula in adx pane , right click / parameters and adjust value of moving average to 9 and it is ready :thumb::thumb::thumb:
 

abhiwhy

Well-Known Member
#84
here is the amibroker afl , buy and hold during greenbars no position during black bars and short in case of red bars , (using this technique )

_SECTION_BEGIN ("abhi market trend");

Plot(C, "", IIf(ADX(14)> MA(ADX(14),9) AND EMA(C,3)>EMA(C,13) , colorGreen, IIf(ADX(14)>MA(ADX(14),9)AND EMA(C,13)>EMA(C,3) ,colorRed, colorBlack)), ParamStyle("Price
Style",styleBAR,stylethick));

MYcolor = IIf(ADX(14)> MA(ADX(14),9)AND EMA(C,3)>EMA(C,13) , colorGreen, IIf(MA(ADX(14),9)>ADX(14)AND EMA(C,13)>EMA(C,3),colorRed, colorBlack));

PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar);

_SECTION_END();


:clap:
 

abhiwhy

Well-Known Member
#85
it will look something like this

 
#86
Thank you Abhi For afl.

I am confused with condition which you given on first page
Kindly give those condition in brief again.

As on first page you mentioned 3/13/34 and 3/15/34 with ADX. Also your afl uses 13 days EMA whereas on first page you said 15 days.

Kindly suggest
 
Last edited:

abhiwhy

Well-Known Member
#87
Thank you Abhi For afl.

I am confused with condition which you given on first page
Kindly give those condition in brief again.

As on first page you mentioned 3/13/34 and 3/15/34 with ADX. Also your afl uses 13 days EMA whereas on first page you said 15 days.

Kindly suggest
results using 313 or 315 do not make any remarkable changes, diff. is that one is slightly faster and one slightly slower , so if and techniqes main base is using adx and its ma. crossovers and moving average crosses just provide directions ,ao user can adjust ma sets according to his choice , if u need 315 , than just change all 13 values to 15 it will work accordingly .(also there is no use of 34 ma it was just for explanation about 315 technique in the first page ).
 

bandlab2

Well-Known Member
#90
daily (it is not for day trading)
abhi, thats a good point. i scanned this for intraday , its giving mixed results. on daily it gives excellent results , but trades are few and far between

any twaek for intraday ?
 

Similar threads