Re: [amibroker] Re: How to save to WatchList from Analysis Exploration

2008-06-16 Thread apforex
if(LastValue(Filter)) CategoryAddSymbol( "", categoryWatchlist, WLN ); umrperumal wrote: Mr Dingo, Thanks for your reply. How to modify the last line? Is it ok if I delete "HighVolStocks"? Should I put the names of all the tickers in its place? Sorry if it is a silly question. Can

Re: [amibroker] Re: Artificial ticker

2008-06-14 Thread apforex
|myindex = IIf( TimeNum()>094500 *AND* TimeNum()<154500, *Close*, *Null*); AddToComposite(myIndex, "~MyIndex", "X" ) ; *Buy* = 0;| Louis Préfontaine wrote: Hi, I'd like to use this formula to create a custom index, but I would like to remove the bars after 3:45PM and before 9:45 AM. Anyo

Re: [amibroker] A question about chart & scaling

2008-06-03 Thread apforex
Plot your long term MA with *stylenorescale*: plot( array, "", color, styleline|stylenorescale); itmwh wrote: Hi, I have a question about chart & scaling. I have some long term and short term moving averages on my chart. I need the long term MA to keep my in line with the big trend, but fo

[amibroker] Can not access AB Feed Back Center

2008-06-03 Thread apforex
http://www.amibroker.com/feedback/login.php redirects back to http://www.amibroker.com/feedback/index.php Continue >>

Re: [amibroker] Position sizing off a stop

2008-05-28 Thread apforex
|/*EXAMPLE ---*/ // set your stop in points stop = 1.5; // calculate stop distance relative to entry level in % chg = IIf(*Buy*,100* stop/*BuyPrice*, IIf(*Short*,100* stop/*ShortPrice*,*Null*)); // Set your risk parameter as % of Equity /trade risk = 1; /* Simple E

Re: [amibroker] Re: Multiple stocks on mulltiple panes on 1 sheet

2008-05-19 Thread apforex
File>New>Default Chart You can choose to synchronize or not windows by Symbol and/or Interval gmorlosky wrote: > Well not quite. I'll try to explain better. I would like to have > multiple windows on one sheet, much like having multiple instances of > AB ruuning but on one sheet. > EXAMPLE: I wa

Re: [amibroker] Re: MACD Signal Value

2008-05-19 Thread apforex
and this

Re: [amibroker] Re: MACD Signal Value

2008-05-19 Thread apforex
see this <http://f1.grp.yahoofs.com/v1/4IcxSIvCiUmXPms8sTwnWq437h0AOvVugndfuNgEW1V_15b-wx5w5eylRnaNI34nD5xm8ENppfqyszeS_fMFG72njlZKOg/AFL%20Looping.pdf> apforex, So when AMIBroker is going through all the bars of data loaded for a symbol the for loop below really in a sense only runs f

Re: [amibroker] MACD Signal Value

2008-05-18 Thread apforex
for ( i = 0; i < barcount; i++) { if( macd_signal[i] > 0) { } } patsgreatdeals wrote: > I am looking to get the value of the MACD Signal line to test if it > is over/under 0. > > The code below (taken from AMIBroker MACD indicator) will give the > the signal and I can plot i