Experiments in Technical Analysis

Friends

I have uploaded the afls and Metastock codes which had to deleted because of the restriction on the space for attachments. I have also included a PDF document containing the excerpts from this thread.

The Link for the 4shared folder is
http://www. 4 s h a r e d.com/dir/7777958/973587e4/Traderji_Stuff.html

Please remove the spaces in the word 4shared..

Regards

Karthik
ohh sir
gem of collections
BIG THANK
even this is not enough
regards:)
 
Hi

I am not an expert in trading or using Amibroker. Still I have collected many formulas & formats which I am uploading to this site, interested persons can enjoy them down loading & adding to their AB folder. There may be some repeatations as I have collected them from many sites in different times.

http://r ap idshar e.com/files/129303534/Formulas.rar.html

Sunando
 

aad

Active Member
Friends

I have uploaded the afls and Metastock codes which had to deleted because of the restriction on the space for attachments. I have also included a PDF document containing the excerpts from this thread.

The Link for the 4shared folder is
http://www. 4 s h a r e d.com/dir/7777958/973587e4/Traderji_Stuff.html

Please remove the spaces in the word 4shared..

Regards

Karthik
Thanks a lot sir.... and congratulations for going a step higher on Traderji i.e. joining elite club of Moderators....

Regards,

Abhay
 
Thanks a lot sir.... and congratulations for going a step higher on Traderji i.e. joining elite club of Moderators....

Regards,

Abhay
Yikes,Abhay......Karthik's been a moderator all this while!:)

Saint
 

rpc

Active Member
hi karthik
I visited this thread after a long time and was happy to notice your status as moderator.Pls accept my congratulations.Also uploading the AFL's at one place is a great service to all the traderji members.Thanks for that.If possible pls put it all in one pdf so it is easy to dnld,maintain and refer
I could not locate the pdf you mentioned in your post.Has it been removed ?
with best wishes
rpc
ps:Awating discussions on some new technical indicators
 
Last edited:
Hi karthk
Please rectify the following afl.It is not showing any error and also NOT showing buy or sell price along with alarm ,when i excute in automatic analysis menu
--------
ADX_Pds = Param("ADX Range", 10, 3, 300);
DI_Pds = Param("+DI/-DI Range", 14, 3, 300);

My_ADX = ADX(ADX_pds);
My_PDI = PDI(DI_Pds);
My_MDI = MDI(DI_Pds);
/*Plot(My_ADX, "ADX", colorBlue, styleThick);
Plot(My_PDI, "+DX", colorGreen);
Plot(My_MDI, "-DX", colorRed);*/
Buy=Cross( Plot(My_PDI, "+DX", colorGreen),Plot(My_MDI, "-DX", colorRed));
Sell=Cross( Plot(My_MDI, "-DX", colorRed),Plot(My_PDI, "+DX", colorGreen));
Filter=Buy OR Sell;
Sell=ExRem(Sell,Buy); Buy=ExRem(Buy,Sell);
AddColumn(Buy,"Buy");
AddColumn(Sell,"sell");
AddColumn(BuyPrice,"BuyPrice");
AddColumn(SellPrice,"SellPrice");
AlertIf(Buy, "SOUND C:\\PROGRAM FILES\\AMIBROKER\\BUY.WAV", "Buy", 3);
AlertIf(Sell, "SOUND C:\\PROGRAM FILES\\AMIBROKER\\SELL.WAV", "Sell", 3);

---------------------------------
i am new to amibroker and the same code i used instead of example.afl in automatic analysis menu.And also suggest me better indicator for intraday trading r than these ADX,stochastics and MACD.These three now i am using
I hope i will receive complete afl please
regards
Bhulokeshwar
 

karthikmarar

Well-Known Member
Bhulokeshwar

Please try this
===========================

ADX_Pds = Param("ADX Range", 10, 3, 300);
DI_Pds = Param("+DI/-DI Range", 14, 3, 300);

My_ADX = ADX(ADX_pds);
My_PDI = PDI(DI_Pds);
My_MDI = MDI(DI_Pds);
/*Plot(My_ADX, "ADX", colorBlue, styleThick);
Plot(My_PDI, "+DX", colorGreen);
Plot(My_MDI, "-DX", colorRed);*/
Buy=Cross(my_pdi,my_mdi);
Sell=Cross(my_mdi,my_pdi);
//by=Cross( Plot(My_PDI, "+DX", colorGreen),Plot(My_MDI, "-DX", colorRed)); this is incorrect
//Sel=Cross( Plot(My_MDI, "-DX", colorRed),Plot(My_PDI, "+DX", colorGreen));this is incorrect
Plot(my_pdi,"",colorRed,1);
Plot(my_mdi,"",colorBlue,1);
PlotShapes(shapeUpArrow*Buy, colorLime, my_PDI,20,20 );
PlotShapes(shapeDownArrow*Sell, colorRed,my_mdi,20,20 );
PlotShapes(IIf(Buy,shapeCircle+ shapePositionAbove,shapeNone),colorWhite,1000);
Filter=Buy OR Sell;
Sell=ExRem(Sell,Buy); Buy=ExRem(Buy,Sell);

AddColumn(Buy,"Buy");
AddColumn(Sell,"sell");
AddColumn(BuyPrice,"BuyPrice");
AddColumn(SellPrice,"SellPrice");
AlertIf(Buy, "SOUND C:\\PROGRAM FILES\\AMIBROKER\\BUY.WAV", "Buy", 3);
AlertIf(Sell, "SOUND C:\\PROGRAM FILES\\AMIBROKER\\SELL.WAV", "Sell", 3);
===================

Make sure that the wav files are available in the location mentioned


regards
 
Hi karthik
thank u veru much for taking pain in the midnight for me.It is working in automatic analysis and main sheet also.
Can u suggest me how to buy and sell by using MACD and ADx indicators.
Thanks again
Bhulokeshwar
 

Similar threads