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 ....
Try this in auto analysis 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 | ColA= MACD (12,26); ColB= MACD (12,26) > Signal (12,26,9); ColC= EMA ( C ,20)> MA ( C ,20); ColC1= Close > EMA ( C ,10); ColD= EMA ( C ,10)> EMA ( C ,15); ColD1= EMA ( C ,15)> EMA ( C ,20); ColD2= EMA ( C ,20)> EMA ( C ,25); ColE= Volume >10000; ColF= Volume ; ColF1=ColB+ColC+ColC1+ColD+ColD1+ColD2; Buy =colB and colC and ColC1 and colD and ColD1 and colD2 and ColE; Filter = Buy ; AddColumn ( Close , "Close" , 1.4 ); AddColumn (ColF, "Vol>10K" ,1.0); AddColumn (ColF1, "Tg Sign/6" ,1.0); AddColumn (ColA, "MAC" ,1.0); AddColumn (ColB, "MAC>sig" ,1.0); AddColumn (ColC, "EM20> SM20" ,1.0); AddColumn (ColC1, "Clo>E10" ,1.0); AddColumn (ColD, "E10>15" ,1.0); AddColumn (ColD1, "E15>20" ,1.0); AddColumn (ColD2, "E20>25" ,1.0); AddColumn ( IIf ( Buy , 66, 83 ), "Signal" , formatChar ); Nguồn: Newbie c ần giúp đỡ: Code tạ o bộ l ọ c cho Ami |