Two candle strategy

Aarav11

Well-Known Member
#25
Kathik, Please check 2 black bars at around 12:10 and 12:15 ! Do they qualify for trades? Dont they meet the criteria? Unable to pin point the candle time as I dont have intraday LT chart ?
Even the 2 black candles of 11.40 and 11.45 also qualify for the setup. Right Karthik?
 
#30
Code:
Bull = Ref(C,-1) > Ref(O,-1) AND C > O AND L > (Ref(H,-1)+Ref(L,-1))/2;
Bear = Ref(C,-1) < Ref(O,-1) AND C < O AND H < (Ref(H,-1)+Ref(L,-1))/2;
Filter = Bull OR Bear;

PlotShapes(7*Ref(Bull,-1),colorBlue,0, L);
PlotShapes(8*Ref(Bear,-1),colorRed, 0, H);
An Exploration for Amibroker users, can shortlist your fav scrips (20-30) and run this to find the set-up,
maybe just 1-2 minute before the close of candle in your time frame, to get the candidates . . .


Cheers


:) Happy
 
Last edited:

Similar threads