[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Need help from AB GURU please.



PureBytes Links

Trading Reference Links

At 11:46 μμ 19/2/2003 +0000, you wrote:
>The following list is part of my exploration report that identifies
>each Condition from my program as they are met, as either O(no) or 1
>(yes) in the column. What I would like to do is create an additional
>AddColumn that adds the number of 1's and report the total. For
>example, if all conditions are met below I would like to see and
>AddColumn reporting the value of 11. I hope this makes sense and
>thank you if you can help.
>
>AddColumn(Cond1,"MA",1);
>AddColumn(Cond2,"MACD",1);
>AddColumn(Cond3,"ROC",1);
>AddColumn(Cond4,"STO",1);
>AddColumn(Cond5,"RSI",1);
>AddColumn(Cond6,"CCI",1);
>AddColumn(Cond7,"ADX",1);
>AddColumn(Cond8,"MDI",1);
>AddColumn(Cond9,"MFI",1);
>AddColumn(Cond10,"OBV",1);
>AddColumn(Cond11,"PVI",1);
>

//you can add the followings

soome=Cond1 + Cond2 + Cond3 ....... +Cond11;
AddColumn(soome, "total",1);
// and this is for Guru :-)
"Total of Sum = "+WriteVal(soome,1);





Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)

Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html 

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/