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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Omo Trade System for 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 over 14 years ago
MACD ZIG ZAG
Submitted
by pulsar_7687 about 14 years ago
ZigZag with buy and sell signals
Submitted
by mauro24 over 14 years ago
Combination
Submitted
by morgen over 14 years ago
Cumulative Value
Submitted
by mfoysalar over 14 years ago
Three-Bar Inside Bar Pattern
Submitted
by EliStern over 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
Leave Comment
Please login here to leave a comment.
Back
Note this looks into the future due to zig-zag
thhis is very high noises means buy sell signals are very near
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
good speach bhartiprinters i apreshiat you
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.
thanks