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

IBS - Internal Bar Strength for Amibroker (AFL)
abley
about 8 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
oscillator, amibroker

It is calculated as the moving average of the values of the internal bars strength that represent the ratio (Close-Low)/(High-Low) * 100% for each of them.

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("IBS");

SetTradeDelays(1,0,1,0);
SetPositionSize(100,spsShares);

IBS = (Close - Low )/(High-Low);
maIBS = MA(IBS,3);
Plot(maIBS,"maIBS",colorRed);

T1= 0.3;
T2= 0.75;

Buy = Cross(T1,maIBS);
Sell= Close;
Short =Cross( maIBS,T2);
Cover = Close;
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back