Re: [Komunitas AmiBroker] Kontributor AFL sejagat

2009-03-15 Thread FAUZI CHAIRANI
Mudah-mudahan teman2 yang belum bisa ngoprek AFL tidak berkecil hati, karema semoga saja ada pencipta/pengoprek AFL yang berpendapat lain, yakni bersedia sharing bagi-bagi AFL buatannya tanpa memaksa orang lain untuk belajar dulu/belajar bersama AFL. Para penyumbang AFL sejagat yang diposting 

Re: [Komunitas AmiBroker] Kontributor AFL sejagat

2009-03-15 Thread Sathya
Pak Fauzi , jago coding atau ngoprek or utak atik , ini semua tidak menjamin akan jadi pemenang dalam trading or investasi. tp stidaknya menjadi lebih ngerti sifat indicator tsb. ini hanya sekedar hobi...sambil bertrading. kt tdk akan dapat membuat holygrail indicator. dan saya rasa di forum ini

Re: [Komunitas AmiBroker] Kontributor AFL sejagat

2009-03-15 Thread Eco Syariah
Dear All, Kalau saya salah... saya minta maaf... dan terima kasih atas masukan mas Fauzy Bogor. Di AFL Library memang bejibun AFL di sana dan berasal dari penyumbang berbagai negara/pasar... tinggal pilih... ada AFL yang coba-coba/minta feedback... ada AFL yang tidak jalan/tidak lengkap/salah

Re: [amibroker] how to make continous contracts

2009-03-15 Thread Richard Dale
We offer futures data that integrates well with AmiBroker in which you can create back-adjusted continuous contracts in various ways by changing the roll dates/roll schedule to suit your style of trading. See here for an article on how it works:

[amibroker] Running a 2005 VB.net program from within AFL code

2009-03-15 Thread Bruce Hawkins
How can I run a 2005 VB.net program from within AFL code? A simple example would be appreciated. Thanks, Bruce

[amibroker] Re: Problem with Low-level graphics functions

2009-03-15 Thread jorgen_wallgren
First of all, you can't assign an array as a point for the Rectangle, so try y2 = LastValue(Courbemansfield); Zero is in upper left corner of the screen. When I first started with Gfx programming, I took 30 minutes and played around with GfxSetPixel( x, y, color ), GfxRectangle( x1, y1, x2, y2

[amibroker] mid-level custom backtest tutorial

2009-03-15 Thread bigitop
Can anyone please recommend a tutorial for mid-level custom backtesting with code examples. I'm specifically interested in doing some advanced position sizing but I don't know how to handle the PreProcess()/ProcessTradeSignals()/PostProcess() methods and how to implement the actual position

[amibroker] Can Barcharts.com be used as a data source?

2009-03-15 Thread massandtime
Hi, I can find no reference stating that Barcharts.com can be used as a data source for Amibroker. Is it possible to use it? Is anyone here using it? Thanks

[amibroker] (unknown)

2009-03-15 Thread bigitop
I'm trying to set the custom backtest position size to 50% of portfolio equity but the script keeps applying the full portfolio equity to the signal. what's wrong with this code?? do I have to specify any other particular settings? if( Status(action) == actionPortfolio ) { bo =

Re: [amibroker] mid-level custom backtest tutorial

2009-03-15 Thread Edward Pottasch
have a look here: http://www.amibroker.org/userkb/2008/03/16/amibroker-custom-backtester-interface-2/ - Original Message - From: bigitop To: amibroker@yahoogroups.com Sent: Sunday, March 15, 2009 5:06 PM Subject: [amibroker] mid-level custom backtest tutorial Can

[amibroker] Re: mid-level custom backtest tutorial

2009-03-15 Thread bigitop
excellent. this is enough to get me started. thanks! --- In amibroker@yahoogroups.com, Edward Pottasch empotta...@... wrote: have a look here: http://www.amibroker.org/userkb/2008/03/16/amibroker-custom-backtester-interface-2/ - Original Message - From: bigitop

Re: [amibroker] Re: simple lower lows

2009-03-15 Thread Radek Simcik
Hi Mike, yes you're completely right. I was interested in lower lows with in 3 periods only in my system and I applied it incorrectly to Jim's question. Thank you for nice piece of code! Radek On Sun, Mar 15, 2009 at 12:07 PM, Mike sfclimb...@yahoo.com wrote: Sorry Radek, but it is you

[amibroker] two backtest questions

2009-03-15 Thread Radek Simcik
Hi all, I was just wondering if anybody knows - how AB decides what trade to take in case there are let's say 5 possible trades but we have set up MaxOpenPositions to 3. - how to backtest two or more different systems/afl codes against each other in one go. So I can see the results on one

[amibroker] problem: 5.24.0 BETA working in 64-bit Vista with TWS + eSignal

2009-03-15 Thread timekeeper_origen
Happy Sunday All, I've encountered a problem that I have struggled with for about a week now, find irresolvable and wonder if the group might not mind me reaching out for some ideas? I am a newbie so this may seem obvious to many of you but clearly I am stymied. The setup: have installed 5.24.0

[amibroker] Re: two backtest questions

2009-03-15 Thread Mike
1. Use PositionScore. http://www.amibroker.com/guide/h_portfolio.html 2. Run a dummy optimization. Buy = Sell = 0; Dummy = Optimize(System, 1, 1, 2, 1); if (Dummy == 1) { // Strategy 1 Buy = ... Sell = ... } if (Dummy == 2) { // Strategy 2 Buy = ... Sell = ... } Alternatively, just

Re: [amibroker] Re: two backtest questions

2009-03-15 Thread Radek Simcik
Hi Mike, thank you for your answers... Some more questions below. Radek On Mon, Mar 16, 2009 at 3:13 PM, Mike sfclimb...@yahoo.com wrote: 1. Use PositionScore. http://www.amibroker.com/guide/h_portfolio.html cool but - It doesn't say how AB handles it without using PositionScore (just out of

Re: [amibroker] Re: AmiBroker (AFL) beginer questions

2009-03-15 Thread Radek Simcik
Hi Mike, first of all thank you for your answers! Please find my comments below. The rest of you answer need more reading and experimenting. ;-) Radek On Sun, Mar 15, 2009 at 12:47 PM, Mike sfclimb...@yahoo.com wrote: --- In amibroker@yahoogroups.com, Radek Simcik radek.sim...@... wrote:

[amibroker] Re: two backtest questions

2009-03-15 Thread Mike
1. Yes, I believe that in the absence of a PositionScore, it's first come first served. I'm not 100% sure though. The absolute value of PositionScore is used when choosing the winners, since negative PositionScores are for Short and positive ones are for Buy. The usage of PositionScore depends

Re: [amibroker] Re: two backtest questions

2009-03-15 Thread Graham
This was answered some time ago, check post histories I believe it is 1. PositionScore value, higher absolute value goes first (+ for long, - for short) 2. Higher trade size, larger $ value goes first 3. Symbol alphabetic, A goes first -- Cheers Graham Kav AFL Writing Service

[amibroker] Re: AmiBroker (AFL) beginer questions

2009-03-15 Thread Mike
AddTextColumn wants a single string value, not a bar by bar array of strings. So, I think you're out of luck. For automating your exploration, others in this forum often mention AutoIt. I've never looked at it. But, maybe it would help you. Mike --- In amibroker@yahoogroups.com, Radek Simcik

[amibroker] Re: mt4 plugin

2009-03-15 Thread lagramada7
It still doesnt work, ccr1 bzw, do you have a demo account or a real one tnx --- In amibroker@yahoogroups.com, ccr1der d...@... wrote: I got the MT4 thing working. You have to start rateserver.exe manually with /regserver as the parameter. Then you have to change your MT