[amibroker] Re: black pixelated pictures on backtest report.

2010-07-28 Thread gariki
so i tried to see if upgrading to 5.3 solves the problem but nope; my backtest reports still have these black pictures (picture uploaded) for the first three graphs. Any pointers? http://groups.yahoo.com/group/amibroker/photos/album/962308491/pic/11522\

Re: [amibroker] Re: question for Custom Backter specialists [1 Attachment]

2010-07-28 Thread Edward Pottasch
hi, it required some empirical computing but it seems to work now. Or at least in the detailed trade log the proper positions and position sizes are taken and also the equity curve of the combined systems is close to the result I get when I add the individual systems but not exactly. I am

Re: [amibroker] Re: black pixelated pictures on backtest report.

2010-07-28 Thread Tomasz Janeczko
Hello, Did you do anything non-standard, like moving formulas folder to non-default location? Best regards, Tomasz Janeczko amibroker.com On 2010-07-28 09:40, gariki wrote: so i tried to see if upgrading to 5.3 solves the problem but nope; my backtest reports still have these black

Re: [amibroker] Req help coding problems bars since crossover and exploration-same stock [1 Attachment]

2010-07-28 Thread Inquisitive Voyager
(1) try the attachment. (2) for second problem: adjust range parameters in AA . On Tue, Jul 27, 2010 at 9:44 PM, ford7k for...@yahoo.com wrote: Hi Afl experts Please help with minor problem -coding lines needed First thing In the exploration I like to get buy=upcrossover(say 50M over

[amibroker] Re: Trading Systems, Position Sizing and Monte Carlo Analysis

2010-07-28 Thread paultsho
I think the emphasis of MK's comments is about the use (or misuse) of the phase monte carlo simulation to equate to random rearrangement of trades and its possible ramification. Monte Carlo simulation is based on ARTIFICALLY simulating data points by recreating the a chance process, running

Re: [amibroker] Re: question for Custom Backter specialists

2010-07-28 Thread Edward Pottasch
the code is correct. Small difference in the amount of multiples of the commission due to a lesser number of trades when systems are combined. I got a bigger difference that kept me busy for a while but found this: @TFS# requested size is greater than 10 % of the bar volume. Limit applied.

[amibroker] Explanation of OHLC in ~~~EQUITY

2010-07-28 Thread dubi1974
Hi, maybe this question was already answered, but I couldn't find. 1. If I used plotting, calculating etc. of ~~~EQUITY, I always used the CLOSE (like PortEquity = Foreign(~~~EQUITY, C );). But which information/data is saved in Open, High, Low? I couldn't find out what this values are for.

Re: [amibroker] Explanation of OHLC in ~~~EQUITY

2010-07-28 Thread Tomasz Janeczko
Hello, Close - System portfolio equity Low - portfolio cash Open - Long-only equity High - Short-only equity ~~~EQUITY *is* detailed equity on bar-by-bar basis. If you want to have it in tabular format you can use Exploration on ~~~EQUITY ticker or export to a file.

[amibroker] Combining two or more scans with different filters within a code.

2010-07-28 Thread prudenttrader1
Hi, Does anybody know how to combine the following two scans within a code so that the scan is run only once? First Scan: //Advance/Decline Issues - Watchlist 0 Filter=InWatchList(0); AddToComposite(CRef(C,-1),~Adv0,X); AddToComposite(CRef(C,-1),~Dec0,X); Buy=Sell=Short=Cover=0; Second Scan:

[amibroker] Re: Explanation of OHLC in ~~~EQUITY

2010-07-28 Thread dubi1974
Hello Tomasz, thanks for the quick reply. I already exported the equity curve but did not understand the low. But thanks for the explanation. Regarding so they may be a little higher that you would observe on closing values of equity: But everyone can remember May, 6 and 7 2010. That day some

[amibroker] Optimize Time Parameters

2010-07-28 Thread pcmoxon
Hi, I am working on an intraday system and want to optimize the trading hours the system should trade. I have a Start Time parameter (using ParamTime) and I would like to optimize the system using this field. Does anyone know how to optimize using Time fields? Any examples you know of would

RE: [amibroker] Optimize Time Parameters

2010-07-28 Thread Matthias K.
Hi, I'm using this. It's pretty much self-explanatory. Works based on hours. Depending on which data you use, the timestamp might be different. So to say timestart might be 055900 instead of 06. Watch out for Fridays, too, if you don't wanna hold the trader over the weekend.

[amibroker] Re: Trading Systems, Position Sizing and Monte Carlo Analysis

2010-07-28 Thread sohamdas
Dr Bandy, what you said is true, about the second alternative. The risk conditions are violated, with further scale-ins,when we double up etc. But consider, if with each scale-in, we also move the stop loss point.In that scenario, the situation can morph into one, where the risk doesnt increase

[amibroker] Re: Trading Systems, Position Sizing and Monte Carlo Analysis

2010-07-28 Thread mkecera
Yes. That's what I was trying to point out. I would be interested to hear more about we need to look outside the samples to get the full pictures if you would like to share. Best regards, MK --- In amibroker@yahoogroups.com, paultsho paul.t...@... wrote: I think the emphasis of MK's

[amibroker] Re: black pixelated pictures on backtest report.

2010-07-28 Thread gariki
Nope. My formula folders are all in the default c:\program files\amibroker; but i could have messed up something inadvertently which caused these pictures to not show up (they were working fine before). BTW, Tomasz, i am planning to move my database folders completely to a different drive and

[amibroker] Re: Optimize Time Parameters

2010-07-28 Thread pcmoxon
Thanks Matthias. It seems so simple when you know how :) It is just what i need. Thanks again. Pete --- In amibroker@yahoogroups.com, Matthias K. meridian...@... wrote: Hi, I'm using this. It's pretty much self-explanatory. Works based on hours. Depending on which data you use, the

Re: [amibroker] Req help coding problems bars since crossover and exploration-same stock

2010-07-28 Thread cas soni
Hello  Inquisitive Voyager, I think you need to add this lines ,   Filter=Buy OR Sell or f or g ; AddColumn(d,barssince,1.2); AddColumn(f,barssince up,1); AddColumn(g,barssince dw,1);   Thank you --- On Wed, 28/7/10, Inquisitive Voyager hedonist2...@gmail.com wrote: From: Inquisitive Voyager

Re: [amibroker] Combining two or more scans with different filters within a code.

2010-07-28 Thread Anthony Faragasso
/*First Scan: //Advance/Decline Issues - Watchlist 0 Filter=InWatchList(0); AddToComposite(CRef(C,-1),~Adv0,X); AddToComposite(CRef(C,-1),~Dec0,X); Buy=Sell=Short=Cover=0; Second Scan: //Advance/Decline Issues - Watchlist 1 Filter=InWatchList(1); AddToComposite(CRef(C,-1),~Adv1,X);

[amibroker] Re: Combining two or more scans with different filters within a code.

2010-07-28 Thread prudenttrader1
Thank you very much Anthony; you've been very kind. --- In amibroker@yahoogroups.com, Anthony Faragasso ajf1...@... wrote: /*First Scan: //Advance/Decline Issues - Watchlist 0 Filter=InWatchList(0); AddToComposite(CRef(C,-1),~Adv0,X); AddToComposite(CRef(C,-1),~Dec0,X);

[amibroker] OT: Windiws Mail

2010-07-28 Thread Ara Kaloustian
I recently switched to Windows 7 and started using Windows Mail Live... I have noticed that occasionally I do not receive emails sent to me. I am using IMAP protocall with gmail account Wonder if anyone else is having same problem? - Is it possible to configure it as a POP3 since I don't care

[amibroker] Stock Trading Range

2010-07-28 Thread mikk12345
Hi is there a formula that will allow me to find what the stocks dollar trading range is for one year. Is it as simple as this:- OneYeardollarRange= (HHV(C,252)-LLV(C,252)); Thanks for the help. best regards, Mikey.

RE: [amibroker] Re: Trading Systems, Position Sizing and Monte Carlo Analysis

2010-07-28 Thread Matthias K.
Hi, Thanks Mike for your explanation and the link. The definite guide to position sizing is the only book I'm missing in my van Tharp collection, looks like just found my next bday present, hehee. Just to make this complete, the new Supertrader book is pretty lame in my opinion, nothing really

[amibroker] Re: Definition of backtester object properties

2010-07-28 Thread raymondpconnolly
Thanks Mike...I will go through it...I greatly appreciate your response. Ray --- In amibroker@yahoogroups.com, Mike sfclimb...@... wrote: A reply that I made to an earlier thread might be helpful. Note that despite the verbal description in the link below, I seem to recall that AmiBroker

[amibroker] Re: Definition of backtester object properties

2010-07-28 Thread Mike
One thing to keep in mind is that open position gains are not added to the Cash property and are thus not available for taking additional positions (i.e. the taking of positions is dependent upon the availability of Cash). http://finance.groups.yahoo.com/group/amibroker/message/148014 Mike

[amibroker] Re: Definition of backtester object properties

2010-07-28 Thread raymondpconnolly
Mike, thanks for the info I've spent a week trying to get to the bottom of these property relationships and unless I missed something I didn't see any of this in the documentation nor did I get any response from support on the issue. So reading between the lines from your posts did you use

RE: [amibroker] Trading Systems, Position Sizing and Monte Carlo Analysis

2010-07-28 Thread Lionel Issen
Thanks. How does this book compare with Van Tharp’s book? From: amibroker@yahoogroups.com [mailto:amibro...@yahoogroups.com] On Behalf Of Matthias K. Sent: Monday, July 26, 2010 3:24 PM To: amibroker@yahoogroups.com Subject: RE: [amibroker] Trading Systems, Position Sizing and Monte Carlo

[amibroker] Re: Definition of backtester object properties

2010-07-28 Thread Mike
Ray, A while ago I had reason to write low level custom backtester code in place of the default backtester. I instrumented my code at every step with many _TRACE statements, thereby giving me a peak as to what was really going on in the backtester.

[amibroker] plottext

2010-07-28 Thread Anthony Faragasso
I would like to stick a date on the chart tied to a specific condition and not have the date change when moving through the chart...any help appreciated. Thank you Anthony

[amibroker] Real time layouts/workbooks [1 Attachment]

2010-07-28 Thread Rol
hi Thomasz In the attachment you will see that there are 6 workbooks/pages, [i'm not sure what to call them], listed. Some i have created myself, others were already there. How do i delete unwanted workbooks/pages that i have created? More importantly, is it possible to have more than one

Re: [amibroker] plottext

2010-07-28 Thread Inquisitive Voyager
what is that condition? On Thu, Jul 29, 2010 at 7:46 AM, Anthony Faragasso ajf1...@epix.net wrote: I would like to stick a date on the chart tied to a specific condition and not have the date change when moving through the chart...any help appreciated. Thank you Anthony

[amibroker] Re: Trading Systems, Position Sizing and Monte Carlo Analysis

2010-07-28 Thread Jeff
Scaling in/out whether it's because of a signal or a money management system (optimal f, martingale,etc. ) are hairs of the same dog, but done differently. Usually you'll hear of a trading system that has signals that suggest scaling in/out us a good idea, but most people have no idea what

Re: [Komunitas AmiBroker] Hok1 please comment

2010-07-28 Thread i_prasetiya
Saya udah relize profit GJTL di level 1030. Seperti trading plan saya sebelumnya dan spt kata Suheng semoga market hari ini berbaik hati pada GJTL. Salam cuan. Powered by Telkomsel BlackBerry® -Original Message- From: Hok1 limh...@gmail.com Sender: amibroker-4-bei@yahoogroups.com Date:

Re: [Komunitas AmiBroker] Upgrade Bollinger

2010-07-28 Thread Timur Langit
Wah, selamat Bro Isfandi... All the best for you and your family. Kasi kabar ya kalau sudah firm, kita bakal kehilangan nih Timur On Wed, Jul 28, 2010 at 12:42 PM, isfandi2...@yahoo.com wrote: Soonest brother..., coz maybe not longer I will back to fixed income market for trading govt.

Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread NuTrader
Makasih banyak atas uraiannya yg banyak mencerahkan. khususnya yg ref (hanya diambil -10 sampai 0 saja.peak/trough memang tidak dipakai.. hasilnya turun lagi menjadi 264% saja bukan 318%cukup banyak juga. MA 264% vwap  326%. t3b like 488% alligator 142% ada satu lagi yg

Re: [Komunitas AmiBroker] Hok1 please comment

2010-07-28 Thread Hok1
Ok very good pras, kalau lagi hoki, nggak lari kemana. Target teman2 saya di 1050 (3xSD 25 hari), tapi kalau sduah untung ya lepas aja. GJTL = Gernyata Jadi Tjuan Lhooo, tetap aja maksa H1 2010/7/28 i_praset...@yahoo.com.sg Saya udah relize profit GJTL di level 1030. Seperti trading

RE: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread chris_ta...@ymail.com
Btw,sy ndak ngrti cara kerja mirip yg mahal t3b lho. Bs tlg dijelasin dak,kpn buy n kpn sell di t3b? Thanks sblmnya... Best Regards, Christopher Tahir MSN : chris_ta...@hotmail.com YM : chris_ta...@ymail.com FB : chris.ta...@yahoo.com Blog : ez-stock.blogspot.com -Original Message- From:

Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread Hok1
Wow, saya akan banyak belajar sama Anda tentang backtesting dan optimasi. Ya kadang2 saham tertentu jauh lebih bagus kalao pake simple MA daripada WMA, terus ada yang nggak pernah untung kalau pake will%R dlsb, oleh karena itu saya templokin aja 8 sinyal buy and sell dari indicator2 sederhana

Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread colonel262
Cara kerja T3B mudah pak Chris, cuma peak through, buy breakpeak, stoploss kalau break through ATAU -8% mana yang lebih dulu. Pada 3 months Uptrend, peak/through terbentuk( H atau low,3) kalau downtrend 3 bulan, (H atau L,2). Ada lagi K line yang katanya risk line, itu trend following

Re: [Komunitas AmiBroker] Upgrade Bollinger

2010-07-28 Thread isfandi2001
@ Pak Dandy, mohon maaf pd posting terdahulu kita dulu udh pernah pd ngebahas soal bollinger (pretty boliinger), soal histogram BB lbh mirip elliot wave histogram, dmn utk melihat perubahan/reversal trend bear or still bulls, tepatnya utk melengkapi BBand chart, kl rasanya aneh mungkin dicoba

Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread irwan
Selamat malem temen temen, punten para suhu... Saya mau ajak temen temen yg newbie dan masih bloon kaya saya untuk bisa diskusi diblog sayasama sama belajar yuk...newbie2newbie... Ini alamatnya kalo berkenan mampir. www.alligator-analisasaham.blogspot.com Blog yg baru dibuatin anak saya

Re: [Saham_Syariah] Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread Eco Syariah
Boleh juga... kalau salah pilih tipe saham bisa bikin stress berkepanjangan karena nyangkut... Mas Adit... kasih kita clue mana yang defensive, growth atau junk stock... biar gak kacilakaan... UNVR atau TLKM sering disebut defensive stock... tapi dia growth juga kan ? 2010/7/28 aditya

Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread colonel262
Dear Mas ES, Iya saya sekarang mainnya tidak kagetan, bisa dibilang mid-to long term, tapi saya sisihkan sangat sedikit uang buat garuk tangan yang gatal hahahaha. Saya pribadi termasuk orang yg menganut BLSH. Pendekatan TA BHSH memang tidak salah, memang demikian teorinya , buy breakout

Re: [Komunitas AmiBroker] 2283% Profit by MA from BUMI ???

2010-07-28 Thread NuTrader
ah bisanya P Hok merendah, saya pun belajar dr teman2 semilis yg lebih pakar2. sering dlm diskusi, muncul trigger baru yg bermanfaat utk pengembangan ide2 baru . salam --- Pada Rab, 28/7/10, Hok1 limh...@gmail.com menulis: Dari: Hok1 limh...@gmail.com Judul: Re: [Komunitas

Re: [Komunitas AmiBroker] Optimasi Average Trading Systems (ATS) - %Profit Max

2010-07-28 Thread NuTrader
ES, Wah .bagus banget informasi hasil backtest nya... William Alligator II the Top? apakah hasil oprekan or still Ori? Bg dengan data terakhir? Salam --- Pada Rab, 28/7/10, Eco Syariah esyar...@gmail.com menulis: Dari: Eco Syariah esyar...@gmail.com Judul: Re: [Komunitas

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Eco Syariah
Mas Dimaz, Very nice plugins... and the way of sharing AFL ... Semoga semakin sukses... Thanks, ES 2010/7/29 Dimaz kij...@gmail.com Permisi rekan rekan pengguna AB. Mengikuti jejak Master Halim, mau sumbang .dll untuk indikator visual trading range daily, alias Pivot. Nilai trading range

Re: [Komunitas AmiBroker] Optimasi Average Trading Systems (ATS) - %Profit Max

2010-07-28 Thread Eco Syariah
William Alligator II yg dioprek fractalnya aja... tapi krn AFL nya pakai future data dan waktu Code_Check Profile mpok Ami bilang Cannot Be Reproduced in Real Trading... saya pribadi jd ragu makainya... hasilnya irrasional (istilahnya mas Colonel)... tapi kelihatannya banyak teman yg sukses makai

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread greenhorn
Ruarrr biasa Thankzzz berat pak Saya kira sharing model dll sangat membantu agar membuat pemiliknya lebih nyaman... Tentunya yang mau sharing afl versi open source juga gak masalah asal karya original atau paling tidak menyebut sumbernya... Saya kira ini akan sangat membantu rekan-rekan

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread i_prasetiya
Minta izin untuk saya pakai mas Dimaz. Thanks. Powered by Telkomsel BlackBerry® -Original Message- From: Dimaz kij...@gmail.com Sender: amibroker-4-bei@yahoogroups.com Date: Thu, 29 Jul 2010 00:05:52 To: amibroker-4-bei@yahoogroups.com Reply-To: amibroker-4-bei@yahoogroups.com Subject:

Re: [Komunitas AmiBroker] Optimasi Average Trading Systems (ATS) - %Profit Max

2010-07-28 Thread Timur Langit
Ijin nyeletuk ya Pertama; tergantung buy/sell signal yg Pak Eco tempatkan pada sistem Buaya yg di back test. jika buy/sell signall nya ada yg berdasarkan 'tembus' fractal maka backtest nya bisa tidak reliable karena menggunakan futur data. jika tidak menggunakan fractal untuk buy/sell

[Komunitas AmiBroker] BKSL

2010-07-28 Thread Dandy
Hi All, BSKL kayanya cakep tuh. Dari dua indikator modifikasi saya, Averaging Oscillator dan WMACD, sudah Buy + Volume juga meningkat dibanding rata2 5 hari terakhir. [image: BKSL 29072010.png] -- Regards, MM Dandytra _ My

Re: [Komunitas AmiBroker] ASII - Sedikit Kemenangan TA ?

2010-07-28 Thread irwan
Pagi Kalau ada yg tertarik dengan teori ord-volume ..contoh chart ada di blog saya ..kita bisa diskusi dan belajar bersama .. http://www.alligator-analisasaham.blogspot.com/ Regards Irwan -Original Message- From: Eco Syariah

Re: [Komunitas AmiBroker] Analisa Iseng

2010-07-28 Thread Timur Langit
Hanya satu kata. prikitiu.you are rock Man!. Ada dua tanya; 1. commentary di bar terakhir itu pigimane bikinnya? 2. trend lines itu 'automatically adjusted' untuk masing2 saham ya? pantun untuk anda; main gundu pake kebaya ajari daku gimana bikinnya Timur

Re: [Komunitas AmiBroker] Optimasi Average Trading Systems (ATS) - %Profit Max

2010-07-28 Thread colonel262
Dear Timur Laut, Yang mahal memang menggunakan fractal wkwkwkwk. mengapa banyak ikut? Selain promosi marketing hebat, pengikutnya rata2 umumnya baru kurang 6 bulan - 1 thn di market. Saya ada pertanyaan buat teman-teman, pada beberapa trading system yg kita buat, umumnya kan ada sinyal sell

RE: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread chris_ta...@ymail.com
Mas Dimaz,gimana caranya buat afl jadi *.dll? Thanks. Best Regards, Christopher Tahir MSN : chris_ta...@hotmail.com YM : chris_ta...@ymail.com FB : chris.ta...@yahoo.com Blog : ez-stock.blogspot.com -Original Message- From: Dimaz Sent: 29/07/2010 12:05:52 AM Subject: [Komunitas

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread isfandi2001
Pak Dimaz, salam kenal.., trm ksh utk sumbangannya, ijin ngobain ya pak... salam, Isfandi From: chris_ta...@ymail.com chris_ta...@ymail.com To: amibroker-4-bei@yahoogroups.com amibroker-4-bei@yahoogroups.com Sent: Thu, July 29, 2010 8:54:55 AM Subject: RE:

[Komunitas AmiBroker] AFL/DLL utk rubah data Yahoo current jadi intraday data?

2010-07-28 Thread bassir
Halo teman-teman, Ada tidak ya yang bisa bikin AFL atau Dll, atau apapun namanya yang bisa mensubtract data yahoo current menjadi data intraday 15menit atau 30 menitan??Walaupun tetap delay 10 menit tetapi paling tidak kita bisa dapat gambaran intradaynya Bukan maksudnya mau nyaingin datanya

Bls: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread NuTrader
Master Guru, wah senang banget lihat email P Dimaz .. Mohon ijin juga utk pake dll nya. Boleh juga P ngadain Training Konversi afl ke dll..saya daftar no 1. Salam --- Pada Kam, 29/7/10, Dimaz kij...@gmail.com menulis: Dari: Dimaz kij...@gmail.com

Re: [Komunitas AmiBroker] Analisa Iseng

2010-07-28 Thread Aliyani Syukur
thanx for the sharing pak Isfandi. Izin sedot... aliy. From: isfandi2...@yahoo.com isfandi2...@yahoo.com To: AB Community amibroker-4-bei@yahoogroups.com; AATI milis-a...@yahoogroups.com Sent: Thu, July 29, 2010 12:07:56 AM Subject: [Komunitas AmiBroker]

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Hok1
Waduh keduluan sama Kusnady nih... Saya juga daftar, kalau perlu gelar tikar gelar tikar deh... Btw, nice plugin P Dimaz. Salam H1 2010/7/29 NuTrader saw...@yahoo.co.id Master Guru, wah senang banget lihat email P Dimaz .. Mohon ijin juga utk pake dll nya. Boleh juga P

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Abdul Halim
Manstab!! Mohon ijin sedot dan pakai. 2010/7/29 Dimaz kij...@gmail.com Permisi rekan rekan pengguna AB. Mengikuti jejak Master Halim, mau sumbang .dll untuk indikator visual trading range daily, alias Pivot. Nilai trading range di intraday (1 menit, 5 menit, hourly, dll) ditampilkan

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Aliyani Syukur
thanx mas dimaz... izin copas yah. aliy. From: Dimaz kij...@gmail.com To: amibroker-4-bei@yahoogroups.com Sent: Thu, July 29, 2010 1:05:52 AM Subject: [Komunitas AmiBroker] Pivot Daily dll Oneliner Permisi rekan rekan pengguna AB. Mengikuti jejak Master

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Timur Langit
Pak Abdul Halim Dinda Dimaz (biasanya Dimaz itu khan masih remaja jadi dipanggil Dinda aja ha ha ha...) Adain kursus bikin dll dong pake netmeeting aja atau apa kek... wiken... ya Timur 2010/7/29 Aliyani Syukur aliy_syu...@yahoo.com thanx mas dimaz... izin copas yah.

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread hendy c
pak dimaz dan teman teman minta bantuin ya saya jalankan sesuai instruksi pak dimaz,tetapi saya mau aktifkan koh nga bisa?salah dimana(maaf gaptek) thx Pada 29 Juli 2010 10:53, Timur Langit timurlangit.is.h...@gmail.commenulis: Pak Abdul Halim Dinda Dimaz (biasanya Dimaz itu khan masih

RE: [Komunitas AmiBroker] Intraday

2010-07-28 Thread Eko Widjajanto
Hok Hwan, Boleh setiap hari kiriman yang begini. Kam sia, mercy, mucho gracias, matur nuwun, Eko From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-...@yahoogroups.com] On Behalf Of Hok1 Sent: Thursday, July 29, 2010 10:01 AM To: amibroker-4-bei@yahoogroups.com Subject: [Komunitas

RE: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Christopher Tahir
Setuju bngt ma Bang Timur... Kasian kite2 yg di luar kota. Hehehe Jd butuh jg tuh pke Netmeeting buat pelatihan. Ato ga record pke desktop video recorder,lalu di upload aja. Hehehe... Thanks buat Pak Dimaz... Senior afl neh,ud sy bc afl nya di milist sjak mail thn 2006 mgkn. Hahaha Sy masi nubie

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread greenhorn
Kalau ada yang mau versi afl-nya silahkan dicopas aja: _SECTION_BEGIN(PIVOT); Plot(C,,IIf(CO,colorGreen,IIf(CO,colorRed,colorLime)),64); Pilih=IIf(ParamList(Pivot,Sekarang|Besok)==Sekarang,-1,0); HH= SelectedValue(Ref(H,Pilih)); LL= SelectedValue(Ref(L,Pilih)); CC= SelectedValue(Ref(C,Pilih));

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread Timur Langit
AhAaaa. sekarang saya tahu gimana ngasi text di ujung end of bar 2010/7/29 greenhorn gre3nh...@gmail.com Kalau ada yang mau versi afl-nya silahkan dicopas aja: _SECTION_BEGIN(PIVOT); Plot(C,,IIf(CO,colorGreen,IIf(CO,colorRed,colorLime)),64);

RE: [Komunitas AmiBroker] Ikutan Nyumbang (Cash Management)

2010-07-28 Thread Christopher Tahir
Thanks mas Isfandi. Wuih... Temen2 neh smangat berbagi deh... Sy mau bagi 1 afl,tp ntah kepake ndak yah. Soalnya sy pake buat main OPTIONS aja. Kalo ada yg minat,silahkan hub.i sy ya. Gratis... Soalnya afl ini ga bs pke buat ihsg. Hahaha Best Regards, Christopher Tahir MSN :

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread chynthia julianthy
Terimakasih Pak Greenhorn, Ini lebih simpel (userfriendly) dibandingkan versi dll-nya Pak Dimaz. salam kenal Father's Chynthia 2010/7/29 greenhorn gre3nh...@gmail.com Kalau ada yang mau versi afl-nya silahkan dicopas aja: _SECTION_BEGIN(PIVOT);

Re: [Komunitas AmiBroker] Pivot Daily dll Oneliner

2010-07-28 Thread greenhorn
sama2 pak... semoga bermanfaat. salam, green 2010/7/29 chynthia julianthy chynthia010...@gmail.com Terimakasih Pak Greenhorn, Ini lebih simpel (userfriendly) dibandingkan versi dll-nya Pak Dimaz. salam kenal Father's Chynthia 2010/7/29 greenhorn gre3nh...@gmail.com Kalau ada yang