Experiments in Technical Analysis

Hi Karthikmarar,

I just joined Traderji and was interested in your indicator MARSI for Metastock.
You mentioned that this MaRsi for metastock was attached in your post but I was unable to find the indicator for download. Can you kindly let me know how to access/get this marsi indicator ?? I shall be most thankful for your kind assistance.
 
Hi, Karthik.. My journey in Technical s began a year back. While studying I went thru many articles of yours on various other sites.

After many trial and errors I have programmed this chart which now guides me properly and provides d basic info of whether to trade or not to trade a particular stock.

Attached r some images for ur information. Some minor things need to be fixed up in d chart.

Regards,

Prasad.








 
hello karthikmarar...

i have just started with Metastock and came across this thread. after going through and reading abt your TA creations i would like to study them hence
can you please once again give the link to MABIUTS for metastock??

thank you

Ritesh Bafna
 
hello,

once again i would like to request to the members if any one has the ALF and metastock formula files which were deleted back in may 2008 by karthikji then please upload them...

thank you
ritesh
 
how come no one has MABITUS afl (apart from the ones given on page 126)....?? or is it that no one wants to share.... ;)
 

a1b1trader

Well-Known Member
Hi
I have this one.
Don't know whether it is similar to one that is on page 126, but this one is from different source.

_SECTION_BEGIN("MABIUTS"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

Buy= EMA(C,13)>EMA(EMA(C,13),9) AND Cross (C,Peak(C,5,1)) ; Sell=Cross (EMA(EMA(C,13),9),EMA(C,13));

Short=EMA(C,13)<EMA(EMA(C,13),9) AND Cross (Trough(C,5,1),C) ; Cover =Cross (EMA(C,13),EMA(EMA(C,13),9));// OR Cross (C,Peak(C,2,1)) ; Short = ExRem(Short,Cover); Cover = ExRem(Cover,Short);

Buy = ExRem(Buy,Sell); Sell = ExRem(Sell,Buy);

MYcolor = IIf( EMA(C,13)>EMA(EMA(C,13),9) AND C>Peak(C,2,1), colorLime, IIf(EMA(C,13)>EMA(EMA(C,13),9) AND C<Peak(C,2,1),colorBlue, colorRed));

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

shape = Buy * shapeUpArrow + Sell * shapeDownArrow + Short * shapeDownTriangle + Cover * shapeUpTriangle;

PlotShapes( shape, IIf( Buy, colorGreen, IIf(Short, colorYellow ,IIf(Cover, colorTurquoise,colorRed ))),0, IIf( Buy, Low, High ) );

GraphXSpace = 5; dist = 1.5*ATR(10);

for( i = 0; i < BarCount; i++ ) { if( Buy ) PlotText( "Buy\n@" + C[ i ], i, L[ i ]-dist, colorGreen ); if( Sell ) PlotText( "Sell\n@" + C[ i ], i, H[ i ]+dist, colorRed); if( Short ) PlotText( "Short\n@" + C[ i ], i, H[ i ]+dist, colorYellow); if( Cover ) PlotText( "cover\n@" + C[ i ], i, H[ i ]+dist, colorTurquoise);

}

_SECTION_BEGIN("Volume"); Plot( Volume, _DEFAULT_NAME(), ParamColor("Color", colorLavender ), styleNoTitle | ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick | styleNoLabel, maskHistogram ), 2 );

_SECTION_BEGIN("EMA1"); P = ParamField("Price field",-1); Periods = Param("Periods", 15, 2, 200, 1, 10 ); Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); _SECTION_END();

_SECTION_BEGIN("EMA2"); P = ParamField("Price field",-1); Periods = Param("Periods", 15, 2, 200, 1, 10 ); Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); _SECTION_END();
 

Similar threads