Scan the market in search of better timing depending on our trading
is based on the Indicator “TAC Volume MACD TIMING“.
Documentation link
https://www.tiburonesdealetacorta.com/2019/03/tac-volume-macd-timing.html
Bullish Trend
– The Timing 3 bullish trend will not work.
– The Timing 4 is a Timing of Pause, being this Timing the one that marks the bullish impulse in a market ceiling can be a trap. We have to wait for Timing 1 to confirm the continuation of the bullish momentum so as not to have a reversal of the movement and possible change of trend.
Beari sh trend
///////////////////////////////////////////////////////////////////////
REM TAC Volume MACD TIMING-SCN
REM TAC Volume MACD TIMING-SCN | SCREENER
REM 01.09.2011
REM TAC @ www.tiburonesdealetacorta.com
REM Sharing www.tiburonesdealetacorta.com
////////////////////////////////////////////////////////////////////////
timeframe (daily)
lv1=0
lv2=0
n=60
for i= 0 to n do
lv1=lv1+close[i]*Volume[i]
lv2=lv2+Volume[i]
next
Wave=lv1/lv2
pc=12
pl=26
ps=9
REM MACD
hh=exponentialaverage[pc](close) - exponentialaverage[pl](close)
REM Signal
hh1=exponentialaverage[ps](hh)
//POSITIVO
IF HH>=0 and HH>HH1 and Wave>Wave[5] THEN
SENAL=1
ENDIF
IF HH>=0 AND HH<HH1 and Wave>Wave[5] THEN
SENAL=2
ENDIF
IF HH<=0 AND HH<HH1 and Wave>Wave[5] THEN
SENAL=3
ENDIF
IF HH<=0 AND HH>HH1 and Wave>Wave[5] THEN
SENAL=4
ENDIF
//NEGATIVO
IF HH<=0 and Wave<Wave[5] THEN
SENAL=-1
ENDIF
IF HH<=0 and HH>HH1 and Wave<Wave[5] THEN
SENAL=-2
ENDIF
IF HH>=0 and HH>HH1 and Wave<Wave[5] THEN
SENAL=-3
ENDIF
IF HH>=0 and HH<HH1 and Wave<Wave[5] THEN
SENAL=-4
ENDIF
TIMING = SENAL
SCREENER (TIMING AS "Timing")