Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

OPEN = HIGH ,OPEN = LOW for Amibroker (AFL)
raghu535
almost 12 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..

Similar Indicators / Formulas

OPTIMIZED ICHIMOKU
Submitted by ritesh.bafna88 over 11 years ago
Reaction Trend System
Submitted by ajayjain90 almost 14 years ago
Behgozin Strength Finder
Submitted by hotaro3 over 11 years ago
KPL with RSI
Submitted by pdkg_gal almost 14 years ago
Intraday Trend Break System
Submitted by nishantndk almost 14 years ago
ema crossovers
Submitted by rushee.g1100 over 13 years ago

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

1. anandnst

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

2. cjsheth41

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

3. raghu535

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

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

5. eevra

Gr8 Raghu. You are quite an intelligent guy !

6. joeoil

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

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.

8. ibneamin

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

9. worldastro

plese picture !!!!!

10. scg84

The ready scanner can be used from the below link

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

11. liquidice

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.

Back