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 ....
SIMPLE BUY SELL SIGNAL for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | _SECTION_BEGIN ( "Buy Sell Arrow Signals" ); Buy = s; Sell = ss; PlotShapes ( IIf ( Buy , shapeSquare , shapeNone ), colorGreen , 0, L , Offset=-30); PlotShapes ( IIf ( Buy , shapeSquare , shapeNone ), colorLime , 0, L , Offset=-40); PlotShapes ( IIf ( Buy , shapeUpArrow , shapeNone ), colorWhite , 0, L , Offset=-35); PlotShapes ( IIf ( Sell , shapeSquare , shapeNone ), colorRed , 0, H , Offset=30); PlotShapes ( IIf ( Sell , shapeSquare , shapeNone ), colorOrange , 0, H , Offset=40); PlotShapes ( IIf ( Sell , shapeDownArrow , shapeNone ), colorWhite , 0, H , Offset=-35); dist = 2* ATR (20); //0.8 dist1 = 2* ATR (20); //1.2 for ( i = 0; i < BarCount ; i++ ) { if ( Buy [i] ) { PlotText ( "\nBuy:" + L [ i ] + "\nT= " + ( L [i]*1.005) + "\nSL= " + ( L [i]*0.9975), i, L [ i ]-dist[i], colorLightBlue ); } if ( Sell [i] ) { PlotText ( "Sell:" + H [ i ] + "\nT= " + ( H [i]*0.995) + "\nSL= " + ( H [i]*1.0025), i, H [ i ]+dist1[i], colorLightBlue ); } } _SECTION_END (); |