PureBytes Links
Trading Reference Links
|
I am using the following for conditional IF. I get error messages
that I cannot use arrays in conditional IF statements but then it goes
on to say index array []. I am confused. What is the best way to
access Buy/Sell signals (both current and past) in conditional "if"
statements?
Here is my code and error.
if(LastValue(Buy) == 1 && ref(Buy,-1) == 0 && Sell[1] != 1){
...
}
and I've tried this...
if(LastValue(Buy) == 1 && ref(Buy,-1) == 0 && ref(Sell,-1) != 1){
...
}
Here is the error.....
if(LastValue(Buy) == 1 && ref(Buy,-1) == 0 && Sell[1] != 1){
---------------------------------------------------^
Error 6
Condition in IF, WHILE, FOR statements
has to be Numeric or Boolean type.
You can not use array here,
please use [] (array subscript operator)
to access array elements
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|