[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Re: Artificial ticker



PureBytes Links

Trading Reference Links

Hi Mike,

Do you know how to create an artificial index with multiple tickers?

Thanks,

Louis

2008/3/6, Mike <sfclimbers@xxxxxxxxx>:

Thomas,

You only need to run the formula once (use selected symbol option
from AA window on any symbol), then you can reference the symbol from
any _other_ script as applied against any number of symbols.

Or, if you are trying to include the code segment within some other
script applied to multiple symbols, what about wrapping the logic
inside an if condition such that it only gets executed the first time
(e.g. use a static variable to control the flow
http://www.amibroker.com/guide/afl/afl_view.php?id=263 )

...
if (StaticVarGet("ATCFlag") != 1) {
AddToComposite(...);
AddToComposite(...);
AddToComposite(...);
AddToComposite(...);
StaticVarSet("ATCFlag", 1);
}

I've never used statics, so double check the syntax above, and test
what happens when the variable is Null.



Mike

--- In amibroker@xxxxxxxxxxxxxxx, Thomas Ludwig <Thomas.Ludwig@xxx>
wrote:
>
> Mike,
>
> thanks for your reply. In fact, I had tried the ATC solution
before. The
> problem: When used as an indicator (as mentioned in my previous
post)
> the chart looks as expected. However, with ATC the Open, High, Low
and
> Close of both time series are added up. Thus, the logic of my
formulas
> that works for the indicator code doesn't work with ATC. Any idea
how
> to modfiy that?
>
> Best regards,
>
> Thomas
>
> > Have a look at AddToComposite
> > http://www.amibroker.com/guide/afl/afl_view.php?id=7
> >
> > AddToComposite(Foreign("846900","o"), "~MyDAX", "O");
> >
> > AddToComposite(IIF(IsEmpty(Foreign("A0C4CA","h")),Foreign
> > ("846900","h"),Max(Foreign("846900","h"),Foreign
> > ("A0C4CA","h"))), "~MyDAX", "H");
> >
> > AddToComposite(IIf(IsEmpty(Foreign("A0C4CA","l")),Foreign
> > ("846900","l"),Min(Foreign("846900","l"),Foreign
> > ("A0C4CA","l"))), "~MyDAX", "L");
> >
> > AddToComposite(IIf(IsEmpty(Foreign("A0C4CA","c")),Foreign
> > ("846900","c"),Foreign("A0C4CA","c")), "~MyDAX", "C");
> >
> > New symbol ~MyDAX will appear under Market253 fully populated
> > according to your logic.
> >
> > Add flags for exploration and backtesting as needed.
> >
> > Mike
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, Thomas Ludwig <Thomas.Ludwig@>
> >
> > wrote:
> > > Hello,
> > >
> > > I want to create an artificial ticker from two existing
tickers. If
> >
> > I do
> >
> > > it this way:
> > >
> > > O1=Foreign("846900","o");
> > > H1=IIf(IsEmpty(Foreign("A0C4CA","h")),Foreign("846900","h"),Max
> >
> > (Foreign("846900","h"),Foreign("A0C4CA","h")));
> >
> > > L1=IIf(IsEmpty(Foreign("A0C4CA","l")),Foreign("846900","l"),Min
> >
> > (Foreign("846900","l"),Foreign("A0C4CA","l")));
> >
> > > C1=IIf(IsEmpty(Foreign("A0C4CA","c")),Foreign
("846900","c"),Foreign
> >
> > ("A0C4CA","c"));
> >
> > > PlotOHLC(O1,H1,L1,C1,"MyDAX",colorBlack,styleCandle);
> > >
> > >
> > > ... I get it as an indicator - but that's not what I want. In
order
> >
> > to
> >
> > > get an artificial ticker I guess that I have to export the
values
> >
> > to an
> >
> > > ASCII file and import it again using fputs() and fgets() but I'm
> >
> > not
> >
> > > sure how to do it. Any suggestions would be highly welcome.
> > >
> > > Regards,
> > >
> > > Thomas
> >
> > 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
> >
> >
> >
>


__._,_.___

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




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___