Re: [amibroker-ts] Where to find AmiBroker add-on Intelligent Optimizer

2007-07-24 Thread Keith McCombs
http://finance.groups.yahoo.com/group/amibroker/files/ lee_chang168 wrote: Hi, I am looking for AmiBroker add-on Intelligent Optimizer. It was mentioned in previous post that it can be downloaded from Files but it is no longer there. Any help will be appreciated. [Non-text portions

[amibroker-ts] Initialize Variables

2007-07-24 Thread pointsmax
Hello, I have the following problem with a calculated variable. In AFL I have to initialize a variable at the beginn of the programm. But this resets also my variable after each trade to the initialzed value. I can´t calculate a floating value. For an example (I need not really this, but

[amibroker] Re: Median and its Frequency

2007-07-24 Thread vlanschot
GP, Thx for this. Interesting to see how you've created the second loop, which I haven't seen before, but then again I'm not a programmer. Am I correct in interpreting that it counts down both j and cnt until either or both hit their limit, i.e. j = 0 cnt 0 ? Is there a limit as to how many

[amibroker] Re: Multiple Stock charts...

2007-07-24 Thread gpzany13
Thanks Herman, hadn't noticed that part of the website before... looks like lots of great info... cheers, George.

Re: [AmiBroker] Re: Data Downloader's

2007-07-24 Thread Ton Sieverding
See my email ... Ton. - Original Message - From: Don Lindberg To: amibroker@yahoogroups.com Sent: Monday, July 23, 2007 8:56 PM Subject: RE: [AmiBroker] Re: Data Downloader's Ton, I checked out Stock Browser. On surface looks good, but I can't reed the Help docs

Re: [amibroker] Re: Data Downloaders

2007-07-24 Thread Ton Sieverding
Also see my email ... Ton. - Original Message - From: ken.thorland To: amibroker@yahoogroups.com Sent: Tuesday, July 24, 2007 7:59 AM Subject: [amibroker] Re: Data Downloaders Hi Ton, thanks for the tip on Stockbrowser, I'm an mL user, but always interested in

[amibroker] Re: Median and its Frequency

2007-07-24 Thread gp_sydney
That's correct. Both conditions have to be true for the loop to continue, so either reaching its limit will terminate the loop. As for there being a limit on the number of conditions, I'm not sure. I don't know that any particular limit is officially defined, but the AFL interpreter may have some

Re: [amibroker] Re: AB crashes when i use AddToComposite with name() and atcFlagEnableInBacktest

2007-07-24 Thread Thomas Zmuck
Hello, i was able to solve it by restoring my futures database from a backup. So it seems that anything was wrong in the database. Regards Thomas 2007/7/23, vlanschot [EMAIL PROTECTED]: Thomas, Yes, both in atcflagenableinexplore / -backtest. However, for me the latter is more serious

Re: [amibroker] Range Bars - was: Re: AmiBroker 4.97.0 BETA released

2007-07-24 Thread dstricek1209
Hi thank you Tomasz for implementing range bars.Since they are in the beta status please allow me some remarks: Range bars are meant to be constant range bars. In order to make it robust one has to set the range, and that range has to be predicted from the future and we know that this

[amibroker] Re: Rounding up the BuyPrice to the nearest 0.25 point

2007-07-24 Thread sslack88
Thanks Tomasz, the Ceil function worked perfect! Best, Steve --- In amibroker@yahoogroups.com, Tomasz Janeczko [EMAIL PROTECTED] wrote: Hello, Just for the reference, as far as integers are considered: there is nicer method (single function call) to round UP to nearest integer: ceil(

[amibroker] Re: Data Downloaders

2007-07-24 Thread asawindaeng
I also downloaded it but have yet to install etc, but thanks for the heads up. I will need documentation in English, too, though. Is there somewhere I can get it? Cheers, T --- In amibroker@yahoogroups.com, Ton Sieverding [EMAIL PROTECTED] wrote: Also see my email ... Ton. -

[amibroker] Selector Line Overlay

2007-07-24 Thread Don Lindberg
Is there a way to always have the Selector line show on top of all other plots? I have several charts that have plotted colored backgrounds, and the Selector always appears behind these backgrounds. I realize you can control plot positions by the order of the code, but how do you control

Re: [amibroker] Selector Line Overlay

2007-07-24 Thread Dennis Brown
Don, Since you know the position of the selected bar, you could always add an AFL plot statement to display a vertical line on top of your background. Dennis On Jul 24, 2007, at 1:14 PM, Don Lindberg wrote: Is there a way to always have the Selector line show on top of all other plots?

Re: [amibroker] Re: Pseudo-random number generator

2007-07-24 Thread Tomasz Janeczko (groups)
Hello, The reason is that MT19937 implementation is many times shorter and time tested/proven/used worldwide in many places. SFMT was introduced recently and from what I read they collect feedback about it, so I guess it is more in in-development phase. The main advantage of SFMT is increased

Re: [amibroker] Range bars, was: Re: AmiBroker 4.97.0 BETA released

2007-07-24 Thread Tomasz Janeczko \(groups\)
Hello, It was told twice already: if you want 100% correct range bars (perfectly matching your guru designer) USE TICK BASE TIME INTERVAL. This is the only way to make them 100% correct and this is the case for every software (read the documentation of other softwares and they will tell you

Re: [amibroker] Selector Line Overlay

2007-07-24 Thread Ara Kaloustian
Changing the sequence of plots will do it. Don't think there is a specific function for it. - Original Message - From: Don Lindberg [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Tuesday, July 24, 2007 10:14 AM Subject: [amibroker] Selector Line Overlay Is there a way to

Re: [amibroker] HOW TO USE THE FEEDBACK CENTER

2007-07-24 Thread Keith McCombs
Ronald -- Try here: http://www.amibroker.com/feedback/ And read this: *Welcome to AmiBroker Feedback Center!* *This is the area to enter feature requests / suggestions and bug reports.* Please note that if you have a question or problem please contact us rather using regular support channel

RE: [amibroker] Selector Line Overlay

2007-07-24 Thread Don Lindberg
True, but then I would have to do a new plot statement every time I wanted to move the selector to a different bar. Doesn't sound like a very efficient way to work. Thanks anyway. Don _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Brown Sent:

[amibroker] Re: Plotting 5, Min,15 Min, 1 Hour Indicators in 1 Min Charts

2007-07-24 Thread dralexchambers
This is for 15 minute - drop this AFL onto your 1 minute chart. Change in15Minute to in5Minute for 5min BBands. Also check the Help documentation for Multiple TimeFrames Hope this helps, Alex = TimeFrameSet(in15Minute); BTop =

[amibroker] Re: Plotting 5, Min,15 Min, 1 Hour Indicators in 1 Min Charts

2007-07-24 Thread dralexchambers
This is for 15 minute - drop this AFL onto your 1 minute chart. Change in15Minute to in5Minute for 5min BBands. It looks as though it correlates. Also check the Help documentation for Multiple TimeFrames Hope this helps, Alex =

[amibroker] Re: QuoteTracker setup

2007-07-24 Thread Barry Scarborough
Well Duh! Nope. I missed that little button. Makes a world of difference thought. Thanks. That saves the hair I have left. Barry --- In amibroker@yahoogroups.com, Henrik Rasmussen [EMAIL PROTECTED] wrote: Did you turn on the server in QT? Rik Rasmussen On 7/24/07, Barry Scarborough

Re: [amibroker] Selector Line Overlay

2007-07-24 Thread Dennis Brown
Don, When I say you know the position, I mean AFL knows it -- hint, hint. Dennis On Jul 24, 2007, at 7:00 PM, Don Lindberg wrote: True, but then I would have to do a new plot statement every time I wanted to move the selector to a different bar. Doesn’t sound like a very efficient way to

[amibroker] Re: Plotting 5, Min,15 Min, 1 Hour Indicators in 1 Min Charts

2007-07-24 Thread coolblue_fx
Hi Alex Thanks. The afl works fine. Regards CB --- In amibroker@yahoogroups.com, dralexchambers [EMAIL PROTECTED] wrote: This is for 15 minute - drop this AFL onto your 1 minute chart. Change in15Minute to in5Minute for 5min BBands. It looks as though it correlates. Also check the