Free Metastock Indicator & System

V

vvvv

Guest
#22
COPPOCK FOR AMIBROKER.

Description:

The Coppock indicator was designed to indicate the and of the bear market and identify an early entry to the new bull market.
Coppock designed it to be used only on the monthly index charts but it is an excellent contrarian indicator and can be used
on charts of very liquid stocks.

The present indicator uses Coppock's formula but presents the indicator as a histogram. The buy signal is the first higher
(dark blue) bar. This occurs after the indicator turns up from below zero. But beware that sometimes false signals are
generated. These can be avoided if a 30 week ema filter is used. So buy stocks on a Coppock histogram signal only after
price has closed above the 30 week ema.









_SECTION_BEGIN("Coppock");
/*
Coppock based on original formula of Coppock.

Mov(ROC(C,14,%) + ROC(C,11,%)10;

AFL by Bill Dodd
*/

GraphXSpace=1;
Param("EMA",10,2,100,1,0);
r1=ROC(C,14);
r2=ROC(C,11);
C=EMA((r1+r2),10);

Plot(IIf(C>0 AND ROC(C,1)>0,C,0),"",42,6); /* uptrend */
Plot(IIf(C>0 AND ROC(C,1)<0,C,0),"",32,6); /* up sideways */
Plot(IIf(C<0 AND ROC(C,1)>0,C,0),"",49,6); /* down sideways */
Plot(IIf(C<0 AND ROC(C,1)<0,C,0),"",29,6); /* down trend */



/*
dynamic_color = IIf (C >0, colorRed, colorGreen );
Plot(C,"", dynamic_color ,styleHistogram | styleThick );*/

_SECTION_END();
 
#23
Happy Holi.

Once again let me illustrate that 1 of my free 'Long Only' indicator is still working in present mkt situation.Those interested can go to
http://www.brave.net.au/ms/list_indicators.php?alpha=C#
then click on the "Contratrend Buy" ,copy paste the code in Metastock ,
bingo you have a Long Only even in extreme Bearish Mkt Sentiment with the Bar's Low as Stop Loss.
Enjoy.

Asish
Hi

Asishji and chintanji


I saw the indicators posted by asishji namely new MAcd an d contra BUY
But those r indiacators as far as I understand ...

One has to apply it for each and every ctock chart to get the idea

so I request If u have the exploration code pls post the same coz explorn can filter the stocks meeting ur criteria

waitng for ur reply

ds2778:)
 
#25
My Free contibution:
A New type of MACD
Any codes when displayed in this forum if does not gets criticised then it can safely be concluded this is 'Original' in it's form accepted as being the 1st Code Internationaly accepted :

http://forum.equis.com/forums/permalink/23375/23375/ShowThread.aspx#23375

The 2nd Most popular forum for Free Metastock Formula

http://www.brave.net.au/ms/list_indicators.php?alpha=R#

Free "System Trading Code"
A Contratrend Entry


http://www.brave.net.au/ms/list_indicators.php?alpha=C#

In Monte Carlo test it gives above 63 % Hit with v.good Avg Profit Rupee wise
& with little tweaking it jumps to 76% Hit & still better Avg Profit.

These are Freely given in this Forum since few months.
Hi

Asishji

here's ur post in which u have shared ur codes .

In that , I 'll be thankful to u if u could post exploration for ur new type of MACD crossover exploration.( In fact frm the indicator formula I tried at my level but I am not much familiar with coding so.....)

Also same thing for the contra trend BUY indicator

I wish to filter the securities to give the results for above indicators.


Thanx

ds2778:)
 
U

uasish

Guest
#26
Anotherway to code MA :=
..................................................................

If(Cum(1)=1,C,PREV*(1-.1818)+C*.1818);
...................................................................
 
#27
Hello

This is a code / exploration where you can filter the stocks which are making consecutive 3 days higher high & higher low, where price is >100.00 & volume>100000.Hope this may be useful for somebody.


a:close
b:high
c:low
d:volume
filter:H>Ref(H,-1) AND Ref(H,-1)>Ref(H,-2) AND Ref(H,-2)>Ref(H,-3) AND
L>Ref(L,-1) AND
Ref(L,-1)>Ref(L,-2) AND
Ref(L,-2)>Ref(L,-3)AND
V>Ref(V,-1) AND
Ref(V,-1)>Ref(V,-2) AND
V>100000 AND
C>100.00

Sunando
 
#28
To one humble learner of this forum :=
The following code has helped me in past.(Though presently i dont use this one)

Tweak this as per your requirements,i used to see the 3rd or 4th Top / Bottom,with breaking Trendline of this indicator ,with zero line penetration.


"Market - Efficiency - Ratio"
.........................................................8.........................................
{Market Efficiency Ratio}

pds:= Input("Periods",3,200,8);
Speed:= C - Ref(C, -pds);
Volatility:= Sum(Abs(C - Ref(C, -1)),pds);
Efficiency:= Speed / Volatility;
MER:= Mov(Mov(Efficiency, 5,E),3,E);
MER;
0;
........................................................8..........................
This is for Metastock
If you develop something interesting plz. keep us posted.
Asish Da,
since metastock language is foreign to me I have tried to convert it into afl.
would you plz tell me whats the parameter within teh input function?
is it Input("parameter name",default value, max value, min value);
please elaborate the trading strategy also what u used in past using this one.
i will post the afl in this thread as soon as i get the answer from you.

Regards
Debu
 
#30
Thanx Asish da.
Here is the afl for Amibroker user

/*"Market - Efficiency - Ratio"
.................................................. .......8.........................................
{Market Efficiency Ratio}
*/
pds= Param("Periods",8,3,200);
Speed= C - Ref(C, -pds);
Volatility= Sum(abs(C - Ref(C, -1)),pds);
Efficiency= Speed / Volatility;
MER= EMA(EMA(Efficiency, 5),3);
Plot(MER,"MKt Eff. Ratio",colorRed);
Plot(0,"ZERO LINE",colorBlue);
 

Similar threads