PureBytes Links
Trading Reference Links
|
You could just use this , just check the bracket numbers for closure
Slevel = (Name()=="ADBE") * ( ( (DateNum() >= 1030401 AND DateNum() <=
1030630) * 34 ) + ( (DateNum() >= 1030701 AND DateNum() <= 1030930) * 2 ) );
Cheers,
Graham
http://groups.msn.com/asxsharetrading
http://groups.msn.com/fmsaustralia
-----Original Message-----
From: dingo [mailto:dingo@xxxxxxxxxxxx]
Sent: Monday, 5 January 2004 8:23 AM
To: _amibroker_yahoo
Subject: [amibroker] Code to specify a specific parameter for a specific
ticker for a specific period of time?
As the subject says "Code to specify a specific parameter for a specific
ticker for a specific period of time?".
I'm in a brain fog and could use some help. Here's what I've coded so
far:
Slevel will be used as the cross line for an oscillator.
if(Name()=="ADBE")
{
if (DateNum() >= 1030401 AND DateNum() <= 1030630)
{
Slevel = 34;
}
if (DateNum() >= 1030701 AND DateNum() <= 1030930)
{
Slevel = 2;
}
}
Filter = 1;
AddColumn(SLevel, "SLevel ", 1.0);
But I'm getting a syntax error:
Error 3.
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
How can I make this work?
d
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
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
------------------------ Yahoo! Groups Sponsor ---------------------~--> Buy
Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark Printer
at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
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/
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
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
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
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/
|