Re: [amibroker] BugslayerUtil.dll

2009-09-07 Thread Tomasz Janeczko
Hello, It is used to create debug info (stack walk, resolve module names, CPU state) when unhandled Windows exception occurs and crash recovery window is displayed. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: tipequity l3...@excite.com To:

Re: [amibroker] BestRankHeld

2009-09-07 Thread Tomasz Janeczko
Hello, It is possible to exclude top-N signals (exactly what you are asking for) and it was described in the Houston2 presentation (see Example 3: Mid-level excluding top-N-signals in rotational mode) http://www.amibroker.com/docs/Houston2.ppt (powerpoint)

[amibroker] Re: BugslayerUtil.dll

2009-09-07 Thread tipequity
I can not find any instruction on how to use it. I am having problem with AB crashing during long optimization. Would you please provide instruction on how to use BugslayerUtil.dll? --- In amibroker@yahoogroups.com, Tomasz Janeczko gro...@... wrote: Hello, It is used to create debug info

Re: [amibroker] Re: BugslayerUtil.dll

2009-09-07 Thread Tomasz Janeczko
You don't use it on your own. AmiBroker uses it. AB crashing during long optimization is in 99% of cases that you run out of memory, specifically out of virtual memory. Go to Tools-Performance Monitor and watch virtual memory available. If it ever drops below 100MB you are running out of mem.

Re: [amibroker] Re: Problem using Automation with AB 5.28.1

2009-09-07 Thread Mubashar Virk
The meaning of The Meaning of Life, then. From: ozzyapeman Sent: Monday, September 07, 2009 12:49 AM To: amibroker@yahoogroups.com Subject: [amibroker] Re: Problem using Automation with AB 5.28.1 Nah. A Monty Python movie already solved that one for me. --- In amibroker@yahoogroups.com,

[amibroker] Stupid beginner question about Arrays

2009-09-07 Thread raskoks
Hi, I've got stupid problem - but i can't solve it. I've got situation like that: Condition,Condition2 - some condition with value true/false And i need to have array which value is set 0 after Condition ==true and be 0 until Condition2 change to true. But important for me is only change

RE: [amibroker] Stupid beginner question about Arrays

2009-09-07 Thread Ork Inet
Hi, Try with combinations of Exrem and Flip (AFL Function). It’s well described in doc. Regards _ De : amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] De la part de raskoks Envoyé : lundi, 7. septembre 2009 14:53 À : amibroker@yahoogroups.com Objet :

Re: [amibroker] Stupid beginner question about Arrays

2009-09-07 Thread Łukasz Bigos
thank you very much :D Both answers are useful for me :) -- Best regards raskoks On Mon, Sep 7, 2009 at 3:15 PM, Herman psy...@magma.ca wrote: There is no such thing as a stupid question :-) exrem(), flip(), and equity(1) can all be used to remove redundant conditions or signals.

[amibroker] Re: How to purchase specific symbols on specific dates for a backtest?

2009-09-07 Thread droskill
A specific date meaning a generalized date (aka first day of the month, first day of the week) or a specific date (aka 7/23/08)? The former I know you can do - the latter someone else will have to answer. --- In amibroker@yahoogroups.com, sicko_canadian manuj.aggar...@... wrote: I want to be

[amibroker] Re: How to purchase specific symbols on specific dates for a backtest?

2009-09-07 Thread sicko_canadian
A specific date. say I develop a system or purchase someone's system which just gives me market timing signals - I want to be able to test them using SPX or or QLD/QID pairs. spider --- In amibroker@yahoogroups.com, droskill drosk...@... wrote: A specific date meaning a generalized

[amibroker] Re: Vectorvest

2009-09-07 Thread reefbreak_sd
The .afl formulas for T3 that I can find are not Kalman style filters. The one I created uses the AMA2 function built into AB. There are many references to Kalman on the internet. For stock trading I chose one dimension and linear combination of functions. A good place to start is the

[amibroker] Multi Time Frame: extract daily indicator from intraday data

2009-09-07 Thread ang_60
Hi everyone, a little help if possible. I have a problem with the multitimeframe functions which is better explained with a little example. Suppose I work with 5 minutes bars. For any given bar, I need to know the TrueRange of the day before. The following code does the job: TimeFrameSet

[amibroker] Re: Modified weekly indicator

2009-09-07 Thread bistoman73
Hi, I had an idea that almost solved the problem: to use some arrays shifted of N days to built the week. I post here the code to share it and to catch suggestion to solve the problem that it still exists: having used in not normal way the timeframecompress function there are problems in

[amibroker] Vancouvert Stock Exchange with IB

2009-09-07 Thread Yves
What is the exact Symbology for MDG on Vancouver Stocl Exchange with IB Thank Merci YLTech ( Yves L. ) Le présent message et les documents qui y sont joints sont réservés exclusivement au destinataire indiqué. Il est strictement interdit d'en utiliser ou d'en divulguer le contenu. Si vous

[amibroker] Check out this site

2009-09-07 Thread gunovanengel
http://www.finviz.com/

Re: [amibroker] Check out this site

2009-09-07 Thread John N
Very nice site thank you John On Mon, Sep 7, 2009 at 12:09 PM, gunovanengel gunovanen...@cs.com wrote: http://www.finviz.com/

[amibroker] Is it possible to backtest this using AB?

2009-09-07 Thread polomorabe
Hello, I've been using AB for a while, and am reasonably proficient with AFL. I want to backtest a strategy that has been in the back of my head. I want to backtest a watchlist, but instead of the portfolio consisting of one of more stocks from the watchlist at any time, I want to separately

[amibroker] SSD - Second-degree stochastic

2009-09-07 Thread zdomokos
Can anyone help me out with any info, or an afl for the SSD calculation? Thanks. Zsolt

Re: [amibroker] Re: Vectorvest

2009-09-07 Thread Rick Osborn
out of curiosity, how close is this which I cobbled together based on my (limited) understanding of the dense math? Gain = Param(Gain,500,5,2000,5); BP = C; Pred = 0; Velo = 0; function Kalman ( BP, gain ) { for ( i = 1; i BarCount; i++ ) { Dk[i] = BP[i] - Pred[i-1]; // Delta

[amibroker] Problem with executing signals

2009-09-07 Thread raskoks
I've got two conditions: CondBuy and CondShort . Buy=Cover=CondBuy ; Short=Sell=CondShort ; Only one of them can be used for one range of time. But I'd like to know which Conditions are used by backtester. I mean what position (long, short) i have currently. How can i check it (no loops please).

[amibroker] Re: Modified weekly indicator

2009-09-07 Thread bistoman73
update: I wrote some code to avoid to use AB timeframe functions. It seems very good. The last mistery is why the last bar is 0 but I am tired now, please check the code to find any logic mistake cheers Bisto function MACDmy( array, Sh, Lo ) { eSh = EMA( array, Sh ); eLo = EMA( array,

[amibroker] ford disappeared !!!!!!

2009-09-07 Thread J Paul Buffon
Hi, Just wishing to study Ford. Put the symbol in (F), go to autodownloader amiquote, saying not enough data, same thing for - Unilever (UL or UN) - Allianz (AZ) - Telefonica (TEF) Why? Thanks Jean Paul PS: sorry not a

Re: [amibroker] Is it possible to backtest this using AB?

2009-09-07 Thread Sidney Kaiser
You can test all the stocks in a watch list on an individual basis using threold V4.0 backtester in AA.then copy and paste the good ones into a new watchlist.   Sid --- On Mon, 9/7/09, polomorabe paul.mo...@pandora.be wrote: From: polomorabe paul.mo...@pandora.be Subject: [amibroker] Is it

Re: [amibroker] Re: Request NEW afl code for choppymarket index (please look here for tradestation

2009-09-07 Thread ram vel
Hi droskill,   kindly take a look at this info on choppiness index with a chart.   http://www.linnsoft.com/tour/techind/chop.htm   The Formula . . .  . . .more on Formulas  100 * LOG10( SUM(ATR(1), x) / ( MaxHi(x) - MinLo(x) ) ) / LOG10(x) where x = Choppiness Period LOG10(x) is base-10

[amibroker] OT:Windows Defender Updates getting updated Twice each time..in Vista Business

2009-09-07 Thread John J
Sorry to post this here.. but I have been facing this problem for over a year..in Vista Business.  Any suggestions to prevent windows defender updates getting updated twice each time a new update is available.   Thanks in Advance..   John.

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread Djoni Agus
Pak Dendo, tolong perhatikan dx nya chart yang Sept 2009, jauh beda dengan apa yang terjadi dx pada JUNI 06 2008. Yang JUNI 06 2008 itu dead cross nya pas di bawah kumo/ awan jadi STRONG SELL SIGNAL. Yang terjadi tanggal Maret 18, 2009 adalah sebaliknya STRONG BUY SIGNAL, very BULLISH.

[Komunitas AmiBroker] Optimized Chart

2009-09-07 Thread h153tu
Dear all, Per jumat kemaren saya launch blog saya http://optimizedchart.blogspot.com Mohon masukan rekan2 skalian. Blog ini menampilkan chart dan signal buy or sell dari hasil optimasi menggunakan indikator will%R per masing2 saham dan program yg digunakan adalah amibroker Semoga bermanfaat

Re: [Komunitas AmiBroker] Re: [Saham_Syariah] Sharing Idea dan AFL

2009-09-07 Thread amibrokerfreak
-Original Message- From: Lt trader andye...@gmail.com Date: Sun, 6 Sep 2009 22:49:48 To: amibroker-4-bei@yahoogroups.com Subject: Re: [Komunitas AmiBroker] Re: [Saham_Syariah] Sharing Idea dan AFL Bagaimana cara mencobanya, tolong beri procedurenya.

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread Djoni Agus
Pak, apa bapak bisa minta formula ICHIMOKU ama principal nya AB, biar semua bisa belajar dgn gampang. Nanti malam saya akan kirim chart dgn warna yang lebih mantap. From: Dendo - AMIBROKERFREAK amibrokerfr...@yahoo.co.id To: amibroker-4-bei@yahoogroups.com

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread Reza Yaninputra
Untuk melengkapi sharing Pak Djoni Agus tentang ICHIMOKU saya lampirkan AFL nya yg saya ambil dari AFL Library Amibroker, semoga bermanfaat _SECTION_BEGIN(IchimokuBrian20080624); /* ICHIMOKU CHART A bullish signal occurs when the Tenkan-Sen (RED line) crosses the Kijun-Sen (BLUE line) from

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread M Alfatih
Ichimoku AFL ada di : http://www.amibroker.com/library/detail.php?id=1241 2009/9/7 Djoni Agus djoni.a...@yahoo.com Pak, apa bapak bisa minta formula ICHIMOKU ama principal nya AB, biar semua bisa belajar dgn gampang. Nanti malam saya akan kirim chart dgn warna yang lebih mantap.

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread Eco Syariah
Mas Djoni, Thanks untuk Inchimoku nya... kalau berkenan boleh gak di attached juga chart weekly dan monthly nya dari chart yg sama ini ? Sekali lagi thanks, ES 2009/9/7 Djoni Agus djoni.a...@yahoo.com Formula yang di library itu kurang bagus layout nya. http://www.amibroke r.com/library/

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread M. Himawan Prastowo
Sorry maksud saya pak Djoni. he..he On Mon, Sep 7, 2009 at 10:58 PM, M. Himawan Prastowo mhimaw...@gmail.comwrote: Saya kebetulan punya pak AFL Ichimoku yang bisa menghasilkan chart seperti punya pak Joko, seperti pada terlampir

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread Iman Chandra
Coba yang ini Mas Himawan. Kuncinya ada di perintah Plot, di baris 16 dan 17... Semoga membantu SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat({{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol +WriteVal( V, 1.0 ) + {{VALUES}}, O, H, L, C,

Re: [Komunitas AmiBroker] ICHIMOKU CHARTS

2009-09-07 Thread Djoni Agus
trims. From: Iman Chandra iman.chan...@gmail.com To: amibroker-4-bei@yahoogroups.com Sent: Tuesday, September 8, 2009 6:40:17 AM Subject: Re: [Komunitas AmiBroker] ICHIMOKU CHARTS Weekly atau Monthly kan tinggal di klik toolbar di kanan bawah Pak..

Bls: [Komunitas AmiBroker] Ichimoku Chart - Trading Systems

2009-09-07 Thread Daeng Adhe
Selamat Pagi... Perkenalkan saya Daeng Adhe, ingin bergabung pad komunitas Amibroker. untuk itu mohon bantuan dan petunjukari pada senior-senior di milist ini yg mungkin berkenan untuk membagi pengalaman dan keahlian mengenai aplikasi ini.. terus terang sy baru saja install aplikasi Amibroker

Re: Bls: [Komunitas AmiBroker] Ichimoku Chart - Trading Systems

2009-09-07 Thread Eco Syariah
Coba cari di links ini, mudah2an ketemu yg dicari... http://www.amibroker-4-bei.org http://groups.yahoo.com/group/amibroker-4-bei/ 2009/9/8 Daeng Adhe b3on...@yahoo.com Selamat Pagi... Perkenalkan saya Daeng Adhe, ingin bergabung pad komunitas Amibroker. untuk itu mohon bantuan dan

[Komunitas AmiBroker] Fibonacci Moving Averages

2009-09-07 Thread M. Himawan Prastowo
RR, saya punya satu AFL yang buat saya cukup menarik karena Fibonacci ini menggunakan EMA sebagai tools nya. Saya pikir ini cukup baik karena dengan EMA sebenarnya sudah cukup untuk melihat support dan resistence nya. Tinggal teman2 ganti aja periode EMA nya sesuai dengan style nya

Re: Bls: [Komunitas AmiBroker] Ichimoku Chart - Trading Systems

2009-09-07 Thread Jati Santosa
AB intinya adalah software alat bantu untuk analisa teknis saham (technical analysis/TA), bisa untuk jangka pendek, menengah, panjang. jd mungkin akan sangat membantu apabila telah paham prinsip dan kaidah dasar TA. Coba di googling mengenai TA ini, banyak kok referensi di web/youtube atau cari