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 ....
serves4 for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _SECTION_BEGIN ( "Red Buy Green Sell" ); GraphXSpace =8; P1 = Param ( "MA01 Period" , 6, 2, 200 ); P2 = Param ( "MA02 Period" , 12, 2, 200 ); MA01= MA ( C ,P1 ); MA02= MA ( C ,P2 ); RG= IIf (MA01>MA02,MA01-MA02,-(MA02-MA01)); PlotOHLC ( MA02,RG+MA02,MA02,RG+MA02, "" ,23, styleCandle +4096); Plot ( SelectedValue ( C ), "" , IIf ( SelectedValue (MA01)> SelectedValue (MA02),4,34), styleNoLine ); |