[Komunitas AmiBroker] Re: [milis_omni] DOW Theory Summary In Visual Mind Mapping

2010-03-24 Thread M Alfatih
Pak Andry, mungkin perlu ditambahkan penjelasan soal the average must confirm each other yang kalau aslinya adalah konfirmasi arah trend antara dua Index: Dow Industrial dan Dow Transportation. 2010/3/23 andry tjoe andryt...@gmail.com Untuk Visual Summary Dow Theory yang terlampir bersama

[Komunitas AmiBroker] TLKM WAVE 24th UPDATED

2010-03-24 Thread LEO CHEN
http://besttechnicalanalysis.blogspot.com/ attachment: Chart.png

[Komunitas AmiBroker] Backtest

2010-03-24 Thread HR
Dear all, Saya ingin melakukan backtest untuk semua saham, tujuannya untuk mendapatkan saham mana yang sesuai dengan formula tersebut. Tapi yang muncul kok tidak semua saham tapi hanya beberapa saham. Any idea ? Thank's sebelumnya rgds Harry

[amibroker] Formula to Calculate The Date from Today

2010-03-24 Thread Kusnady
Dear Friends, Could you help me to calculate what is the date of 77 days from today? Thanks Regards Sawios

[amibroker] Re: backtesting negative values(prices)

2010-03-24 Thread Mike
The scenario you describe sounds very questionable. There will never be negative prices in live trading. So, what's the point of wanting to backtest with negative values? Mike --- In amibroker@yahoogroups.com, Mi henni...@... wrote: Hi there I think I have to rephrase my question.

[amibroker] Re: Dynamic Variable scope, and referencing elements of a Dynamic Variable array

2010-03-24 Thread Mike
Hi, I haven't actually tried any of this... But, if I recall correctly, variable scope is the scope at which the variable was first found. If you want a bunch of dynamic variables to be global, just initialize them at the top of the formula, before any function declarations. e.g. for (i = 0;

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread Mike
Do you want 77 bars from now, or calendar days from now? If bars, just use Ref with a positive value. e.g. something like (untested) Ref(DateTime(), 77); http://www.amibroker.com/guide/afl/afl_view.php?id=122 http://www.amibroker.com/guide/afl/afl_view.php?id=196 If you want calendar days, you

Re: [amibroker] Formula to Calculate The Date from Today

2010-03-24 Thread Herman
http://www.amibroker.org/userkb/2007/05/07/date-arithmetic/ herman Dear Friends, Could you help me to calculate what is the date of 77 days from today? Thanks Regards Sawios IMPORTANT PLEASE READ This group is for the discussion

[amibroker] Kangaroo Tail (Elder) AFL Code

2010-03-24 Thread ian.alers
Hi - does anyone have code they could share for finding 'Kangaroo tails' as per Elder's Book (Welcome to My Trading Room)

Re: [amibroker] Re: Programmatically set Current ticker?

2010-03-24 Thread Keith McCombs
I tried posting this twice already with the complete thread intact. But it would not post. Therefore, I have removed all of thread with exception of most recent post that I am replying to. Mike -- You've been a great help on this. First: |AB = CreateObject(Broker.Application);| |ADoc =

[amibroker] Custom Backtest and PositionSize = MarginDeposit = 1

2010-03-24 Thread sancra01
Hi I'm trying to learn how to use AmiBroker's Custom Backtester as I believe the system I'm coding will need to use the low level interface. In order to understand the CBT fully I'm starting off simple, running trace's etc to see how it works. I have a very simple trading system which buys on

Re: [amibroker] backtester: disregard open trades

2010-03-24 Thread Keith McCombs
I believe that you have to use CBT, Custom Back Tester, for this. Checkout example2 on page 902-903 of AmiBrokers Users Guide version 5.20. It is available in .pdf format on AB's download page. -- Keith On 3/22/2010 13:49, wml67 wrote: Friends, One more question. I remember seeing it

[amibroker] Russell 2000

2010-03-24 Thread MarkK
Does anyone have a current Russell 2000 component list? Or know where one is? Thank you MarkK

Re: [amibroker] Russell 2000

2010-03-24 Thread Richard Dale
Russell publish their index constituents here: http://www.russell.com/Indexes/membership/default.asp However, you should note that the symbols used in that list represent the symbols dated June 2009. If there have been any symbol changes since then they won't be reflected. Our data service

[amibroker] Stepping thru loop

2010-03-24 Thread Markus Witzler
Hello, I wonder if I can step thru a loop where the step size is being computed WITHIN the loop. An example: I want the loop to check for every bar until high Ref (hhv(high,50),-1). From THAT bar on, the loop should check if low Ref (llv(low,50),-1) occured. Say, the first condition is true

[amibroker] Re: backtester: disregard open trades

2010-03-24 Thread wml67
Keith, Thanks for answering. Actually, I AM using CBT and I know how to exclude open trades for custom metrics. My question is about the built-in metrics though, can their calc method be changed? Cheers! Sergei --- In amibroker@yahoogroups.com, Keith McCombs kmcco...@... wrote: I believe

[amibroker] Amibroker 5.30 and IB Controller 1.3.1 BETA

2010-03-24 Thread dubi1974
First: Congratulation to and thank you for the new release. Tomasz, I am just not sure if the new IB Controller is the same as the IB Controller 1.3.1 beta you were once sending me http://www.amibroker.com/at/1310/. I had the problem with trading of US Treasury Notes, Bonds etc. because of the

[amibroker] Re: Amibroker 5.30 and IB Controller 1.3.1 BETA

2010-03-24 Thread Rob
Please ignore my previous post. A reboot of AB and the 'chart' tab now shows all formulas correctly. --- In amibroker@yahoogroups.com, dubi1974 gonzale...@... wrote: First: Congratulation to and thank you for the new release. Tomasz, I am just not sure if the new IB Controller is the same

[amibroker] Re: Amibroker 5.30 and IB Controller 1.3.1 BETA

2010-03-24 Thread Rob
Just upgraded to 5.30... FYI I don't see to have a tree hierarchy under 'charts' anymore... it's just blank. The formulas folder still exists in AB directory as it should. --- In amibroker@yahoogroups.com, dubi1974 gonzale...@... wrote: First: Congratulation to and thank you for the new

[amibroker] Re: Problems with IB plugin when backfilling data.

2010-03-24 Thread labratno9
It's not IB that's the problem, its AB! I also have Ninja trader running on IB feed and ticks come in like a charm on ninja trader but not on AB. I recently asked support if they had changed the backfill policy on ib feed and they replied they had not done so. I have my DB set to ticks and

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread Kusnady
Thanks Mike, 77 trading days ahead from Today...means around next three month excluding Friday, Saturday and Sunday Ref(DateTime(),77)...could be used for existing array, but the array from today till 77days ahead is still blank.do you think so? you can prove this by this instruction

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread Kusnady
Thanks Herman, I tried using TimeNum, but this is not a continuous time number, so I think DaysSince1900() might be the solution. Unfortunately DaysSince1990 is the array which stop until TODAY, so we need to add DaysSince1990 for 77 trading days ahead.Do you have formula/algoritm for

Re: [amibroker] Amibroker 5.30 and IB Controller 1.3.1 BETA

2010-03-24 Thread Tomasz Janeczko
Hello, It was 1.3.0 with added config file, but now I have updated it to 1.3.1 - identical to what you had installed. Thanks for pointing this out. Best regards, Tomasz Janeczko amibroker.com On 2010-03-24 15:30, dubi1974 wrote: First: Congratulation to and thank you for the new release.

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread tuzo_wilson
--- In amibroker@yahoogroups.com, Kusnady saw...@... wrote: 77 trading days ahead from Today...means around next three month excluding Friday, Saturday and Sunday A question: how can we know what trading days will occur in the future? It is not the same thing as a standard calendar

[amibroker] Re: backtesting negative values(prices)

2010-03-24 Thread Mi
Hi Mike thx for reply. I am trying to backtest combinations e.g buying one stock selling another. but i am not sure which stock out of a sample to buy and which to sell, so i created the different combinations, but unfortunately some have negative values. I was thinking about to do it the

RE: [amibroker] Re: Problems with IB plugin when backfilling data.

2010-03-24 Thread Jerry Gress
Hello, Everything works ok, change data base to 1 minute and down load up to 180 days, if grayed out then you can down load tick data only, but very limited amount. Regards, JG -Original Message- From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of labratno9

Re: [amibroker] Re: Problems with IB plugin when backfilling data.

2010-03-24 Thread Tomasz Janeczko
Hello, Precisely. If you actually read API docs: http://www.interactivebrokers.com/en/software/apiReleaseNotes/api_84.php?ib_entity=uk#84_intraday you would see what are the limits of backfill and that they are set by IB, not AmiBroker. See the table in the document pointed out above. 2000

[amibroker] ES or NQ symbol Futures one minute

2010-03-24 Thread me_rayme
Using W7 Ultimate on IB. P R O F E S S I O N A LE D I T I O N (Version 5.29.6, Build date: Dec 24 2009) When I went to W7 from beta W7 lost the one minute symbol for one minute using IB simulated for 2010. Tried all of the following in Real Time. ESQ10-GLOBEX-FUT ESU10-GLOBEX-FUT

[amibroker] performance measure: percentage load factor

2010-03-24 Thread ta
Tomasz How should percentage load factor be interpreted? For example when I see 180%, what is basis of comparison? TIA

Re: [amibroker] performance measure: percentage load factor

2010-03-24 Thread Tomasz Janeczko
Hello, It is described in the User's Guide Performance tuning tips chapter http://www.amibroker.com/guide/x_performance.html Best regards, Tomasz Janeczko amibroker.com On 2010-03-24 20:14, ta wrote: Tomasz How should percentage load factor be interpreted? For example when I see 180%,

RE: [amibroker] ES or NQ symbol Futures one minute

2010-03-24 Thread Jerry Gress
Hello, ESM0-GLOBEX_FUT That a zero. Regards, JG -Original Message- From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of me_rayme Sent: Wednesday, March 24, 2010 11:49 AM To: amibroker@yahoogroups.com Subject: [amibroker] ES or NQ symbol Futures one minute

RE: [amibroker] performance measure: percentage load factor

2010-03-24 Thread ta
Thanks. I didn't know you had updated the help files and online user guide. When should we expect the x64 version of 5.3? couple of weeks after release of 5.3? From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Tomasz Janeczko Sent: Wednesday, March 24, 2010 12:44

[amibroker] upgrade installation Ver.530 is not exist?

2010-03-24 Thread blaxaki
hi i just try to install Ami 530 on the same folder that 529 already exist, and i would like to chose upgrade installation but is NOT exist on select setup type window, the only that i can see is full installation. Shall i make a full installation Tomasz or not? i am using win xp pro sp3

[amibroker] Re: Stepping thru loop

2010-03-24 Thread Mike
What makes you think that you are changing the step size? From what I see, you're still advancing a single bar at a time. bigHigh = high Ref (hhv(high,50),-1); smallLow = low Ref (llv(low,50),-1); lookingForHigh = true; for (bar = 0; bar BarCount; bar++) { if (lookingForHigh) { if

Re: [amibroker] upgrade installation Ver.530 is not exist?

2010-03-24 Thread Tomasz Janeczko
Hello, “Upgrade installation” is available as an option in the setup only if full setup of any earlier *official* version was run on the same machine before. It does not matter if *files* are there. What counts is if you run FULL SETUP of earlier version before. This is to prevent incorrect

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread Mike
Sorry, I just assumed that you meant 77 days from the current bar, which was a bar in the past. No, I don't know of a way to get bars in the future that don't exist yet. Mike --- In amibroker@yahoogroups.com, Kusnady saw...@... wrote: Thanks Mike, 77 trading days ahead from Today...means

[amibroker] Re: upgrade installation Ver.530 is not exist?

2010-03-24 Thread blaxaki
You are all right. Correct that is true I just open Add remove programs and amibroker is not there , so i am sorry, I was thinking that running full earlier *official* version setup thank you Panos --- In amibroker@yahoogroups.com, Tomasz Janeczko gro...@... wrote: Hello, Upgrade

[amibroker] Intraday Settings different Instruments

2010-03-24 Thread rise_t575
Is it possible to define different intraday settings (e. g. trading hours) for say, stocks and futures with IB, within one single database? Thanks in advance!

[amibroker] Re: Stepping thru loop

2010-03-24 Thread booker_1324
Nice code Mike, to take this a step farther, is it posible to attach a label to each HHV and LLV such as HH1, HH2, HH3, LL1, LL2, and LL3 without referencing future quotes? --- In amibroker@yahoogroups.com, Mike sfclimb...@... wrote: What makes you think that you are changing the step size?

[amibroker] Re: Custom Backtest and PositionSize = MarginDeposit = 1

2010-03-24 Thread sancra01
Perhaps it's a problem with my AmiBroker setup. Can anyone else replicate my problem? Thanks Craig --- In amibroker@yahoogroups.com, sancra01 sancr...@... wrote: Hi I'm trying to learn how to use AmiBroker's Custom Backtester as I believe the system I'm coding will need to use the low

[amibroker] Re: Adjusting intraday data for summer time changes

2010-03-24 Thread dubi1974
I bring this topic up again, as I do have this issues with Europe and US right now. At the moment I use the TWS IB data. Normaly the time shift between CET und NY Time is 6 hours. Right now it is 5 hours. So this confuses the database. The US markets opens at 14:30 and closes at 21:15. And if I

[amibroker] optimization

2010-03-24 Thread jim fenster
hey, Is it possible to optimize the timenum() function? Thnks, J __ Yahoo! Canada Toolbar: Search from anywhere on the web, and bookmark your favourite sites. Download it now http://ca.toolbar.yahoo.com.

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread Kusnady
your question can be well answer in this ads http://finance.groups.yahoo.com/group/amibroker/message/148126 and thanks to Herman Unfortunately the above using DateNum which is not continous numberso we could not add 77days to DateNum The DaySince1990 is good because of it is

[amibroker] Re: Formula to Calculate The Date from Today

2010-03-24 Thread Kusnady
Mike, do you know how to convert from DAYSINCE1990 to DATE? Sawios --- In amibroker@yahoogroups.com, Mike sfclimb...@... wrote: Sorry, I just assumed that you meant 77 days from the current bar, which was a bar in the past. No, I don't know of a way to get bars in the future that don't

Re: [amibroker] Re: Adjusting intraday data for summer time changes

2010-03-24 Thread Keith McCombs
dubi -- There is a free utility available at: http://www.karenware.com/powertools/ptzone.asp That ought to do the trick. -- Keith On 3/24/2010 18:48, dubi1974 wrote: I bring this topic up again, as I do have this issues with Europe and US right now. At the moment I use the TWS IB data.

[amibroker] Re: Stepping thru loop

2010-03-24 Thread Mike
Sure, just initialize a variable to track the number of highs then use PlotText to write out the count. Do the same for lows. e.g. (untested) highs = 1; ... if (bigHigh[bar]) { lookingForHigh = false; // now looking for low PlotText(HH + highs, bar, High[bar], colorGreen);

[amibroker] Re: Stepping thru loop

2010-03-24 Thread booker_1324
Thanks Mike, That works great. You make it look too easy --- In amibroker@yahoogroups.com, Mike sfclimb...@... wrote: Sure, just initialize a variable to track the number of highs then use PlotText to write out the count. Do the same for lows. e.g. (untested) highs = 1; ...