PureBytes Links
Trading Reference Links
|
How do I setup alarms/alerts for technical indicators?
Answer
A Signal Marker is probably the way to go for you here. Here's what
you would do. Let's assume you want signal when CCI crosses above 100
for instance. You would create a signal (Setup: Signal) with the
syntax:
CCI > 100 AND CCI.1 <= 100
And save this signal. Then, add the Signal Marker indicator to your
chart, select this signal that you've just saved. You have a great
deal of flexibility here regarding the "actions" that are taken when
the indicator crosses above this level. If you wanted to signal every
time it crossed in either direction....
(CCI > 100 AND CCI.1 <= 100) OR (CCI < 100 AND CCI.1 >= 100)
If you wanted to look for price crossing a certain level...
(CL > 100 AND CL.1 <= 100) OR (CL < 100 AND CL.1 >= 100)
For price crossing above an MA:
CL > MA AND CL.1 < MA.1
For one MA crossing above another..
MA_A > MA_B AND MA_A.1 <= MA_B.1
If you preferred to search a whole list of symbols at once for these
conditions, the you'll need to use a Scan. The Scan could use the
same syntax suggested above for Signals. Actually, there is a
checkbox in the Signal setup window to "Enable this Signal for use as
a Scan". Scans have two important settings in addition to Signals.
They have an option for periodicity, and an option for the quotepage
(group of symbols) on which the scan is to run. Once the scans have
been created, they can be scheduled to run periodically. For more
information on Scans and Schedules, visit the following links:
--- In amibroker@xxxxxxxxxxxxxxx, "goldwing01_1999"
<goldwing01_1999@xxxx> wrote:
>
> how about something like this:
> http://216.109.117.135/search/cache?p=CCI+setup+scan&ei=UTF-
>
8&u=www.linnsoft.com/qa/a/18.htm&w=cci+setup+scan&d=89528CEE8A&icp=1&.
> intl=us
>
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, Terry <MagicTH@xxxx> wrote:
> >
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|