MACD Exploration using weekly data

#1
Hi all...

can somebody help me in developing an exploration for MACD-sell/buy
signals using for the weekly data????

Serious help required from all those experts sitting out there on
this forum.


nit....))))
 

Traderji

Super Moderator
#2
MACD Buy Signal

EXPLORATION NOTES

-----------------

Securities that just generated MACD buy signal



CALCULATION PARAMETERS
----------------------

Periodicity : Weekly

COLUMN FORMULAS
---------------

Column A : Close

CLOSE

Column B : MACD

macd()

Column C : Previous MACD

ref(macd(),-1)

Column D : Mov Ave

mov(macd(),9,EXPONENTIAL)

Column E : Previous Mov Ave

ref(mov(macd(),9,EXPONENTIAL),-1)

Column F : % above

((macd() - mov(macd(),9,EXPONENTIAL))/abs(mov(macd(),9,EXPONENTIAL))) * 100

FILTER FORMULA
--------------

Filter Enabled: Yes

Formula:

when(macd(),>,mov(macd(),9,EXPONENTIAL)) AND when(ref(macd(),-1),<,ref(mov(macd(),9,EXPONENTIAL),-1))
 
U

uasish

Guest
#3
nit_oks said:
Hi all...

can somebody help me in developing an exploration for MACD-sell/buy
signals using for the weekly data????

Serious help required from all those experts sitting out there on
this forum.


nit....))))
Dear Sir,
Traderji has given an excellent formula,however if u want a crossover MACD
then u can use this one :put an "AND" after Traderji's formula in the filter section then put this one along with that
....................................................................................
Cross( MACD(), Mov(MACD(),9,EXPONENTIAL))
....................................................................................
Regards
Asish
 
U

uasish

Guest
#4
uasish said:
Dear Sir,
Traderji has given an excellent formula,however if u want a crossover MACD
then u can use this one :put an "AND" after Traderji's formula in the filter section then put this one along with that
....................................................................................
Cross( MACD(), Mov(MACD(),9,EXPONENTIAL))
....................................................................................
Regards
Asish
Dear Sir,
U can also delete *100 from traderji's formula "in % above Col " remember *100 after 3 closing brackets.
Regards
Asish
 
#5
Dear Traderji..

Thankx for ur help, but this exploration does not find
securities which have generated 'Sell' on
weekly MACD charts.

pls help

nit
 
#6
uasish said:
Dear Sir,
Traderji has given an excellent formula,however if u want a crossover MACD
then u can use this one :put an "AND" after Traderji's formula in the filter section then put this one along with that
....................................................................................
Cross( MACD(), Mov(MACD(),9,EXPONENTIAL))
....................................................................................
Regards
Asish

dear asish..
thanks for ur input.
can u tell me the difference between ur and traderji's
formula suggested for the exploration.

kindly elaborate if possible.

nit...............
 
U

uasish

Guest
#7
nit_oks said:
dear asish..
thanks for ur input.
can u tell me the difference between ur and traderji's
formula suggested for the exploration.

kindly elaborate if possible.

nit...............
Dear Sir,
Traderji's Filter will give LONG signals and this one will give both LONG & SHORT.
Regards
Asish
 

Similar threads