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 ....
weekma10 and ma10 up for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("ma10_d_w"); MA10 = MA(C, 10); wc = TimeFrameCompress( Close, inWeekly ); WeekMA10 = MA( wc, 10 ); WeekMA10 = TimeFrameExpand( WeekMA10, inWeekly ); Filter = C > MA10 AND Ref(C < MA10, -1) AND wc > WeekMA10 AND Ref(C < WeekMA10, -1); AddColumn(C, "Close"); AddColumn(MA10, "MA10"); AddColumn(WeekMA10, "WeekMA10"); _SECTION_END();