Hello, Either click on price pane and choose "Edit formula" and add your coding at the top. or add the price chart to your custom indicator (opposite way) as...
Hi, I need someone else's eyes to look at this to tell me where I'm using an array in the while loops (or at least in the first loop). They should all be...
Hello, All flow control statements (if, else, while ) WORK CORRECT. But they need SINGLE numeric value. Therefore if you use arrays you must iterate through...
Hello to all members of this grooup I am in search of the holy grail, ie, a pattern recognition software. I am hoping to find a software package that will scan...
Hi, I am having so much trouble just trying to do something simple: calculate the weekly, monthly, 3, 6, and 12 months returns and print them out. The quick...
... Hash: SHA1 Joe, there is a dll in the 3rd party (www.amibroker.net/3rdparty) for date manipulations (deDateTime.zip). Then you can use ValueWhen() to get...
See datenum() and Close the elements corrospondent to each other. Ie. arrDN = datenum(); arrC = Close; arrDN[BarCount - 1] is the datenum of the last...
Hi, There is a Fund Screener formula in the Amibroker AFL formula Library. Has anyone gotten it to work properly? It looks like something I could really use...
Nigel, Just one question. I don't understand the flag functions. How would I use deFlagDayOfWeek(x)? What does deFlagDayOfWeek(1) do? Joe ... for date ... ...
I need some more advice. The attached system has some errors. It gives 3 subscript out of range errors that I haven't been able to figure out yet and...
Hi, Does anyone know what are the function of the two arrows (in black) shown on
price chart when you double click it? Thank you for your help. Best regards, ...
Hi Graham, Thank you very much for your help. By the way, do you know if Amibroker is
able to show the statistics (advance/decline%, standard deviation...)...
... Hash: SHA1 Joe, it's not my DLL, what do the Docs say? Questions about deDateTime are better referred to the author (Daniel Ervi??? I think). - -- Nigel ...
The space between the arrows is the area you can expand from the view/Zoom/Range menu ... From: RLU94305 To: amibroker-ts@yahoogroups.com Sent: Saturday, May...
Well, the subscript out-of-range is fixed, but I can't find the Array in the FOR or IF statements. Can anyone else see it? Thanks, Joe /////////////// //...
Joe Assign a number to where you see barcount and you will get it to work. So your array problem is the term barcount. You must develop this before you use it....
Joe, DeFlagDayOfWeek(x) 0 to 6, where 0=Sunday,1=Monday....etc.. Anthony ... From: jbell5931 To: amibroker-ts@yahoogroups.com Sent: Saturday, May 31, 2003...
Joe, I have modified something, just look at it if it could do /////////////// // Braided Moving Averages // Rev 8 // Joe Jungbluth /////////////// //...
Thanks Steve and Franco, Below is the latest version. I didn't initialize BarCount, since I think it is automatically initialized by AB. The indices Franco...
Joe, one last thing (but I think you already saw it). I made a mistake here if (trade_ON) { Sell[i] = C[i] < w_maL[i] OR C[i] < Long_low; Cover[i] = C[i] >...
No, I didn't see it, thanks. That might explain why my exits were so inefficient. I did find another index somewhere that I changed, but I don't remember ...