Re: [amibroker] Help with code afl- color macd

2010-08-19 Thread reinsley
Here is a MACD zero lag you could adapt to ADX. Best regards |/*Zero Lag MACD(p,q,r)*/ //based on ZeroLag EMA - see Technical Analysis of Stocks and Commodities,April 2000 xspace = Param( "GraphXSpace ", 10, 1, 20, 1 ); p = Param("P",5,3,36,2);//12 q = Param("Q",35,3,52,2);//26 r = Param("R

Re: [amibroker] Help with code afl- color macd

2010-08-19 Thread ram vel
Hi Reinsley, Kind of you to help with the afl for colormacd. it is really good. Would it be posible to provide the adx zerolag code lines,if you have time?please appreciate your help regards rv --- On Thu, 8/19/10, reinsley wrote: From: reinsley Subject: Re: [amibroker] Help with code afl- co

Re: [amibroker] Help with code afl- color macd

2010-08-19 Thread ram vel
Dear afzal   This solved the problem. many thanks. gratefully rv --- On Thu, 8/19/10, afzal hossain wrote: From: afzal hossain Subject: Re: [amibroker] Help with code afl- color macd To: amibroker@yahoogroups.com Date: Thursday, August 19, 2010, 12:10 AM   the scale is just a matter

[amibroker] Amibroker multiple installs

2010-08-19 Thread jooleanlogic
Sorry I'm sure this has probably been answered before but Yahoo keeps giving me "Search server is busy (code=300)" when searching. Very annoying. Anyway, I want to install 5.3 but also keep 5.2 running as I need them both for testing purposes. Just after advice on the best path. Can I just inst

[amibroker] Re: Specified Optimizer Engine not found

2010-08-19 Thread amiuser999
Actually, I think even if they are differenmt file names but simply copies of another one you might still have problems. Try removing one from the directory completely... --- In amibroker@yahoogroups.com, Keith McCombs wrote: > > I know. They were originally in two different directories. I re

Re: [amibroker] Calculate Close one week ago today using RT data

2010-08-19 Thread Rick Osborn
No takers, huh? Best Regards Rick Osborn From: ricko8294_98 To: amibroker@yahoogroups.com Sent: Fri, August 13, 2010 12:23:01 AM Subject: [amibroker] Calculate Close one week ago today using RT data I am using E-mini data - 1 minute bars. I want to access

[amibroker] customized walk forward backtesting possible?

2010-08-19 Thread adexie
Greetings all, I was wondering if anyone knows whether it is possible to do customized walk forward backtesting with afl code? So I have control over what parameter from IS to use in OS. For example, each time after a IS optimization, i would like to modify the parameter from the optimization b

[amibroker] How to use Plot from plugin dll

2010-08-19 Thread ronald davis
I just now started to learn programming. I tried many times to add "Plot" to the FunctionTag gFunctionTable[], but Visual Studio always complained. I would appreciate receiving code with source code that calls Plot ,so I can add it to my AFL plugin dll>FunctionTag gFunctionTable[] If anyone is

Re: [amibroker] How to use Plot from plugin dll

2010-08-19 Thread Keith McCombs
Ron -- I receive and save all postings via email. There were no responses to Dimaz's 7/20/10 posting other than yours. You might try contacting him directly, at kij...@gmail.com, to see he has made any progress. -- Keith On 8/19/2010 13:14, ronald davis wrote: I just now started to learn pr

Re: [amibroker] Re: Specified Optimizer Engine not found

2010-08-19 Thread Keith McCombs
Nope. That doesn't work. Thanks anyway, -- Keith On 8/19/2010 10:48, amiuser999 wrote: Actually, I think even if they are differenmt file names but simply copies of another one you might still have problems. Try removing one from the directory completely... --- In amibroker@yahoogroups.com

Re: [amibroker] How to use Plot from plugin dll

2010-08-19 Thread ronald davis
Keith, thanks for responding, I already did email Dimaz several days ago, and have not heard from him. Hopefully, some other AB users have made AFL dlls that call the Plot function, and are willing to share the coding. Ron D --- On Thu, Aug 19, 2010 at 2:15 PM, Keith McCom

[amibroker] Plotting from a DLL into amibroker

2010-08-19 Thread mac_bosh
Hi Dimiz, Apologies for contacting you directly but I don't write into the group as I always seem to get spammed after dong so. However, I was going to attach a file of example source that I've put together for you but Yahoo doesn't provide an attachment facility. So, if you get back to to me at

Re: [amibroker] customized walk forward backtesting possible?

2010-08-19 Thread Howard B
Hi Ade -- You might add logic code to your afl that identifies the category of market condition, then sets the parameters the way you want them for that condition, and then continues on with the optimization. Perhaps using the Switch statement. Thanks, Howard On Thu, Aug 19, 2010 at 9:20 AM, ad

[amibroker] Re: customized walk forward backtesting possible?

2010-08-19 Thread adexie
thanks Howard for your suggestion. I guess the difficult part for me is how to code it up. I found this online, http://www.amibroker.com/kb/2008/05/19/historical-portfolio-backtest-metrics/ but it's not very comprehensive on custom backtest. Do you know of any other documentation on this topic?