[amibroker] Re: A Dumb Basic Question on Array Shifting

2009-04-15 Thread ozzyapeman
Thanks, G. That clarifies. --- In amibroker@yahoogroups.com, Graham kavemanpe...@... wrote: each array is aligned with the data that it is based on. MA(C,5) is aligned to the close array, no offset applied This would align the ma with the Close3 Close3 = ref( C, -3 ); Centreline3 = ma(

[amibroker] CORONA CHARTS

2009-04-15 Thread anilcap200
hi, this is in rference to the code for the john ehlers corona chart posted by Tomasz in the TASC mag issue dated November 2008. after checking the same with tradestaion code,found tht the code is wrong sumwhere as the values dont match at all,nor does the spectrum dominant cycle lines.The

[amibroker] Parameters Properties box

2009-04-15 Thread dingoman25
Hi, my AB parameters dialog box is blank for both parameters tab and axes grid tab. Tried restarting the app, but no luck. Any ideas? Newbie, with ver 5.2 thanks, Chris.

[amibroker] from where can i get download us dollar index historical eod data

2009-04-15 Thread v_patel86
plzzz friends help me from where can i get download us dollar index historical eod data and also day to day recent data like we can in nseindia.com for each and evrey stocks in .csv filesend me on v_pate...@yahoo.com

[amibroker] Building a small GUI around AmiBroker

2009-04-15 Thread agastya.ganti
Hi , I would like to build a Small GUI around AmiBroker to place orders with IB. I would like to trigger the order placement manually from the GUI (by clicking a button or so) and then calculate the stop loss, profit amount and all of that dynamically using Amibroker formulae and then place the

[amibroker] Re: Gravity center mustafa Belkhayate

2009-04-15 Thread conrad_faber
Two questions remain: - How does one backtest such a system (future looking)? - Can results be improved by Martingale strategy? (I understand averaging in is used by some professional traders) Regards Conrad --- In amibroker@yahoogroups.com, Edward Pottasch empotta...@... wrote: yes you

Re: [amibroker] Re: Gravity center mustafa Belkhayate

2009-04-15 Thread Edward Pottasch
I think you can't backtest unless you recalculate the polynomial for every bar. Maybe use 240 bars to calculate the polynomial, like a moving polynomial. But when plotting a moving polynomial the bands will not look that pretty, it will just look like a moving average. On one of these forums

[amibroker] Re: Gravity center mustafa Belkhayate

2009-04-15 Thread conrad_faber
Thx Ed I think I get your drift. Recalculate the poly per bar and populate an array(s) with the would have been results to be used in backtesting. If you look past the fancy math you will find this is just a mean reversion system so that likely turning points (extremes) can be found by other

Re: [amibroker] Re: Gravity center mustafa Belkhayate

2009-04-15 Thread Edward Pottasch
it puzzels me also that some claim to make money with it. 1 of them is Oanfx. He distributes his system free but he is really vague about how you should use it. However I think he will explain in more detail when you pay 50$/month: http://oan4x.com/news/latest/pricing.html regards, Ed

Re: [amibroker] CORONA CHARTS

2009-04-15 Thread Tomasz Janeczko
They match as long as same data is used. The reason for differences is different data (even small differences in data may lead to very different results). Best regards, Tomasz Janeczko amibroker.com - Original Message - From: anilcap200 anilcap...@yahoo.com To: amibroker@yahoogroups.com

[amibroker] auto analysis wait for backfill

2009-04-15 Thread murthysuresh
i use Ole to access Automatic analyais a lot. many times, i find that i had turned off wait for backfill and my results are incorrect. is there a way to check it thro afl or thro Ole,

[amibroker] How can I implement to PnF by Graham Kavanagh 17 Apr 2004

2009-04-15 Thread tomczykd
Hello, I use PF chart based on closing price by Graham Kavanagh, 17 Apr 2004. This is very helpfull tools for me. Some time ago I found the following code for another PnF and I would like to implement Exploration Settings to Graham's PnF chart. Please help me. I try, try and nothing. Best

[amibroker] Amiquote question for Tomasz

2009-04-15 Thread thorstef2003
Hi Tomasz, Just a couple of suggestions re amiquote Instead of using the Yahoo timestamp, why not have an option to use the local computer time instead. It's much better than the Yahoo date fix, solves so many problems and a huge step forward. Will any future version allow amiquote to be used

[amibroker] Re: Building a small GUI around AmiBroker

2009-04-15 Thread murthysuresh
if you want a gui to do order management, why don't you do it directly against ib. http://www.codeplex.com/ibcsharp has a few starter functionality --- In amibroker@yahoogroups.com, agastya.ganti agastya.ga...@... wrote: Hi , I would like to build a Small GUI around AmiBroker to place orders

Re: [amibroker] Re: Building a small GUI around AmiBroker

2009-04-15 Thread Gordon (Personal)
Hi, Although I use NinjaTrader for placing orders, I do essentially the same thing. I have a simple VB app that invokes the API with the press of a button. On the AB side, what I do is at the very beginning of a new bar, I write the previous bar's relevant data (whatever you would use to

Re: [amibroker] Re: Building a small GUI around AmiBroker

2009-04-15 Thread Tomasz Janeczko
Hello, Actually you don't really need to build gui as it is already there in the form of parameter window that can be used to place orders. Sample code is included in the docs: http://www.amibroker.com/at/ Excerpt: Example 3: 3. Placing/modifying manually from Parameters dialog. Code to be

[amibroker] IB

2009-04-15 Thread dubi1974
Hi, hope someone can help me. When Amibroker is backfilling e.g. a Stock like AMGN (from Interactive Brokers)... I get also data over night, every minute, altough there is no volume. Volume = 0. As I know Amibroker has a maximum of 500.000 bars for backfilling. So I would rather not save the 0

[amibroker] AFL help

2009-04-15 Thread max_pare
I am just starting in AFL, I've been able to make a few explorations with little and some difficulties but can't find those ones; Close price 52 week high Close price 5% 52 week high Little help would be appreciated Thanks

Re: [amibroker] from where can i get download us dollar index historical eod data

2009-04-15 Thread Richard Dale
Our futures/spot data service offers US Dollar Index. History goes back to January 1971 and is updated every day if you subscribe to the update service. It can be exported daily into CSV format and is also fully compatible with AmiBroker too. Free trial available here:

Re: [amibroker] AFL help

2009-04-15 Thread Howard B
Hi Max -- I have written a book that might be helpful -- Introduction to AmiBroker. www.introductiontoamibroker.com It is a tutorial and reference for AmiBroker, and includes a series of 10 exercises that take you from charting through backtesting, optimization, and walk forward testing.

[amibroker] Re: from where can i get download us dollar index historical eod data

2009-04-15 Thread treatmentinprogress
I might be available on MSN. Try this link for starters and then adapt for the symbol you want. This blog link explains how to get all kinds of forex pairs into ami using MSN. http://blog.tipster.ca/2007/12/how-to-get-forex-quotes-from-msn-into.html --- In amibroker@yahoogroups.com,

[amibroker] Change volume data

2009-04-15 Thread jmdeacon
I have EOD data for all the european exchanges in metastock format. Since they trade in different currencies, when I use the provided data, it is not possible to do an accurate backtest of my system since the minimum liquidity rules I have will not be uniform, say Frankfurt exchange data

[amibroker] Alpha, Semi-Transparent , or Translucent Colors

2009-04-15 Thread ganamide
Hi, I've been trying to draw the name of a symbol along with its one day percent gain/loss as background text in my charts, but I am finding that it sometimes is difficult to read under the candlestick price data. I was wondering if it would be possible to specify an alpha, or transparency,

[amibroker] ASX Symbols for IB

2009-04-15 Thread edwol53
I am trying to setup IB TWS with AB using connector/plugin. The connection is working but I am unable to figure out what the symbol construction is to be added symbol tree. I have tried - BHP, b...@asx - both give a message symbol invalid - consult symbology manual. Could someone either