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

MIDAS SYSTEM for Amibroker (AFL)
pras
almost 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 9)
Tags:
amibroker, support, resistance

THIS AFL CREATED BY MR.THOMASZ & PUBLISHED IN JULY EDITION STOCK & COMMODITY MAGAGINE.

CLICK ANY PRICE BAR, YOU WILL GET SUPPORT & RESISISTANCE BAND . iF YOU PLACE IN PREVIOUS SWING POINT THEN YOU WILL GOT EARLY INFORMATION OF PRICE REVERSAL.

ENJOY

Similar Indicators / Formulas

Intraday Trades
Submitted by vishalsbharati about 12 years ago
price support resistance
Submitted by icemanc almost 13 years ago
Support & Resistance
Submitted by shyam242 almost 13 years ago
Automatic Support and Resistance with Channel
Submitted by kaiji about 14 years ago
Support/Resistance Modified
Submitted by dkeleher about 13 years ago

Indicator / Formula

Copy & Paste Friendly
dn = DateTime(); 
sd = SelectedValue( dn ); 

start = dn == sd; 

mp = (H+L)/2; 

PV = mp * V; 
CV = Cum( V ); 
VSS = CV - ValueWhen( start, CV ); 

denom = IIf( VSS == 0, 1, VSS ); 
num = Cum( PV ) - ValueWhen( start, Cum( PV ) ); 

M = IIf( BarsSince( start ), num/denom, mp ); 

Q1 = Param("Percentage Upper", 1, 0, 10, 0.01 ); 
Q2 = Param("Percentage Lower", 1, 0, 10, 0.01 ); 

Plot( C, Date() + " Close", colorBlack, styleBar ); 
Plot( M, "M" + _PARAM_VALUES(), colorBlue ); 
Plot( M * ( 1 + Q1 * 0.01 ), "Upper", colorGreen ); 
Plot( M * ( 1 - Q2 * 0.01 ),"Lower", colorRed );

3 comments

1. morgen

Interesting!

2. cnbondre

EXCELLENT !!!

cnbondre

3. anandnst

MUST WATCHGOOD ONE

Leave Comment

Please login here to leave a comment.

Back