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

OHLC indicator for Amibroker (AFL)

Rating:
4 / 5 (Votes 3)
Tags:
amibroker, intraday

This indicator should be used only for intraday trading. It is very simple. As soon as the price crosses 0.5% on upper side from previous close just buy. And if the price crosses 0.5% on the down side from previous close initiate short.

Similar Indicators / Formulas

MultiCharts
Submitted by janet0211 almost 14 years ago
1 Minute inside 6 bar consolidation
Submitted by alvaroaltair about 10 years ago
INTRADAY AVERAGE VOLUME
Submitted by shethia over 13 years ago
Real Time Daily Price Levels
Submitted by kaiji about 14 years ago
GANN TREND (tiger)
Submitted by tigernifty over 12 years ago
Market Profile
Submitted by wahabdeen about 14 years ago
You cannot view the code for the following reasons:
  • You must be a member.

4 comments

1. Amitrader

Many thanks.

2. mahaboobbasha81

formula is showing error 54 please correct it

3. ravikumarm

Add “n” before Low, High & PCL

-----------------------------
"\Low :" +WriteVal(Daylow);
"\High :" +WriteVal(Dayhigh);
"\PCL :" +WriteVal(Dayc);
----------------------------

Replace above lines with below lines:

--------------------------------------
"\nLow :" +WriteVal(Daylow);
"\nHigh :" +WriteVal(Dayhigh);
"\nPCL :" +WriteVal(Dayc);
-------------------------------------
4. pratish007@gmail.com

i am getting below error

Error 701. Missing buy/sell variable assignments.
The formula that you are trying to backtest does not contain proper Buy and Sell rules. Buy and Sell rules should be written as assignments as shown below:

Buy = Cross( Close, MA );
Sell = Cross( MA, Close ) );

For more details see Tutorial: Backtesting your trading ideas

Leave Comment

Please login here to leave a comment.

Back