PureBytes Links
Trading Reference Links
|
<FONT face=Arial
color=#0000ff size=2>Since no one else has answered this I'll take a stab at
it.
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>you didn't include the entire formula so its hard to
diagnose the exact cause of the error BUT when you use the "If" statmenent
its assumed that you are wanting to process whatever arrays you have bar by
bar.
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>This is not what you want, I guess, so how
about:
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>Stopit = iif((Timenum() > 080000 and TimeNum() <
221500), ApplyStop(..), 0);
<FONT face=Arial
color=#0000ff size=2>Equity(1);
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial color=#0000ff
size=2>d
From: Thomas Schneider
[mailto:ts-schneider@xxxxxx] Sent: Tuesday, January 20, 2004 6:06
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
ApplyStop only during specific time
Hi,I want to use the Applystop only during a specific time
(trading hours S&P not during night, I'm GMT+1(Germany))so what
about this:if ((TimeNum() > 080000 AND TimeNum() <
221500)){ApplyStop(...);}then following error
occurs:Equity-----^Condition in IF, WHILE, FOR statementshas
to be Numeric or Boolean type.You can not use array here,please use []
(array subscript operator)to access array elementsBut the Equity
line is after the if-block. Must if have an else block?Are there any
other posibilities to do
this?ThanksRegardsThomasSend BUG
REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
To visit your group on the web, go to:<A
href="">http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:<A
href="">amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
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 the Yahoo! Terms of Service.
|