Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
OHLC Strategy for Amibroker (AFL)
This afl scan the list of Open=High and Open=Low which is updated with Automatic TGT, SL and previous volume and todays volume with some other indicators value. This works good for intraday trading before 10:30 AM.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | _SECTION_BEGIN ( "Open == High AND Open == Low Morning Exploration" ); DOpen = TimeFrameGetPrice ( "O" , inDaily , 0 ); // gives you Todays Open price. DHigh = TimeFrameGetPrice ( "H" , inDaily , 0 ); // gives you Todays High price. DLow = TimeFrameGetPrice ( "L" , inDaily , 0 ); // gives you Todays High price. PClose = TimeFrameGetPrice ( "C" , inDaily , -1 ); // gives you Previous Day Close price. YVol = TimeFrameGetPrice ( "Volume" , inDaily , -1 ); // gives you Previous Day Volume. Buy = Open == Low ; Sell = Open == High ; Noise = High > Close ; Noise = Low <= Close ; newday = Day () != Ref ( Day (),-1); //check for the start of the day opencond = newday AND (DOpen == DHigh OR DOpen == DLow); Filter = opencond ; colorstatus = IIf (newday AND DOpen == DHigh, colorRed , IIf (newday AND DOpen == DLow, colorGreen , Null )); AddColumn ( IIf (newday AND DOpen == DHigh,DHigh, Null ), "Open==High" ,1.2, colorWhite ,colorstatus); AddColumn ( IIf (newday AND DOpen == DLow,DLow, Null ), "Open == Low" ,1.2, colorWhite ,colorstatus); Sunil= ((1.5 * ( Open - Close )) > ( High - Low )); VDiff = ( Volume /YVol); ATP = ( Open + High )/2; Pivot = (PClose+ Open +ATP)/3; Target1OeqL = Open - ( Open * 0.01); Target2OeqL = Open - ( Open * 0.015); Target1OeqH = Open + ( Open * 0.01); Target2OeqH = Open + ( Open * 0.015); SL4OeqH = Open + ( Open * 0.003); SL4OeqL = Open - ( Open * 0.003); AddColumn (PClose, "Pclose" ); AddColumn ( Open , "Open" ); AddColumn ( High , "High" ); AddColumn ( Low , "Low" ); AddColumn ( IIf (Target1OeqL AND DOpen == DHigh,Target1OeqL,Target1OeqH), "Target1" ,1.2, colorWhite ,colorstatus); AddColumn ( IIf (Target2OeqL AND DOpen == DHigh,Target2OeqL,Target2OeqH), "Target2" ,1.2, colorWhite ,colorstatus); AddColumn ( IIf (SL4OeqH AND DOpen == DHigh,SL4OeqH,SL4OeqL), "StopLoss" ,1.2, colorWhite ,colorstatus); AddColumn ( ATP, "ATP" ); AddColumn (Pivot, "Pivot" ); AddColumn ( EMA ( C ,20), "EMA10" ); AddColumn ( Volume , "Volume" ,1.0); AddColumn (YVol , "YVol" ,1.0); AddColumn (VDiff , "VDiff" ); AddColumn ( RSI (14), "RSI" ); _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back