Re: [amibroker] Re: Can someoneplease code up this simple system

2007-09-17 Thread Edward Pottasch
similar effect you get if you use settradedelays(1,1,1,1). I am used to Ref(Buy,-1) and I leave setttradedelays(0,0,0,0) because I can directly put this signal in the chart and shows me where it is at. There is nothing mysterious about it. It just shifts signals 1 bar forward. Yesterdays signal

[amibroker] Re: Can someoneplease code up this simple system

2007-09-17 Thread mozpet2001
--- In amibroker@yahoogroups.com, "Edward Pottasch" <[EMAIL PROTECTED]> wrote: > > yes Ref(Buy,-1) basicly shifts all elements of the array Buy 1 bar forward in time. The close price is used to trigger a signal. In reality it will be hard to develop a system that enters at the close except if y

Re: [amibroker] Numcolumn

2007-09-17 Thread Ara Kaloustian
NumColumn is an obsolete function. Look at AddColumn() function to create explorations. - Original Message - From: "burlap58" <[EMAIL PROTECTED]> To: Sent: Monday, September 17, 2007 2:42 PM Subject: [amibroker] Numcolumn > When I try to explore using some of the AFL from the library

Re: [amibroker] Numcolumn

2007-09-17 Thread Steve Dugas
Hi - I think that error message is outdated now. You need to define some kind of output - easiest way to do that now is by using the AddColumn() function. Steve - Original Message - From: "burlap58" <[EMAIL PROTECTED]> To: Sent: Monday, September 17, 2007 10:42 PM Subject: [amibroker]

[amibroker] Numcolumn

2007-09-17 Thread burlap58
When I try to explore using some of the AFL from the library I'm told I need to define the numcolumn variable. I've looked all over for that term and found a brief definition that didn't help. It's probably in one of the nooks and crannies of this software, but I can't find it in the exploration p

[amibroker] Re: Confusing Volume number display in Amibroker! HELP PLSSSS!

2007-09-17 Thread w_hau
Thx, problem fixed..

[amibroker] Numcolumn

2007-09-17 Thread burlap58
When I try to explore using some of the AFL from the library I'm told I need to define the numcolumn variable. I've looked all over for that term and found a brief definition that didn't help. It's probably in one of the nooks and crannies of this software, but I can't find it in the exploration p

[amibroker] Back to Hurst Millard DE

2007-09-17 Thread Kevin243
Fred, How do I capture an upturn or downturn in the various CMA1... CMA2 etc. for an exploration? Pretty Please Kevin ** See what's new at http://www.aol.com

[amibroker] Re: launch broker.exe thro commandline

2007-09-17 Thread murthysuresh
here is the code that will handle it. dont want to bother Tomasz with such a small change. Option Explicit Dim ABPath,args,num,oAB set args = WScript.Arguments num = args.Count if num = 0 then WScript.Echo "Usage: [CScript | WScript] LoadAB.vbs drivespace.vbs " WScript.Quit 1 end if Se

RE: [amibroker] launch broker.exe thro commandline

2007-09-17 Thread J. Biran
Make this a suggestion at http://www.amibroker.com/feedback/ Joseph Biran -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh Sent: Monday, September 17, 2007 3:50 PM To: amibroker@yahoogrou

[amibroker] Re: launch broker.exe thro commandline

2007-09-17 Thread murthysuresh
thats a good idea. i will try that. seede--- In amibroker@yahoogroups.com, "dingo" <[EMAIL PROTECTED]> wrote: > > Write a small vbs or jscript that WILL accept CLA's and have that script Run > AB; Load the DB specified in the CLA; End. Then make the necessary short > cuts to that script. > > d

Re: [amibroker] launch broker.exe thro commandline

2007-09-17 Thread Joe Landry
Or he could use Batman, a shareware program by Fred Tonetti. Joe - Original Message - From: dingo To: amibroker@yahoogroups.com Sent: Monday, September 17, 2007 6:13 PM Subject: RE: [amibroker] launch broker.exe thro commandline Write a small vbs or jscript that WILL a

RE: [amibroker] launch broker.exe thro commandline

2007-09-17 Thread dingo
Write a small vbs or jscript that WILL accept CLA's and have that script Run AB; Load the DB specified in the CLA; End. Then make the necessary short cuts to that script. d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of murthysuresh > Sen

Re: [amibroker] Numcolumn

2007-09-17 Thread Prashanth
Most probably the formula isnt a Exploration. To Explore, all you need is Filter = 1; Addcolumn(C,"Close"); The above shall get the close price for the specified scrips. You can change the C above to any variable that is the output of the formula to get the value of the same. Cheers Prashan

[amibroker] launch broker.exe thro commandline

2007-09-17 Thread murthysuresh
Hello Is there any options to launch broker.exe thro commandline and pass the name of the database to launch. i have 3 different versions of the db that i use for different purposes. I want to have a short cut to use to launch them. every time, i open ab, it opens the default db and then i have

[amibroker] Numcolumn

2007-09-17 Thread burlap58
When I try to explore using some of the AFL from the library I'm told I need to define the numcolumn variable. I've looked all over for that term and found a brief definition that didn't help. It's probably in one of the nooks and crannies of this software, but I can't find it in the exploration p

RE: [amibroker] Charts with Black BG, Charts with White BG

2007-09-17 Thread Don Lindberg
Put the code below in the beginning of your charts. Now you can right click the chart choose parameters and set the colors in each chart seperaterly. SetChartBkGradientFill( ParamColor("BgTop", ColorRGB( 172,172,172 )), ParamColor("BgBottom", ColorRGB( 172,172,172 )),ParamColor("titleblock",C

[amibroker] Re: Identical PositionScores in Rotational Trading

2007-09-17 Thread whitneybroach
David, What answer did you receive on this? Best, Whitney --- In amibroker@yahoogroups.com, "dweilmuenster95125" <[EMAIL PROTECTED]> wrote: > > If all stocks have the same, non-zero PositionScore on a given bar, > does rotational trading leave all positions unchanged? > > Thanks, > David Weilm

Re: [amibroker] Charts with Black BG, Charts with White BG

2007-09-17 Thread wavemechanic
Look up setchartbkcolor() in the Users Guide. Bill - Original Message - From: "progster01" <[EMAIL PROTECTED]> To: Sent: Monday, September 17, 2007 3:54 PM Subject: [amibroker] Charts with Black BG, Charts with White BG > Hi all. > > Is it possible to have charts built on a black bac

[amibroker] Charts with Black BG, Charts with White BG

2007-09-17 Thread progster01
Hi all. Is it possible to have charts built on a black background and charts built on a white background present and displayed at the same time? My initial impression is that the only way to change the background color of charts is via the global preference setting ...

[amibroker] Re: SELECTIVE FILTER IN EXPLORATION

2007-09-17 Thread murthysuresh
put those 2 stocks in watchlist and filter watchlist during xplore--- In amibroker@yahoogroups.com, "Prashanth" <[EMAIL PROTECTED]> wrote: > > Why not have the choice of Scrips in a Watchlist and use that list for AA. > > Cheers > > Prashanth > > - Original Message - > From: "Vinay G

Re: [amibroker] SELECTIVE FILTER IN EXPLORATION

2007-09-17 Thread Prashanth
Why not have the choice of Scrips in a Watchlist and use that list for AA. Cheers Prashanth - Original Message - From: "Vinay Gakkhar." <[EMAIL PROTECTED]> To: "amibroker" Sent: Monday, September 17, 2007 7:11 PM Subject: [amibroker] SELECTIVE FILTER IN EXPLORATION > While doing Auto

[amibroker] SELECTIVE FILTER IN EXPLORATION

2007-09-17 Thread Vinay Gakkhar.
While doing Automatic Analysis of my exploration, I want that Amibroker should not apply my filter for two specific stocks of my choice, and to apply filter for rest of the stocks in my list. Can someone please guide me what to write in the exploration to get this feature? Thanks, gakkhar

Re: [amibroker] Request for AFL Help

2007-09-17 Thread Raajesh
Dear Herman and Joe, Thanks a lotfor your quick help Regards, Raajesh Joe Landry <[EMAIL PROTECTED]> wrote: First you have to find the right function. mycondition = Cross(shortMA,longMA); Buycondition = Sum(mycondition,20); Buy = Buycondition >=

[amibroker] Amiquote ticker list for NSE India

2007-09-17 Thread swptec
Hello, I want to download NSE India EOD quotes from Yahoo Finance. Where can I get the ticker list? Are the stock symbols on NSE India and Yahoo Finance the same? Thanks.

[amibroker] Re: Forex data using metatrader plugin for amibroker

2007-09-17 Thread apfxtrader
MT3 data & AFL plugin is still available for download from: http://gliznitsa.nm.ru/mt2ami-20060220-lite.zip MT3 Brokers: InterbankFX FXDD Alpari-idc

Re: [amibroker] Request for AFL Help

2007-09-17 Thread Joe Landry
First you have to find the right function. mycondition = Cross(shortMA,longMA); Buycondition = Sum(mycondition,20); Buy = Buycondition >= 3; Hope this helps JOE - Original Message - From: Raajesh Jariwala To: amibroker@yahoogroups.com Sent: Monday, September 17, 2007

[amibroker] Re: Forex data using metatrader plugin for amibroker

2007-09-17 Thread apfxtrader
You can find in Files folder of : http://finance.groups.yahoo.com/group/ForexSystemBuilders/ MT3 data plugin and AFL plugin (uses MT3 API) --- In amibroker@yahoogroups.com, "Padhu" <[EMAIL PROTECTED]> wrote: > > Hello, > > I got this link from Saji. thanks again saji. > > http://www.gdynia.m

[amibroker] Request for AFL Help

2007-09-17 Thread Raajesh Jariwala
Hello Friends, I have a condition defined. I wish to trigger a buy if this condition is true three times in the last 20 bars... How do I go about writing the same. Please help. Regards, Raajesh

Re: [amibroker] Confusing Volume number display in Amibroker! HELP PLSSSS!

2007-09-17 Thread Tomasz Janeczko
Please read this article in the Knowledge Base: http://www.amibroker.com/kb/2007/08/04/amiquote-and-free-data-from-yahoo/ Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "w_hau" <[EMAIL PROTECTED]> To: Sent: Monday, September 17, 2007 9:48 AM Subject: [amibroker] C

[amibroker] Re: not able to plot the trin against nasdaq

2007-09-17 Thread murthysuresh
apples and oranges. i see ur point and fixed the ma. now they are looking similar. --- In amibroker@yahoogroups.com, "treliff" <[EMAIL PROTECTED]> wrote: > > With due respect, it appears you simply pasted the BRIN code, changed > the symbols, and expect results. Aaah, if it were that easy

[amibroker] Re: Help with missing bars

2007-09-17 Thread dougtrade
Bill, Thanks, I've tried this... but it fills in with the OHLC and volume from the previous bar. This throws everything off, especially the opening! I'm using "Pad & Align" for my composites, since it still reflects relative strength. I guess I'll just have to live with the missing bars (it's