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

P&T for Amibroker (AFL)
hanoom
over 10 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
trading system, amibroker

First time for me Peak and Trough..

Screenshots

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
buy and sell two EMAS
Submitted by mundo0007 about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
qZZP   = Param("ZigZag % :",  1, 0.1, 5, 0.1);
zUpper = Ref(Peak(C,qZZP,1),-1);          // Upper band
zLower = Ref(Trough(C,qZZP,1),-1);        // Lower band
Buy    = Nz(Cross(C,zUpper),0);           //Nz: convert NULL before 1st signal to 0
Sell   = Nz(Cross(zLower, C),0);
Plot(C,"",Colorgrey40,styleCandle);      // Plot price chart
PlotShapes(Sell*shapeDownArrow, colorRed, 0, High,-20);  //plot down arrow 20 pixel above High price of that bar
PlotShapes(Buy*shapeUpArrow, ColorRGB(0,255,0), 0, Low,-20); //plot up arrow 20 pixel below Low price of that b

0 comments

Leave Comment

Please login here to leave a comment.

Back