PureBytes Links
Trading Reference Links
|
Here is a simple example...there also is an example
in the help files along with description and explanation of its use.
load into Indicator builder...open Alert output
window...
mysignalUp=<FONT color=#0000ff
size=1>Cross(C,<FONT color=#0000ff
size=1>EMA(C,<FONT color=#ff00ff
size=1>28));
mysignalDn=Cross<FONT
size=1>(EMA<FONT
size=1>(C,28<FONT
size=1>),C);
Plot(C,<FONT color=#ff00ff
size=1>"close",colorBlack,styleCandle);<FONT
color=#0000ff size=1>
Plot(EMA<FONT
size=1>(C,28<FONT
size=1>),"MovAvg"<FONT
size=1>,colorRed,styleLine);
PlotShapes(<FONT color=#0000ff
size=1>IIf<FONT
size=1>(mysignalUp,shapeUpArrow,shapeNone),colorBrightGreen);<FONT
color=#0000ff size=1>
PlotShapes(<FONT color=#0000ff
size=1>IIf<FONT
size=1>(mysignalDn,shapeDownArrow,shapeNone),colorRed);<FONT
color=#0000ff size=1>
AlertIf(mysignalUp,<FONT color=#ff00ff
size=1>"SOUND C:\\Windows\\Media\\Ding.wav"<FONT
size=1>,"buy"<FONT
size=1>,1<FONT
size=1>);
AlertIf(mysignalDn,<FONT color=#ff00ff
size=1>"SOUND C:\\Windows\\Media\\Ding.wav"<FONT
size=1>,"sell"<FONT
size=1>,2<FONT
size=1>);
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
mroman59
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Monday, May 26, 2003 10:03 AM
Subject: [amibroker] Alerts Function
?
Trying to use the Alert Fucntion for first time. Read help
section, but not sure how this alert function
works?Qestions:1. When writing an AlertIf fucntion, does it go
into the code for writing an exploration?2. If put into
exploration, I assume that it will trigger alert only if the exploration
is run at EOD, therefore if one is downloading data throughout the day
(not realtime) but, lets say, every 20 minutes from Yahoo will the alert
sound or does the exploration also have to be ran every 20
minutes.3. Is the AlertIf function made fore realtime data
only?4. Can the Alert function take advantage of built in indicators
or does one have to write the code for each indicator over again in an
exploration?5. When an indicator is triggered for a given stock,
does the alert sound triger and the ticker symbol show up in the Alert
Output display, or do we have to write code for a given ticker, date, text
and source to display this information in the Alert Output display
table?6. Could someone give me a simple code that I can put in an
approriate place to see if any stocks will apear in the Alert Output
display and then I can take it from there. Thank
You
Send 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
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
<BLOCKQUOTE
><FONT
face="Courier New">---Outgoing mail is certified Virus
Free.Checked by AVG anti-virus system (<A
href="">http://www.grisoft.com).Version: 6.0.483
/ Virus Database: 279 - Release Date:
5/19/2003
Yahoo! Groups Sponsor
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
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|