[amibroker] Re: How to implement a simple risk management ? Tomasz please read it

2007-07-11 Thread Trinolix Derry
Hello, i have got no reply so i am wondering how you manage the trade risk ? The real risk always depends on current contracts, current equity and stop distance, therefore there is no easy way just as placing any trailing stop. Can't anyone help ? 2007/7/11, Trinolix Derry <[EMAIL PROTECTED]>

[amibroker] redundant signals

2007-07-11 Thread Edward Pottasch
hi, Tomasz provided new functionality to Amibroker in the latest beta: making use of redundant signals. It seems to work very good. Below I show example code how it can be used. regards, Ed If you leave the code like this: //SetBacktestMode( backtestRegularRaw ); //SetBacktestMode( backtes

Re: [amibroker] MB trading + quotetracker + Amibroker

2007-07-11 Thread Ara Kaloustian
I use it sometime, but have not scrutinized any possible delays. at first glance it seems OK. - Original Message - From: "ken.thorland" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 11, 2007 1:46 PM Subject: [amibroker] MB trading + quotetracker + Amibroker > Marcin tells me I can ac

[amibroker] Fw: redundant signals

2007-07-11 Thread Edward Pottasch
try again - Original Message - From: Edward Pottasch To: amibroker@yahoogroups.com Sent: Wednesday, July 11, 2007 8:28 PM Subject: redundant signals hi, Tomasz provided new functionality to Amibroker in the latest beta: making use of redundant signals. It seems to work very go

Re: [amibroker] Re: signal type

2007-07-11 Thread Edward Pottasch
hi Johan, no I just mean that different signals have their own unique ranking and I want to be able to seperate them. Basicly I am running more than 1 system inside 1 system. You could run them seperately but I want to run them inside 1 system. If 1 signal is for instance defined bu MACD and th

[amibroker] MB trading + quotetracker + Amibroker

2007-07-11 Thread ken.thorland
Marcin tells me I can access MB through using qt as a go between application to AB. It seems like that might not be very efficient, is anyone using this setup and if so, how is it working? Thanks, Ken

[amibroker] Re: Get daily data to start at 14:00

2007-07-11 Thread dralexchambers
Thanks - solved. Alex

[amibroker] Re: looking for data for international exchanges

2007-07-11 Thread t_ohrt
Hi, If you use the symbol look-up on Yahoo there are 5522 symbols with the suffix ".L". There is a list of symbols for the UK market from 2004 in the files section of the user group http://finance.groups.yahoo.com/group/amibroker/files/UK%20market/ regards, T.O. --- In amibroker@yahoogroups.

Re: [amibroker] Get daily data to start at 14:00

2007-07-11 Thread Ara Kaloustian
Setting are on your database parameters. File/Database Settings/Intraday Settings - Original Message - From: "dralexchambers" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 11, 2007 9:03 AM Subject: [amibroker] Get daily data to start at 14:00 >I have 1min intraday data. Whenever I sel

[amibroker] looking for data for international exchanges

2007-07-11 Thread flowridej
Where is the best place to get data for non US exchanges (such as Tokyo, London, Toronto, etc.)? I am initially looking for end of data data for stocks. It looks like I can get London data from Yahoo quotes using AmiQuote if I had a list of all the symbols. Does anyone have a complete list t

RE: [amibroker] signal type

2007-07-11 Thread dingo
I would think so.. prolly not seeing why it can't be done... d _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Edward Pottasch Sent: Wednesday, July 11, 2007 2:20 PM To: amibroker@yahoogroups.com Subject: Re: [amibroker] signal type Dingo, you mean a soluti

[amibroker] Re: signal type

2007-07-11 Thread johsun
Ed, the Buy array is boolean TRUE/FALSE but it doesn't have to be 1/0. Any positive number will be evaluated as TRUE. You can weight your signals, signalType1 = 1 * ; signalType2 = 2 * ; signalType3 = 4 * ; Buy = signalType1 + signalType2 + signalType3; Now Buy will be true if one

[amibroker] Low Array

2007-07-11 Thread jl2012_30
I'm totally new to Amibroker and am very lost. I'm trying to write a code that implements a stop loss if the stock falls $1 below my buy price. I tried the following code but it does not work (I don't get stop out at all). --- Sell = 0; priceatbuy = 0; for( i = 0; i < Bar

Re: [amibroker] signal type

2007-07-11 Thread Edward Pottasch
Dingo, you mean a solution I have shown in my prior Email? rgds, Ed - Original Message - From: dingo To: amibroker@yahoogroups.com Sent: Wednesday, July 11, 2007 7:37 PM Subject: RE: [amibroker] signal type You can do this by working up a position score calculation th

Re: [amibroker] signal type

2007-07-11 Thread Edward Pottasch
hi Ara, indeed I did try something similar like: PositionScore = IIf(Ref(sc1 OR bc1,-1),Ref(dmap,-1),IIf(Ref(sc2 OR bc2,-1),1/Ref(dmat,-1),Null); you can combine the signal with the proper ranking but once the backtester goes through all bars during the backtest it will find for instance 40 si

RE: [amibroker] signal type

2007-07-11 Thread dingo
You can do this by working up a position score calculation that expresses your priorities - It'll just require some thought. If you list all of the conditions perhaps some savant will have an inspiration.. d _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Edwa

RE: [amibroker] Re: Slide Show uploaded to amibroker-beta

2007-07-11 Thread dingo
Pretty sloppy programming, eh??!! I'll do that soon... d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Don Lindberg > Sent: Wednesday, July 11, 2007 12:15 PM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: Slide Show uploaded

Re: [amibroker] signal type

2007-07-11 Thread Ara Kaloustian
Ed, I have not used the CBI, but I beleive there is only one ranking parameter - PositionScore. How about separating the trending from choppy signals before processing. Example: You already know which signals were derived under what conditions... so how about doing this: if (sigtype ==1) { Po

Re: [amibroker] signal type

2007-07-11 Thread Edward Pottasch
hi Ara, what I like to do is use different type of signals in 1 system. I want to combine signals that are sensitive for trending markets (type 1) and those that are sensitive for choppy markets (type 2). When I rank these signals Amibroker will rank them as one bunch of signals. Say I have 20

[amibroker] Re: Slide Show uploaded to amibroker-beta

2007-07-11 Thread Don Lindberg
Dingo, Thanks a lot ! The slideshow is great, however there is something you could fix. After the slideshow runs it leaves behind the .png and .txt files it created in the AmiBroker directory. Is there anyway to adjust the script to clean up after itself. I am not a programmer so don't know if

[amibroker] Get daily data to start at 14:00

2007-07-11 Thread dralexchambers
I have 1min intraday data. Whenever I select "Daily" display, the daily bars start at 00:00. How do I get the bars to start at 14:00 each day? Thanks

Re: [amibroker] signal type

2007-07-11 Thread Ara Kaloustian
Ed, I am not sure what the issue is. A signal type, the way I would define, would be based on its criteria. For example: BullishLongPeriod = Criteria(LongPeriod); BullishShortPeriod = Criteria(ShortPeriod); - Original Message - From: Edward Pottasch To: amibroker@yahoogroups.c

Re: [amibroker] Any one using MB trading?

2007-07-11 Thread Ara Kaloustian
Sorry... meant to say ... There is NO interface for MB with amibroker - Original Message - From: "Ara Kaloustian" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 10, 2007 8:14 PM Subject: Re: [amibroker] Any one using MB trading? > There is interface for MB with amibroker > > - Origin

RE: [amibroker] write code for DLL plugin

2007-07-11 Thread Paul Ho
I'll be happy to help, contact me privately. /Paul. _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of chomper777 Sent: Wednesday, 11 July 2007 11:58 PM To: amibroker@yahoogroups.com Subject: [amibroker] write code for DLL plugin Hi, I have a finished afl script

RE: [amibroker] Re: Amibroker or Dingo slide show

2007-07-11 Thread dingo
I loaded my script to do slideshows at http://finance.groups.yahoo.com/group/amibroker-beta/files/ d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of stvd2002 > Sent: Tuesday, July 10, 2007 12:27 PM > To: amibroker@yahoogroups.com > Subject

[amibroker] write code for DLL plugin

2007-07-11 Thread chomper777
Hi, I have a finished afl script that I like to make into a DLL plugin, I was going to ask Graham but on his website he said he does not do DLL plugin. Anyone else that can provide this service? Thanks in advance Mike

Re: [amibroker] Any one using MB trading?

2007-07-11 Thread Ara Kaloustian
There is interface for MB with amibroker - Original Message - From: "ken.thorland" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 10, 2007 6:36 PM Subject: [amibroker] Any one using MB trading? >I am interested in using them as a broker and I know their were > inquiries a year ago about b

Re: [amibroker] Getting all MDI tab charts to sync

2007-07-11 Thread Tomasz Janeczko
Not using "selector line" but possible using range markers that are global to all charts. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "dralexchambers" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 11, 2007 1:20 PM Subject: [amibroker] Getting all MDI tab charts

[amibroker] Getting all MDI tab charts to sync

2007-07-11 Thread dralexchambers
Hi - Is there a way to get all charts I have on my tabs to sync to the same date/time selected on one tab, eg: Tab 1: Select 05/MAY/2007 Tabs 2,3 and 4 then move to 05/May/2007 Thanks.

[amibroker] Re: time shift for different exchanges in the same database

2007-07-11 Thread loveyourenemynow
Thanks Graham, I tried that but whenever I define the intraday settings for different groups , the time shift is changed for all the database not only the group. I want to open and close of the RTH session so, unless I can fix different shift for different groups, the exchange time option is not

[amibroker] signal type

2007-07-11 Thread Edward Pottasch
hi as far as I know one can not define a signal type in Amibroker, am I right? What I mean is that I am working with systems that have multiple signal types: for instance: signalType1 = ; signalType2 =; signalType3 = ; Buy = signalType1 OR signlType2 OR signalType3; I would like

[amibroker] New country Flags Wallpapers !!!

2007-07-11 Thread siva kumar
Hi Friends Click these Flags to see the fullview If you can't see that GO TO www.wallpapers2day.info Choose your FLAG & Spirit up your country 3d FLAGS Extra-Ordinary FLAGS

[amibroker] Re: Amibroker or Dingo slide show

2007-07-11 Thread stvd2002
Definitely it would be a great time saver and very useful feature. I hope it will be implemented in the near future. Kind Regards stvd2002 --- In amibroker@yahoogroups.com, "Ronald Davis" <[EMAIL PROTECTED]> wrote: > > I just checked the feedback center, and I didn't see any requests to add