Skip to main content

OPEN = HIGH ,OPEN = LOW for Amibroker (AFL)

raghu535 about 14 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 4)
  • Tags:
    trading system, amibroker, exploration

Hi ,

THis is excellent indicator for intraday trading.. 90 percent success.

and very easy..

No charts.. just scan in the first one hour and see the magic..

Indicator / Formula

Copy & Paste Friendly
Buy = Open == Low;

Sell = Open == High;

Noise = High > Close; 

AddColumn(Open,"Open");
AddColumn(Close,"Close");
AddColumn(High,"High");
AddColumn(Low,"Low");

Filter= (Buy OR Sell) AND Noise; 

AddColumn(IIf(Buy,Open,Null)," open=low ", 6.2,1.2,colorGreen); 
AddColumn(IIf(Sell,Open,Null)," open= high ",6.2,1.2,colorOrange);  

11 comments

about 14 years ago

How to use it… Raghu kindly explain (Open high /Open low). How to take benefit?

about 14 years ago

Mr.Raghu kindly explain as to how do we use your indicator. It would be very helpful

about 14 years ago

this is just exploration , which will give results..

1. If Open = low , and volume is good , most probably the stock is can be bought for long with that day as LOW as Stop loss..

2. If open = high , short the stock with stop loss as Day high..

hope this will help..

4. vinayak
about 14 years ago

Indicator is very good.What is the best time frame to use it for day trading.

6. joeoil
about 14 years ago

Could you explain a bit more.

Because you don’t know if Open = Low or High before the close that day, so I guess you mean buy/short on next day then, or?

7. projsx
almost 14 years ago

Quite simple and very helpful.
Just a suggestion or question, how to add a code in units of “percentage change” in a separate column?
Thank You.

almost 14 years ago

what is the system download afl file.plz help
I don’t see download file

10. scg84
almost 10 years ago

The ready scanner can be used from the below link

http://www.pivottrading.co.in/scanner/openHighLowScanner.php

11. liquidice
almost 5 years ago

I try to add arrow so you can put this indicator into a price chart

Buy = Open == Low;
 
Sell = Open == High;
 
Noise = High > Close; 
 
AddColumn(Open,"Open");
AddColumn(Close,"Close");
AddColumn(High,"High");
AddColumn(Low,"Low");
 
Filter= (Buy OR Sell) AND Noise; 
 
AddColumn(IIf(Buy,Open,Null)," open=low ", 6.2,1.2,colorGreen); 
AddColumn(IIf(Sell,Open,Null)," open= high ",6.2,1.2,colorOrange);

up=Open == Low;
down=Open == High;


shape = up * shapeUpArrow;
PlotShapes( shape, IIf( up, colorLime, colorRed ), layer = 0, yposition = H, offset = -100);

shape = down * shapeDownArrow;
PlotShapes( shape, IIf( down, colorRed, colorLime ), layer = 0, yposition = H, offset = -100);

Leave Comment

Please login here to leave a comment.