[amibroker] Re: Buy at Open. Need help using intraday data.

2007-09-27 Thread t_ohrt
ting.com > > > > On 28/09/2007, t_ohrt <[EMAIL PROTECTED]> wrote: > > If your first bar is at 09:04 > > > > IIf(TimeNum()<=090400,Buy,0); > > > > it works for me. > > > > T.O. > > > > --- In amibroker@yahoogroups.com, &qu

[amibroker] Re: Buy at Open. Need help using intraday data.

2007-09-27 Thread t_ohrt
If your first bar is at 09:04 IIf(TimeNum()<=090400,Buy,0); it works for me. T.O. --- In amibroker@yahoogroups.com, "Amohedas" <[EMAIL PROTECTED]> wrote: > > Hi, > > I am trying to create a system that either Buys or Shorts at the open > of each trading day. > > The data that I'm using is

[amibroker] Re: esignal data only compatibility

2007-09-14 Thread t_ohrt
> To: [EMAIL PROTECTED] <mailto:amibroker%40yahoogroups.com> ps.com > > Subject: Re: [amibroker] Re: esignal data only compatibility > > > > > > > > Can anyone who has paired eSignal MarketCenter with AB i.e. sent the > live > > feed being rece

[amibroker] Re: Entry code

2007-09-11 Thread t_ohrt
hich will > always be the current one when LongEntryCond is True. Therefore the > second part of the statement will always be False. > > Try setting the third parameter of ValueWhen to two to skip the > current True condition of LongEntryCond. > > Regards, > GP >

[amibroker] Entry code

2007-09-09 Thread t_ohrt
Hi, I want to limit entries to once a day within a daytrade system. A long position should be taken only at the first occurrence of "LongEntryCond". The code below results in no entries at all. What´s wrong with it? Buy= LongEntryCond AND ValueWhen(LongEntryCond, DateNum())

[amibroker] Re: esignal data only compatibility

2007-08-28 Thread t_ohrt
ere: http://www.amibroker.com/bin/eSignalDMClient.exe > > Best regards, > Tomasz Janeczko > amibroker.com > - Original Message - > From: "t_ohrt" <[EMAIL PROTECTED]> > To: > Sent: Tuesday, August 28, 2007 5:21 PM > Subject: [amibroker] Re: esignal data only co

[amibroker] Re: esignal data only compatibility

2007-08-28 Thread t_ohrt
Can´t get the connection to work properly. Amibroker asks for eSignal Data Manager to be installed. Plug-in tries to connect but fails. Any clue to what´s wrong? T.O. --- In amibroker@yahoogroups.com, "lagramada7" <[EMAIL PROTECTED]> wrote: > > yes, you start a new database, if you don't have

[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.

[amibroker] Re: Using AmiBroker in Sweden...

2007-07-07 Thread t_ohrt
hi You use Amiquote to get EOD data from Yahoo at no cost. The quotes from Stockholm have .ST as suffix. So ABB Ltd is ABB.ST at Yahoo. You have to make your own ticker list in Amiquote and then just open the list and download quotes for the time period you need. Be sure to have Amibroker open

[amibroker] Re: Equity as an indicator - some questions

2007-07-04 Thread t_ohrt
Hi, this is an idea, don´t know if it works... BuyProfit=IIf(Sell,(SellPrice-ValueWhen(Buy,BuyPrice)),0); ShortProfit=IIf(Cover,(ValueWhen(Short,ShortPrice)-CoverPrice),0); Profit=Cum(BuyProfit+ShortProfit); Plot( Profit, "Profit", colorBlack, 65537); Regards T.O. --- In amibroker@yahoogroups.c

[amibroker] Re: Cut/Round Num

2007-06-19 Thread t_ohrt
Try y=prec(x, 2); T.O. --- In amibroker@yahoogroups.com, "sono_080" <[EMAIL PROTECTED]> wrote: > > Hello, > > i calculate some values on FGBL > > Now the FGBL format ist 110,25 > My calculatet value is 110,255 ... how can i cut the last 5? > > When i transform it to a string und vice versa -

[amibroker] Re: PlotShapes - avoiding multiple arrows

2007-06-16 Thread t_ohrt
Hi Bernard, try Equity(1,0); as the last line before your plot statements regards, T.O: --- In amibroker@yahoogroups.com, "bernardedmond01" <[EMAIL PROTECTED]> wrote: > > Hi all > Anyone help on this? I think someone else (Bobby) had a similar query > on how to avoid excessive arrows? > C

[amibroker] Re: Plot "where" ...

2007-06-16 Thread t_ohrt
To plot Candles on top of the Donchian try; pds=Param("Donchian",20,1,60,1); DonchianUpper =HHV(Ref(H,-1),pds); DonchianLower = LLV(Ref(L,-1),pds); DonchianMiddle = (DonchianUpper+DonchianLower)/2; PlotOHLC( Open, High, Low, Close, "", colorBlack,styleCandle ) ; Plot(DonchianUpper,"DU",colorBlue,s

[amibroker] Re: Plot "where" ...

2007-06-16 Thread t_ohrt
Try this pds=Param("Donchian",20,1,60,1); DonchianUpper =HHV(Ref(H,-1),pds); DonchianLower = LLV(Ref(L,-1),pds); DonchianMiddle = (DonchianUpper+DonchianLower)/2; Plot(DonchianUpper,"DU",colorBlue,styleLine); Plot(DonchianMiddle,"DM",colorGreen,styleLine); Plot(DonchianLower,"DL",colorRed,styleLin

[amibroker] Re: Channel Trading

2007-06-05 Thread t_ohrt
Ray, can you explain in words how the filters are supposed to work? T.O. --- In amibroker@yahoogroups.com, "me_rayme" <[EMAIL PROTECTED]> wrote: > > Has anybody converted this to AB and would love to share including > the plot info. Interesting article. > > Ray > > June 2007 activetradermag.

[amibroker] Re: Ideas for Swing Trading?

2007-05-28 Thread t_ohrt
Dave, I don´t think copyright is violated by sharing backtest results with AB users? I have no intention to reveal any of my coding without permission from the author of the system. I won´t even discuss the nature of the system at all, sorry. But as you open my eyes to potential legal problem

[amibroker] Re: Ideas for Swing Trading?

2007-05-27 Thread t_ohrt
. T.O --- In amibroker@yahoogroups.com, "t_ohrt" <[EMAIL PROTECTED]> wrote: > > Well no, I am halfway through David Graeme-Smiths e-book "Short Swing > Trading" after 1½ hours. Actually I´m halfway through Chande´s book > too, and that has taken me weeks b

[amibroker] Re: Ideas for Swing Trading?

2007-05-27 Thread t_ohrt
.com, "Ton Sieverding" <[EMAIL PROTECTED]> wrote: > > The book you're talking about is called 'Beyond Technical Analysis' from Chande ? Or ... > > Regards, Ton. > > - Original Message - > From: t_ohrt > To: amibroker@yahoogroups.co

[amibroker] Re: Traders tips from S&C for Amibroker

2007-05-26 Thread t_ohrt
It´s in the "Subscriber´s Area" at traders.com T --- In amibroker@yahoogroups.com, "ftstrades" <[EMAIL PROTECTED]> wrote: > > There is a compilation of AFL formulas from previous issues of S&C Mag > Traders Tips for AB somewhere, The link to that site or page is?. > Thanks >

[amibroker] Re: Ideas for Swing Trading?

2007-05-26 Thread t_ohrt
for example NDX100 stocks for reference. The system is EOD only. T. (in Sweden, but with german ancestors) --- In amibroker@yahoogroups.com, "samu_trading" <[EMAIL PROTECTED]> wrote: > > --- In amibroker@yahoogroups.com, "t_ohrt" wrote: > > Ton, > &g

[amibroker] Re: Ideas for Swing Trading?

2007-05-26 Thread t_ohrt
Dr Chambers, I admit that I mistrusted your recommendation but your emphatic response has made my curiousity rise and therefore I just bought the SST e-book to satisfy it. What the h--k, the cost is tax deductable where I live so it can´t hurt ;) However, as I don´t belive in "BELIEF" or "ATTI

[amibroker] Re: Ideas for Swing Trading?

2007-05-26 Thread t_ohrt
OK, apparently I´m missing something. I regret having recently invested my money in "Beyond Technical Analysis" (Chande 2001), because on page 11 he states that a benchmark for "a "Good" Trading Program" is an average monthly return of 1%. So your system must be something that will revolutioniz

[amibroker] Re: Ideas for Swing Trading?

2007-05-26 Thread t_ohrt
Yes!! At last, the holy Graal!! And for only §97. :0 T.O --- In amibroker@yahoogroups.com, "dralexchambers" <[EMAIL PROTECTED]> wrote: > > Hi, > > I use a strategy called Short Swing Trading at: > > http://www.chambers-media.com/track/SST.html > > I've had some really good results with th

[amibroker] Re: Nested Switch() statements

2007-05-25 Thread t_ohrt
Interesting topic, but where in the Amibroker user´s guide can I find information covering the Switch() function? T.O. --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > Steve, > > No, I don't think it is worthwhile for speed reasons. > In AFL speed of execution

[amibroker] Re: consolidating market indicators

2007-05-20 Thread t_ohrt
What periods do you use for ADX and ADXR? T.O. --- In amibroker@yahoogroups.com, "Rakesh Sahgal" <[EMAIL PROTECTED]> wrote: > > My personal favourite is the relationship of the ADX to the [1] PDI/MDI > combine and [2] ADXR. > > [1] When ADX is below both PDI & MDI - keep out if you like to tra