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

Omo Trade System for Amibroker (AFL)
omory
over 13 years ago
Amibroker (AFL)

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

This is my Trade System.
I think you like it.
Thank

Screenshots

Similar Indicators / Formulas

Wave Indicator
Submitted by nicotan78 about 14 years ago
MACD ZIG ZAG
Submitted by pulsar_7687 over 13 years ago
ZigZag with buy and sell signals
Submitted by mauro24 almost 14 years ago
Combination
Submitted by morgen almost 14 years ago
Cumulative Value
Submitted by mfoysalar about 14 years ago
Three-Bar Inside Bar Pattern
Submitted by EliStern about 13 years ago

Indicator / Formula

Copy & Paste Friendly
EnableNulling = ParamToggle("NULLing of Data","DISABLED|ENABLED",0);
RM = Param("NULL Bars L<-R",0,0,1000,1);
if( EnableNulling )
{
Z = Null;
LB = LastValue(BarIndex());
O = IIf(BarIndex()>(LB-RM),Z,O);
H = IIf(BarIndex()>(LB-RM),Z,H);
L = IIf(BarIndex()>(LB-RM),Z,L);
C = IIf(BarIndex()>(LB-RM),Z,C);
}
ZChange = Param("%Zig",0.1,0,1,0.05);
Z = Zig(C,ZChange);
Buy = Z < Ref(Z,1) AND Z < Ref(Z,-1);
Sell = Z > Ref(Z,1) AND Z > Ref(Z,-1);
Short = Sell;
Cover = Buy;
Plot(C,"",1,128);
PlotShapes(IIf(Buy, shapeSmallUpTriangle, shapeNone),5,0,BuyPrice,0);
PlotShapes(IIf(Sell, shapeHollowDownTriangle, shapeNone),4,0,SellPrice,0);
PlotShapes(IIf(Cover, shapeHollowUpTriangle, shapeNone),5,0,CoverPrice,0);
PlotShapes(IIf(Short, shapeSmallDownTriangle, shapeNone),4,0,ShortPrice,0);

6 comments

1. administrator

Note this looks into the future due to zig-zag

2. vaenu999

thhis is very high noises means buy sell signals are very near

3. bhartiprinters

I LIKE IT WHY I AM NOT ABLE TO MAKE ANY SYSTEM SO EVEN IT IS MADE ON ZIGZAG STILL I APPRECIATE YOU HAVE MADE IT. THOSE WHO ARE GETTING MORE NOISES CAN INCREASE THE ZIGZAG %. ONE SHOULD EFFORT MUST THAT I WANT TO LEARN

4. rajaswamy

good speach bhartiprinters i apreshiat you

5. Rakesh Kumar

It is always very dangerous to trade with future price looking formulas. When you go through the past prices, such formulas shows the best result i.e. buy signal on bottom & sell signal on top.
But result are different when you start actual trading with these formulas. Actually these formula mark buy & sell signal in past time. However trader can’t trade in past time. So if possible Avoid.

6. riyad2020

thanks

Leave Comment

Please login here to leave a comment.

Back