PureBytes Links
Trading Reference Links
|
herman
open explorer to amibroker and copy ab
move up 1 step to prog files
paste for a "copy of ab"
rename to ab1
click on executable and create shortcut - rt click
pull new shortcut to desktop and change db
i use QT but both db's update correctly and rt
if you are still looking here is a version of vwap that works on 1
min.
ASTART=Param("ASTART",1000,0,3000,1);
BOTT=Cum(((L))*IIf(V>0,V,0)*IIf(Cum(1)>=ASTART ,1,-1e10))/(Cum(IIf
(V>0,V,0)*IIf(Cum(1)
>=ASTART,1,-1e10)));
Plot(BOTT,"",6,4);
BOTT1=Cum(((H))*IIf(V>0,V,0)*IIf(Cum(1)>=ASTART ,1,-1e10))/(Cum(IIf
(V>0,V,0)*IIf(Cum(1)
>=ASTART,1,-1e10)));
Plot(BOTT1,"",6,4);
bw
curt
--- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
<psytek@xxxx> wrote:
> hello,
>
> There must be a simple solution to my problem but for two days now
I am just
> messing around to get things going. Perhaps someone can help me
along...I
> maintain two databases: QP2 EOD and eSignal RT and I would like to
start up
> Amibroker from two icons on my desktop: one for the RT setup and
one for the
> EOD setup.
>
> For some reason my EOD QQQ data gets corrupted each time as
eSignal starts
> adding RT to my EOD data and the charts. I delete the QQQ and
create a new
> symbol, have to shut down AB, restart it and then the data is
backfilled.
> Any other way the QQQ starts filling at todays date. Is it
possible to
> create two icons for AmiBroker that will start each version up
with the
> proper DB selection and Settings? It seems that I cannot switch on
the fly
> from one to the other.
>
> Can some body outline the proper steps to work with two databases
without
> conflicts?
>
> many thanks for any suggestions,
> herman.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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:
http://docs.yahoo.com/info/terms/
|