PureBytes Links
Trading Reference Links
|
Robert,
Thanks for your time.
REgards
Steve
--- In amibroker@xxxxxxxxxxxxxxx, Robert Nemeth <rjnemeth@xxx> wrote:
>
> 1. Put the code you want to share (have present in various places)
into a file like
> MySharedCode.afl
> 2. Instead of having this code present in your indicator file, just
put the #include <MySharedCode.afl>
> The system just substitutes the code in the file for the include
statement.
> 3. Write your exploration and where you want your shared code to be
present, just put the #include <MySharedCode.afl>
> The code from the file will be placed in your exploration code .
>
> I use this many times since I reference the same code all over the
place. It also makes looking at the code easier since you only see
one line...the #include.
> Hope that helps, gotta run.
> Robert
>
> ----- Original Message ----
> From: dawsonsg <dawsonsg@xxx>
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Saturday, January 19, 2008 8:55:38 PM
> Subject: [amibroker] Re: Referencing an indicator from a scan
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Thanks Robert.
>
>
>
> Yeah I did have a look at that but wasnt sure how to call it. Using
>
> the #include makes the indicator available to the scan it available
>
> to the scan but wasnt sure how to call it?
>
>
>
> EG once I have said #Include <indicator> he indicator is avauilable
>
> to the scan. DO I then just call the variables in the indicator as
>
> though they were in the current scan.
>
>
>
> Steve
>
>
>
> --- In amibroker@xxxxxxxxx ps.com, Robert Nemeth <rjnemeth@ .>
wrote:
>
> >
>
> > don't know if you saw the help file.
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > #INCLUDE
>
> > - preprocessor include command
>
> >
>
> > Miscellaneous functions
>
> > (AFL 2.2)
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > SYNTAX
>
> > #include
>
> >
>
> > RETURNS
>
> > nothing
>
> >
>
> > FUNCTION
>
> > Includes external AFL files into your formula. Note 1: include
>
> > statement need SINGLE backslashes in the path (this is quite the
>
> opposite to
>
> > normal AFL sting
>
> > parsing)
>
> > Note 2: using #include command may slow down
>
> > formula execution even
>
> > considering the fact that AmiBroker tries to include
>
> > only once and cache pre-processed text
>
> > Note 3: that currently no error
>
> > message is given if #include fails and this code
>
> > is experimental.
>
> > Note 4:
>
> > nesting #include commands is not supported
>
> > Note 5: by default files
>
> > #included are cached by the AmiBroker. To turn off caching use
>
> > #pragma
>
> > nocache
>
> > before any #include statements. #include now accepts new way of
>
> > specifying file names to include:
>
> > #include <filename.afl>
>
> >
>
> > (note < > braces instead of " " ) if you specify the file name
this
>
> way
>
> > AmiBroker will look for the file in "standard include path" that
is
>
> definable
>
> > using new prefs setting in Tools->Preferences- >AFL It makes much
>
> shorter
>
> > to write includes and you can move include folder now without
>
> changing all AFL
>
> > codes using #includes.
>
> >
>
> > For example if you have set standard include path
>
> to "C:\AFL\MyIncludes" and
>
> > write in your formula:
>
> >
>
> > #include <common.afl>
>
> >
>
> > AmiBroker will look for C:\AFL\MyIncludes\ common.afl file
>
> >
>
> > Also now #include reports file(s) not found in regular error
>
> message box. ?
>
> >
>
> >
>
> >
>
> > EXAMPLE
>
> > #include "C:\Program Files\AmiBroker\ AFL\common. afl"
>
> >
>
> > SEE ALSO
>
> > #pragma() function
>
> > Robert
>
> >
>
> > ----- Original Message ----
>
> > From: dawsonsg <dawsonsg@ .>
>
> > To: amibroker@xxxxxxxxx ps.com
>
> > Sent: Saturday, January 19, 2008 8:30:56 PM
>
> > Subject: [amibroker] Re: Referencing an indicator from a scan
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > Thanks Robert.
>
> >
>
> >
>
> >
>
> > Do you know if there are any examples of this anywhere?
>
> >
>
> >
>
> >
>
> > Regards
>
> >
>
> > Steve
>
> >
>
> >
>
> >
>
> > --- In amibroker@xxxxxxxxx ps.com, Robert Nemeth <rjnemeth@ .>
>
> wrote:
>
> >
>
> > >
>
> >
>
> > > Try using:
>
> >
>
> > > #include <Code file to reference>
>
> >
>
> > >
>
> >
>
> > > Robert
>
> >
>
> > >
>
> >
>
> > > ----- Original Message ----
>
> >
>
> > > From: dawsonsg <dawsonsg@ .>
>
> >
>
> > > To: amibroker@xxxxxxxxx ps.com
>
> >
>
> > > Sent: Saturday, January 19, 2008 4:59:35 PM
>
> >
>
> > > Subject: [amibroker] Referencing an indicator from a scan
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > Hi Guys,
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > Can I ask another question please?
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > I have started moving a number of indicators from metastoc to
>
> >
>
> > amibroker
>
> >
>
> > >
>
> >
>
> > > but I also want to reference these indicators from
the 'Explore'
>
> in
>
> >
>
> > >
>
> >
>
> > > automatic analysis.
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > Does anyone know if there is a function call to do this?
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > Regards
>
> >
>
> > >
>
> >
>
> > > Steve
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > <!--
>
> >
>
> > >
>
> >
>
> > > #ygrp-mkp{
>
> >
>
> > > border:1px solid #d8d8d8;font- family:Arial; margin:14px
>
> >
>
> > 0px;padding: 0px 14px;}
>
> >
>
> > > #ygrp-mkp hr{
>
> >
>
> > > border:1px solid #d8d8d8;}
>
> >
>
> > > #ygrp-mkp #hd{
>
> >
>
> > > color:#628c2a; font-size: 85%;font- weight:bold; line-
>
> >
>
> > height:122%; margin:10px 0px;}
>
> >
>
> > > #ygrp-mkp #ads{
>
> >
>
> > > margin-bottom: 10px;}
>
> >
>
> > > #ygrp-mkp .ad{
>
> >
>
> > > padding:0 0;}
>
> >
>
> > > #ygrp-mkp .ad a{
>
> >
>
> > > color:#0000ff; text-decoration: none;}
>
> >
>
> > > -->
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > <!--
>
> >
>
> > >
>
> >
>
> > > #ygrp-sponsor #ygrp-lc{
>
> >
>
> > > font-family: Arial;}
>
> >
>
> > > #ygrp-sponsor #ygrp-lc #hd{
>
> >
>
> > > margin:10px 0px;font-weight: bold;font- size:78%; line-height:
>
> 122%;}
>
> >
>
> > > #ygrp-sponsor #ygrp-lc .ad{
>
> >
>
> > > margin-bottom: 10px;padding: 0 0;}
>
> >
>
> > > -->
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > > <!--
>
> >
>
> > >
>
> >
>
> > > #ygrp-mlmsg {font-size:13px; font-family: arial, helvetica,
>
> clean,
>
> >
>
> > sans-serif;}
>
> >
>
> > > #ygrp-mlmsg table {font-size:inherit; font:100% ;}
>
> >
>
> > > #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica,
>
> >
>
> > clean, sans-serif;}
>
> >
>
> > > #ygrp-mlmsg pre, code {font:115% monospace;}
>
> >
>
> > > #ygrp-mlmsg * {line-height: 1.22em;}
>
> >
>
> > > #ygrp-text{
>
> >
>
> > > font-family: Georgia;
>
> >
>
> > > }
>
> >
>
> > > #ygrp-text p{
>
> >
>
> > > margin:0 0 1em 0;}
>
> >
>
> > > #ygrp-tpmsgs{
>
> >
>
> > > font-family: Arial;
>
> >
>
> > > clear:both;}
>
> >
>
> > > #ygrp-vitnav{
>
> >
>
> > > padding-top: 10px;font- family:Verdana; font-size: 77%;margin:
0;}
>
> >
>
> > > #ygrp-vitnav a{
>
> >
>
> > > padding:0 1px;}
>
> >
>
> > > #ygrp-actbar{
>
> >
>
> > > clear:both;margin: 25px 0;white-space: nowrap;color: #666;text-
>
> >
>
> > align:right; }
>
> >
>
> > > #ygrp-actbar .left{
>
> >
>
> > > float:left;white- space:nowrap; }
>
> >
>
> > > .bld{font-weight: bold;}
>
> >
>
> > > #ygrp-grft{
>
> >
>
> > > font-family: Verdana;font- size:77%; padding:15px 0;}
>
> >
>
> > > #ygrp-ft{
>
> >
>
> > > font-family: verdana;font- size:77%; border-top: 1px solid #666;
>
> >
>
> > > padding:5px 0;
>
> >
>
> > > }
>
> >
>
> > > #ygrp-mlmsg #logo{
>
> >
>
> > > padding-bottom: 10px;}
>
> >
>
> > >
>
> >
>
> > > #ygrp-vital{
>
> >
>
> > > background-color: #e0ecee;margin- bottom:20px; padding:2px 0
8px
>
> 8px;}
>
> >
>
> > > #ygrp-vital #vithd{
>
> >
>
> > > font-size:77% ;font-family: Verdana;font- weight:bold;
>
> color:#333; text-
>
> >
>
> > transform:uppercase ;}
>
> >
>
> > > #ygrp-vital ul{
>
> >
>
> > > padding:0;margin: 2px 0;}
>
> >
>
> > > #ygrp-vital ul li{
>
> >
>
> > > list-style-type: none;clear: both;border: 1px solid #e0ecee;
>
> >
>
> > > }
>
> >
>
> > > #ygrp-vital ul li .ct{
>
> >
>
> > > font-weight: bold;color: #ff7900;float: right;width: 2em;text-
>
> >
>
> > align:right; padding-right: .5em;}
>
> >
>
> > > #ygrp-vital ul li .cat{
>
> >
>
> > > font-weight: bold;}
>
> >
>
> > > #ygrp-vital a{
>
> >
>
> > > text-decoration: none;}
>
> >
>
> > >
>
> >
>
> > > #ygrp-vital a:hover{
>
> >
>
> > > text-decoration: underline; }
>
> >
>
> > >
>
> >
>
> > > #ygrp-sponsor #hd{
>
> >
>
> > > color:#999;font- size:77%; }
>
> >
>
> > > #ygrp-sponsor #ov{
>
> >
>
> > > padding:6px 13px;background- color:#e0ecee; margin-bottom:
20px;}
>
> >
>
> > > #ygrp-sponsor #ov ul{
>
> >
>
> > > padding:0 0 0 8px;margin:0; }
>
> >
>
> > > #ygrp-sponsor #ov li{
>
> >
>
> > > list-style-type: square;padding: 6px 0;font-size: 77%;}
>
> >
>
> > > #ygrp-sponsor #ov li a{
>
> >
>
> > > text-decoration: none;font- size:130% ;}
>
> >
>
> > > #ygrp-sponsor #nc{
>
> >
>
> > > background-color: #eee;margin- bottom:20px; padding:0 8px;}
>
> >
>
> > > #ygrp-sponsor .ad{
>
> >
>
> > > padding:8px 0;}
>
> >
>
> > > #ygrp-sponsor .ad #hd1{
>
> >
>
> > > font-family: Arial;font- weight:bold; color:#628c2a; font-
>
> >
>
> > size:100%;line- height:122% ;}
>
> >
>
> > > #ygrp-sponsor .ad a{
>
> >
>
> > > text-decoration: none;}
>
> >
>
> > > #ygrp-sponsor .ad a:hover{
>
> >
>
> > > text-decoration: underline; }
>
> >
>
> > > #ygrp-sponsor .ad p{
>
> >
>
> > > margin:0;}
>
> >
>
> > > o{font-size: 0;}
>
> >
>
> > > .MsoNormal{
>
> >
>
> > > margin:0 0 0 0;}
>
> >
>
> > > #ygrp-text tt{
>
> >
>
> > > font-size:120% ;}
>
> >
>
> > > blockquote{margin: 0 0 0 4px;}
>
> >
>
> > > .replbq{margin: 4;}
>
> >
>
> > > -->
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > >
>
> >
>
> > ____________ _________ _________ _________ _________ _________ _
>
> >
>
> > ____________ __
>
> >
>
> > > Be a better friend, newshound, and
>
> >
>
> > > know-it-all with Yahoo! Mobile. Try it now.
>
> >
>
> > http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> >
>
> > >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > <!--
>
> >
>
> > #ygrp-mkp{
>
> > border:1px solid #d8d8d8;font- family:Arial; margin:14px
>
> 0px;padding: 0px 14px;}
>
> > #ygrp-mkp hr{
>
> > border:1px solid #d8d8d8;}
>
> > #ygrp-mkp #hd{
>
> > color:#628c2a; font-size: 85%;font- weight:bold; line-
>
> height:122%; margin:10px 0px;}
>
> > #ygrp-mkp #ads{
>
> > margin-bottom: 10px;}
>
> > #ygrp-mkp .ad{
>
> > padding:0 0;}
>
> > #ygrp-mkp .ad a{
>
> > color:#0000ff; text-decoration: none;}
>
> > -->
>
> >
>
> >
>
> >
>
> > <!--
>
> >
>
> > #ygrp-sponsor #ygrp-lc{
>
> > font-family: Arial;}
>
> > #ygrp-sponsor #ygrp-lc #hd{
>
> > margin:10px 0px;font-weight: bold;font- size:78%; line-height:
122%;}
>
> > #ygrp-sponsor #ygrp-lc .ad{
>
> > margin-bottom: 10px;padding: 0 0;}
>
> > -->
>
> >
>
> >
>
> >
>
> > <!--
>
> >
>
> > #ygrp-mlmsg {font-size:13px; font-family: arial, helvetica,
clean,
>
> sans-serif;}
>
> > #ygrp-mlmsg table {font-size:inherit; font:100% ;}
>
> > #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica,
>
> clean, sans-serif;}
>
> > #ygrp-mlmsg pre, code {font:115% monospace;}
>
> > #ygrp-mlmsg * {line-height: 1.22em;}
>
> > #ygrp-text{
>
> > font-family: Georgia;
>
> > }
>
> > #ygrp-text p{
>
> > margin:0 0 1em 0;}
>
> > #ygrp-tpmsgs{
>
> > font-family: Arial;
>
> > clear:both;}
>
> > #ygrp-vitnav{
>
> > padding-top: 10px;font- family:Verdana; font-size: 77%;margin: 0;}
>
> > #ygrp-vitnav a{
>
> > padding:0 1px;}
>
> > #ygrp-actbar{
>
> > clear:both;margin: 25px 0;white-space: nowrap;color: #666;text-
>
> align:right; }
>
> > #ygrp-actbar .left{
>
> > float:left;white- space:nowrap; }
>
> > .bld{font-weight: bold;}
>
> > #ygrp-grft{
>
> > font-family: Verdana;font- size:77%; padding:15px 0;}
>
> > #ygrp-ft{
>
> > font-family: verdana;font- size:77%; border-top: 1px solid #666;
>
> > padding:5px 0;
>
> > }
>
> > #ygrp-mlmsg #logo{
>
> > padding-bottom: 10px;}
>
> >
>
> > #ygrp-vital{
>
> > background-color: #e0ecee;margin- bottom:20px; padding:2px 0 8px
8px;}
>
> > #ygrp-vital #vithd{
>
> > font-size:77% ;font-family: Verdana;font- weight:bold;
color:#333; text-
>
> transform:uppercase ;}
>
> > #ygrp-vital ul{
>
> > padding:0;margin: 2px 0;}
>
> > #ygrp-vital ul li{
>
> > list-style-type: none;clear: both;border: 1px solid #e0ecee;
>
> > }
>
> > #ygrp-vital ul li .ct{
>
> > font-weight: bold;color: #ff7900;float: right;width: 2em;text-
>
> align:right; padding-right: .5em;}
>
> > #ygrp-vital ul li .cat{
>
> > font-weight: bold;}
>
> > #ygrp-vital a{
>
> > text-decoration: none;}
>
> >
>
> > #ygrp-vital a:hover{
>
> > text-decoration: underline; }
>
> >
>
> > #ygrp-sponsor #hd{
>
> > color:#999;font- size:77%; }
>
> > #ygrp-sponsor #ov{
>
> > padding:6px 13px;background- color:#e0ecee; margin-bottom: 20px;}
>
> > #ygrp-sponsor #ov ul{
>
> > padding:0 0 0 8px;margin:0; }
>
> > #ygrp-sponsor #ov li{
>
> > list-style-type: square;padding: 6px 0;font-size: 77%;}
>
> > #ygrp-sponsor #ov li a{
>
> > text-decoration: none;font- size:130% ;}
>
> > #ygrp-sponsor #nc{
>
> > background-color: #eee;margin- bottom:20px; padding:0 8px;}
>
> > #ygrp-sponsor .ad{
>
> > padding:8px 0;}
>
> > #ygrp-sponsor .ad #hd1{
>
> > font-family: Arial;font- weight:bold; color:#628c2a; font-
>
> size:100%;line- height:122% ;}
>
> > #ygrp-sponsor .ad a{
>
> > text-decoration: none;}
>
> > #ygrp-sponsor .ad a:hover{
>
> > text-decoration: underline; }
>
> > #ygrp-sponsor .ad p{
>
> > margin:0;}
>
> > o{font-size: 0;}
>
> > .MsoNormal{
>
> > margin:0 0 0 0;}
>
> > #ygrp-text tt{
>
> > font-size:120% ;}
>
> > blockquote{margin: 0 0 0 4px;}
>
> > .replbq{margin: 4;}
>
> > -->
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> >
>
> ____________ _________ _________ _________ _________ _________ _
>
> ____________ __
>
> > Never miss a thing. Make Yahoo your home page.
>
> > http://www.yahoo. com/r/hs
>
> >
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> <!--
>
> #ygrp-mkp{
> border:1px solid #d8d8d8;font-family:Arial;margin:14px
0px;padding:0px 14px;}
> #ygrp-mkp hr{
> border:1px solid #d8d8d8;}
> #ygrp-mkp #hd{
> color:#628c2a;font-size:85%;font-weight:bold;line-
height:122%;margin:10px 0px;}
> #ygrp-mkp #ads{
> margin-bottom:10px;}
> #ygrp-mkp .ad{
> padding:0 0;}
> #ygrp-mkp .ad a{
> color:#0000ff;text-decoration:none;}
> -->
>
>
>
> <!--
>
> #ygrp-sponsor #ygrp-lc{
> font-family:Arial;}
> #ygrp-sponsor #ygrp-lc #hd{
> margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
> #ygrp-sponsor #ygrp-lc .ad{
> margin-bottom:10px;padding:0 0;}
> -->
>
>
>
> <!--
>
> #ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean,
sans-serif;}
> #ygrp-mlmsg table {font-size:inherit;font:100%;}
> #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica,
clean, sans-serif;}
> #ygrp-mlmsg pre, code {font:115% monospace;}
> #ygrp-mlmsg * {line-height:1.22em;}
> #ygrp-text{
> font-family:Georgia;
> }
> #ygrp-text p{
> margin:0 0 1em 0;}
> #ygrp-tpmsgs{
> font-family:Arial;
> clear:both;}
> #ygrp-vitnav{
> padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
> #ygrp-vitnav a{
> padding:0 1px;}
> #ygrp-actbar{
> clear:both;margin:25px 0;white-space:nowrap;color:#666;text-
align:right;}
> #ygrp-actbar .left{
> float:left;white-space:nowrap;}
> .bld{font-weight:bold;}
> #ygrp-grft{
> font-family:Verdana;font-size:77%;padding:15px 0;}
> #ygrp-ft{
> font-family:verdana;font-size:77%;border-top:1px solid #666;
> padding:5px 0;
> }
> #ygrp-mlmsg #logo{
> padding-bottom:10px;}
>
> #ygrp-vital{
> background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
> #ygrp-vital #vithd{
> font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-
transform:uppercase;}
> #ygrp-vital ul{
> padding:0;margin:2px 0;}
> #ygrp-vital ul li{
> list-style-type:none;clear:both;border:1px solid #e0ecee;
> }
> #ygrp-vital ul li .ct{
> font-weight:bold;color:#ff7900;float:right;width:2em;text-
align:right;padding-right:.5em;}
> #ygrp-vital ul li .cat{
> font-weight:bold;}
> #ygrp-vital a{
> text-decoration:none;}
>
> #ygrp-vital a:hover{
> text-decoration:underline;}
>
> #ygrp-sponsor #hd{
> color:#999;font-size:77%;}
> #ygrp-sponsor #ov{
> padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
> #ygrp-sponsor #ov ul{
> padding:0 0 0 8px;margin:0;}
> #ygrp-sponsor #ov li{
> list-style-type:square;padding:6px 0;font-size:77%;}
> #ygrp-sponsor #ov li a{
> text-decoration:none;font-size:130%;}
> #ygrp-sponsor #nc{
> background-color:#eee;margin-bottom:20px;padding:0 8px;}
> #ygrp-sponsor .ad{
> padding:8px 0;}
> #ygrp-sponsor .ad #hd1{
> font-family:Arial;font-weight:bold;color:#628c2a;font-
size:100%;line-height:122%;}
> #ygrp-sponsor .ad a{
> text-decoration:none;}
> #ygrp-sponsor .ad a:hover{
> text-decoration:underline;}
> #ygrp-sponsor .ad p{
> margin:0;}
> o{font-size:0;}
> .MsoNormal{
> margin:0 0 0 0;}
> #ygrp-text tt{
> font-size:120%;}
> blockquote{margin:0 0 0 4px;}
> .replbq{margin:4;}
> -->
>
>
>
>
>
>
>
>
>
______________________________________________________________________
______________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
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/
|