Hi, Does anyone know how to plot the custom indicator on price chart? When I choose "insert the indicator", it always shows up on sub- window. Thank you for...
430
Marek Chlopek
emcek
May 25, 2003 7:18 pm
... Add to you code: Plot(C, "Close", colorBlack, styleLine); see Plot() in HELP -- Marek Chlopek...
431
Tomasz Janeczko
amibroker
May 25, 2003 8:21 pm
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...
432
kk12338
May 28, 2003 7:39 am
HI, Has anyone program Acme system by Conway in AB ? Thanks KK...
433
larivier
May 28, 2003 3:18 pm
I'm also interested by dynaorder, any news anyone? thanks Michel. ... s bug ... s bug ... home?...
434
joe_volleyguy
May 30, 2003 2:17 am
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...
435
Tomasz Janeczko
amibroker
May 30, 2003 7:46 am
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...
436
jackr1250
May 30, 2003 12:29 pm
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...
437
jbell5931
May 31, 2003 3:32 am
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...
438
Nigel Rowe
roefromfish
May 31, 2003 4:29 am
... 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...
439
uenal.mutlu@...
anty3de
May 31, 2003 11:47 am
See datenum() and Close the elements corrospondent to each other. Ie. arrDN = datenum(); arrC = Close; arrDN[BarCount - 1] is the datenum of the last...
440
jbell5931
May 31, 2003 1:15 pm
That's what I needed. Thanks so much. ... for date ... print ... let ... language ... price...
441
jbell5931
May 31, 2003 1:17 pm
I think the date dll will work, but I'll look into this way as well. Thanks. ... print ... let ... language ... price...
442
jbell5931
May 31, 2003 1:23 pm
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...
443
jbell5931
May 31, 2003 2:17 pm
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 ... ...
444
joe_volleyguy
May 31, 2003 10:05 pm
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...
445
RLU94305
robertlu007
Jun 1, 2003 3:21 am
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, ...
446
Graham
kavemanperth
Jun 1, 2003 3:31 am
They show a range, If you hold down the <ctrl><sgft> keys and click on the green + button it zooms to the range between the lines. Cheers, Graham ...
447
RLU94305
robertlu007
Jun 1, 2003 3:46 am
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...)...
448
Nigel Rowe
roefromfish
Jun 1, 2003 6:57 am
... 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 ...
449
Ara Kaloustian
akaloustian
Jun 1, 2003 7:11 am
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...
450
Tomasz Janeczko
amibroker
Jun 1, 2003 9:27 am
Hello, Everything is explained in: Tutorial: Beginners' charting guide part of the users guide. Tutorial: Beginners' charting guide (excerpt) Introduction ...
451
Tomasz Janeczko
amibroker
Jun 1, 2003 9:36 am
Hello, Again, please read the User's Guide: It can produce ANY statistics from selected range usign BeginValue and EndValue functions: See this: ...
452
Franco Gornati
fgornati
Jun 1, 2003 10:57 am
Joe, (at a glance, i didn't check) change for( i = 0; i < BarCount; i++ ) in for( i = 2; i < BarCount; i++ ) Franco...
453
joe_volleyguy
Jun 1, 2003 12:12 pm
Duh, duh, duh... Thanks Franco! :) Joe ... It...
454
joe_volleyguy
Jun 1, 2003 1:13 pm
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 /////////////// //...
455
Steve Wiser
slwiser
Jun 1, 2003 1:50 pm
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....
456
Anthony Faragasso
ajf1111us2000
Jun 1, 2003 3:16 pm
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...
457
Franco Gornati
fgornati
Jun 1, 2003 4:37 pm
Joe, I have modified something, just look at it if it could do /////////////// // Braided Moving Averages // Rev 8 // Joe Jungbluth /////////////// //...
458
joe_volleyguy
Jun 2, 2003 1:33 am
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...