Re: [amibroker] How do I get rid of this?

2006-12-07 Thread Bruce Hawkins
Thank you Graham. wrote: This is the time taken to run the chart AFL you can remove the timer from showing in preferences -- Cheers Graham AB-Write Professional AFL Writing Service Yes, I write AFL code to your requirements http://www.aflwriting.com http://www.aflwriting.com On

[amibroker] parabolic sar

2006-12-07 Thread Vins
hi, i just found a parabolic in the AB site as the follower formula. i'd like to make a diffent version of the SAR that it never reduced the step and didn't take into account the previous candle when deciding on direction switches. Someone can help me ? // Written by: Thomas Ludwig

[amibroker] Jurik Moving Average JMA

2006-12-07 Thread carlacash26
Hi, I'm lookng for a JMA clone for Amibroker. I have gotten a clone but it is written in .NET so I don't know how to implement it in AFL.

Re: [amibroker] Jurik Moving Average JMA

2006-12-07 Thread a a
Can you share the .net clone? Maybe somebody can help. carlacash26 [EMAIL PROTECTED] wrote: Hi, I'm lookng for a JMA clone for Amibroker. I have gotten a clone but it is written in .NET so I don't know how to implement it in AFL.

[amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread sebastiandanconia
I used to cast pearls before swine, too, until I discovered that some of the swine had better pearls than I did.:) A word to the wise: Over-confidence is a leading indicator of significant drawdowns. S. --- In amibroker@yahoogroups.com, brpnw1 [EMAIL PROTECTED] wrote: Obviously I am

[amibroker] Re: Adding symbols to RTQ window

2006-12-07 Thread treliff
James, You can edit the Broker.watch file in the database folder with a text editor (like NotePad) and enter (or paste) the symbols, one per line. These will then show up in your RTQ window. -treliff --- In amibroker@yahoogroups.com, James [EMAIL PROTECTED] wrote: 1. Does the RTQ window

[amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread brpnw1
You guys remind me of the Bush Administration in so many ways. ~B --- In amibroker@yahoogroups.com, sebastiandanconia [EMAIL PROTECTED] wrote: I used to cast pearls before swine, too, until I discovered that some of the swine had better pearls than I did.:) A word to the wise:

[amibroker] Help with Indicator/Exploration formula

2006-12-07 Thread areehoi
I'm trying to get this indicator/exploration to show Buy/Sell signals (up –down arrows) on the indicator and Buy /Sell results on the exploration. Any ideas on how this might be accomplished will be most appreciated. Dick H (watch for wrap) /*ZeroLag W%R*/ ; GraphXSpace = 3; R =

Re: [amibroker] Jurik Moving Average JMA

2006-12-07 Thread Tom Tom
Hi, Maybe we can go on this thread on amibroker-ts and merge it with the thread RE: [amibroker-ts] Re: Moving Average... one more again : ). It is an attempt to list different MA know here and there feature/quality/etc... For now we got : - FIR : weighted MA (classic original MA with all

RE: [amibroker] Jurik Moving Average JMA

2006-12-07 Thread Herman
function HullMaFunction( P, Periods, Delay ) { X = 2 * WMA(P,round(Periods/2)) - WMA(P,Periods); HullMA = WMA(X,round(sqrt(Periods))); HullMA = Ref(HullMA,-Delay); return HullMa; } PlotPriceField = ParamToggle(PriceField,HIDE|SHOW,1); P =

Re: [amibroker] Jurik Moving Average JMA

2006-12-07 Thread M. Smith
Herman I get an error when I put this inta amibroker. Anyone else have a problem. get back. - Original Message - From: Herman To: amibroker@yahoogroups.com Sent: Thursday, December 07, 2006 11:25 AM Subject: RE: [amibroker] Jurik Moving Average JMA function

[amibroker] SC Dec 2006 Fundamentals

2006-12-07 Thread me_rayme
See the afl below. Maybe someone with more experience could complete this with buy/sell signals and the other requirements defined. Did an Explore and found 6 stocks from the Russel 2000 on 12-05-06 that met this requirement. CQB 12/5/2006 LEV12/4/2006

Re: [amibroker] Help with Indicator/Exploration formula

2006-12-07 Thread Graham
Assuming you actually get trade signals, complete the plotshapes functions, there needs to be input as to where to locate the shapes See help for what to use in the plotshapes functions -- Cheers Graham AB-Write Professional AFL Writing Service Yes, I write AFL code to your requirements

[amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread Fred
Non AB related pearls are to be found elsewhere ... Nonsensical or otherwise, politcal commentary too ... --- In amibroker@yahoogroups.com, brpnw1 [EMAIL PROTECTED] wrote: You guys remind me of the Bush Administration in so many ways. ~B --- In amibroker@yahoogroups.com,

[amibroker] test ignore

2006-12-07 Thread J. Biran
Joseph Biran

[amibroker] Re: Notepad in AmiBroker 4.81

2006-12-07 Thread trb0428
--- In amibroker@yahoogroups.com, Ulag Thyagarajan [EMAIL PROTECTED] wrote: when I add some notes for a particular symbol it apears in other symbols as well as if it is a global entry. I never used to face this in earlier versions. Can some one please throw some light on how to restrict

[amibroker] Access to fundamental data using QuotesPlus

2006-12-07 Thread trb0428
Hi - Does anyone know if there is a way to access the Analysts Recommendations field from within AB when using Quotes Plus as my data source? I can access other fields using the GetExtraData() AFL function but Analysts Recommendation does not appear on the list. Any Ideas? Thanks, Tom

Re: [amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread Yuki Taga
Hi Fred, The point is well known. And *this* overzealousness is *precisely* why Dimitris left this list. Yes, OT, and blah, blah, blah. But look at the post that started the mini-war here, Fred. (at least it led to defense, counterpoint, and *more* messages, not fewer) It was *yours*. Why did

Re: [amibroker] Re: Notepad in AmiBroker 4.81

2006-12-07 Thread Graham
can you provide the line of code you are using to insert the notes to notepad for example this will only place text into NoteSet(, Jun 15, 2004: AMD will deliver its first multi-core processors next year); this will place into all symbols NoteSet(, Jun 15, 2004: AMD will deliver its

[amibroker] Re: Help with Indicator/Exploration formula

2006-12-07 Thread chomper777
Hi Dick, Check your email I've just sent you my version of the zerolag indicator that have the Buy/Sell arrows you saw on my site. Thanks Mike www.amibrokerfan.com --- In amibroker@yahoogroups.com, areehoi [EMAIL PROTECTED] wrote: I'm trying to get this indicator/exploration to show

[amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread Fred
To the best of my knowledge there is no monitor here outside of TJ any more ... If you think his time is better spent reviewing every post to see which ones are related to AB as opposed to which ones aren't then so be it ... I only try to point folks who seem to go on and on with threads that

Re: [amibroker] Access to fundamental data using QuotesPlus

2006-12-07 Thread Joe Landry
The GetExtraData functions are supported by the QP plug in, and the only way I see to do it is to extend the QP plug in, not likely to happen unless done by someone in the AB user community. HTH Joe - Original Message - From: trb0428 To: amibroker@yahoogroups.com Sent:

Re: [amibroker] Jurik Moving Average JMA (working for me)

2006-12-07 Thread Bruce Hawkins
I just copied it, pasted it into my price formula, work fine for me. Herman I get an error when I put this inta amibroker. Anyone else have a problem. get back. - Original Message - *From:* Herman mailto:[EMAIL PROTECTED] *To:* amibroker@yahoogroups.com

Re: [amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread Yuki Taga
Hi Fred, Of course I don't think TJ should be reviewing every message, and I don't think I even hinted at that. But this used to be more like a *community* years ago. With actual *dialog*. Not all of that has been lost, but there sure is a lot more roughness to the tone these days. Even TJ

Re: [amibroker] Access to fundamental data using QuotesPlus

2006-12-07 Thread Chris DePuy
Tom, 1) Perhaps OneYearTargetPrice will suffice? I've heard some folks using quant/tech strategies use this as a potential resistance level. http://www.amibroker.com/devlog/wp-content/uploads/2006/06/ReadMe4810.html. You could try: OneYearTargetPrice = GetFnData(OneYearTargetPrice);

[amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread Fred
... And maybe just not posting OT stuff would be an improvement ... Enough ... since this is now Off Off Topic ... Let's move on ... --- In amibroker@yahoogroups.com, Yuki Taga [EMAIL PROTECTED] wrote: Hi Fred, Of course I don't think TJ should be reviewing every message, and I don't think

Re: [amibroker] Jurik Moving Average JMA (working for me)

2006-12-07 Thread Rakesh Sahgal
I am aware that this forum is dedicated to solving problems realted to usage of AB and not discussing trading methods or philosophies. Instead of seeking out some magic moving average formula, I will humbly submit that maybe it will be more instructive if this thread moves to the AB-TS forum and

[amibroker] (OT) Re: Random Walk - step 2 - : Predictable ?

2006-12-07 Thread yukitaga
--- In amibroker@yahoogroups.com, Fred [EMAIL PROTECTED] wrote: ... And maybe just not posting OT stuff would be an improvement ... Enough ... since this is now Off Off Topic ... Let's move on ... Fine with me, but I can't resist one follow-up question: I know you have strong opinions about

[amibroker] Re: Random Walk - step 2 - : Predicitable ?

2006-12-07 Thread Tom Tom
Hi, Maybe it is time to come back with the main subject of the topic : RW. I just posted a AFL script so you can plot Price VS Random walk in the ame scale and fix the random number for investigation : http://www.amibroker.com/library/detail.php?id=777 For intraday i think it is good to filter

[amibroker] Re: Random Walk - step 2 - : Predicitable ?

2006-12-07 Thread Tom Tom
sorry i forgot the picture ; ) Wich is the stock and wich is the random walk ? (tips: look at the title of the chart) _ Windows Live Spaces : créez votre Space à votre image ! http://www.windowslivespaces.fr/ Random Walk.png

Re: [amibroker] Downloaded 1 year IB backfill

2006-12-07 Thread cstrader
Seems very useful to me at least for getting smaller blocks of missing data (I was using 1m bars). I didn't find any throttling in the amount of data that I downloaded. Thanks for pointing this out -- I hadn't realized the data went back that far. chuck - Original Message - From:

Re: [amibroker] Re: Random Walk - step 2 - : Predicitable ?

2006-12-07 Thread cstrader
Mich. I replied to this interesting post on the amibroker-ts group. chuck - Original Message - From: Tom Tom [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Thursday, December 07, 2006 9:53 PM Subject: [amibroker] Re: Random Walk - step 2 - : Predicitable ? Hi, Maybe it is

[amibroker] Simplest method of creating Groups based on Symbol lists

2006-12-07 Thread Homar Simpson
Wanting to setup Groups based on sp 500 , Dow, etc. Read through the docs, but can't find a built in way of doing this simply. Can I assume you have to write some AFL code that reads a list? If so, I'm sure it's been done, and would appreciate it.

Re: [amibroker] Jurik Moving Average JMA (working for me)

2006-12-07 Thread M. Smith
Bruce, will you please type exactly what you pasted? Maybe I have some part wrong somehow. Only what you pasted. - Original Message - From: Bruce Hawkins To: amibroker@yahoogroups.com Sent: Thursday, December 07, 2006 1:02 PM Subject: Re: [amibroker] Jurik Moving Average JMA

[amibroker-ts] Re: [AmiBroker-at] New AT Project

2006-12-07 Thread cstrader
I'm going to crosspost this, because it was originallyposted in the AT group. But I'm more interested n the Trading System (TS) aspect. I can't see that this system is at all successful. It seems to trade every couple of bars on the 1m ER2. I also don't see the logic of it. If we are