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

Buyer Seller Force for Amibroker (AFL)
kaiji
over 14 years ago
Amibroker (AFL)

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

This indicator is designed to show the force on the equity of buyers/sellers.

By Michael Jordan

Similar Indicators / Formulas

Debu Market Efficiency Ratio
Submitted by agent301 over 11 years ago
MACD (new timing)
Submitted by tigernifty over 11 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
KILL THE OPERATOR MACD
Submitted by prasadmuni over 11 years ago
%R ++
Submitted by reb almost 14 years ago
DMI Spread
Submitted by pipstar almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
/* Buyer-Seller Force

This indicator illustrates the amount of buying or selling pressure
being exerted on the security.  When in positive territory, the buyers have
the upper hand.  When in negative the sellers rule.

When divergence occurs, the price will tend to correct toward the indicator.

This is specifically written for east coast time NYSE hours.  The code must be
adjusted for any other equities/markets.
*/

day_open_time = (Hour() == 9 AND Minute() == 30);

c_vel = (C - Ref(C, -1)) / Ref(C, -1);
h_vel = (H - Ref(H, -1)) / Ref(H, -1);
l_vel = (L - Ref(L, -1)) / Ref(L, -1);
p_vel = c_vel + h_vel + l_vel;

immediate_pressure = p_vel * V;

numminutes = BarsSince(day_open_time);
day_pressure = Sum(immediate_pressure, numminutes + 1);

Plot(day_pressure, "BSF", colorBlack);

0 comments

Leave Comment

Please login here to leave a comment.

Back