How to Trade the Upside Gap Two Crows Candlestick Pattern Like a Pro

How to Trade the Upside Gap Two Crows Candlestick Pattern Like a Pro


Below is a simple Amibroker AFL script to detect the Upside Gap Two Crows pattern:

// Upside Gap Two Crows AFL Code for Amibroker

_SECTION_BEGIN(“Upside Gap Two Crows”);

 FirstBullish = Ref(Close, -2) > Ref(Open, -2);

SecondGapUpBearish = Ref(Open, -1) > Ref(Close, -2) AND Ref(Close, -1)

ThirdGapUpBearish = Open > Ref(Close, -1) AND Close

 UpsideGapTwoCrows = FirstBullish AND SecondGapUpBearish AND ThirdGapUpBearish;

 PlotShapes(IIf(UpsideGapTwoCrows, shapeDownArrow, shapeNone), colorRed, 0, High);

 _SECTION_END();

 This script helps traders spot Upside Gap Two Crows formations on stock charts.





Source link

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *