Re: [amibroker] Loop Problem

2007-09-26 Thread Graham
sorry had it the wrong way array = RSI(21); Threshold = 50; count = barssince(array wrote: > Thanks > I don't know why I try to complicate things. > Rick > --- Graham <[EMAIL PROTECTED]> wrote: > > > have you tried a simpler method? > > > > array = RSI(21); > > Threshold = 50; > > count = barssince

Re: [amibroker] Loop Problem

2007-09-26 Thread Rick Osborn
Thanks I don't know why I try to complicate things. Rick --- Graham <[EMAIL PROTECTED]> wrote: > have you tried a simpler method? > > array = RSI(21); > Threshold = 50; > count = barssince(array>=threshold); > > -- > Cheers > Graham Kav > AFL Writing Service > http://www.aflwriting.com > > >

Re: [amibroker] Loop Problem

2007-09-26 Thread Graham
have you tried a simpler method? array = RSI(21); Threshold = 50; count = barssince(array>=threshold); -- Cheers Graham Kav AFL Writing Service http://www.aflwriting.com On 27/09/2007, Rick Osborn <[EMAIL PROTECTED]> wrote: > You are correct (typo) - but fixing that doesn't solve > my initial

Re: [amibroker] Re: plotshapes problem

2007-09-26 Thread Graham
there are better ways to do this, and you can do it without using a loop. However to get you on right track and not take too much time, do not place plotshape in loop and define an array for using in it to define whcih bars are to be plotted with the shape. Here is a quick fix to your code I do not

Re: [amibroker] Loop Problem

2007-09-26 Thread Rick Osborn
You are correct (typo) - but fixing that doesn't solve my initial problem --- Ara Kaloustian <[EMAIL PROTECTED]> wrote: > Seem to be missing a ";" after "count = 0". > > You should be getting an error message. > > - Original Message - > From: "ricko8294_98" <[EMAIL PROTECTED]> > To:

Re: [amibroker] Loop Problem

2007-09-26 Thread Ara Kaloustian
Seem to be missing a ";" after "count = 0". You should be getting an error message. - Original Message - From: "ricko8294_98" <[EMAIL PROTECTED]> To: Sent: Wednesday, September 26, 2007 7:34 PM Subject: [amibroker] Loop Problem > What is wrong with this code? The concept seems to si

[amibroker] Loop Problem

2007-09-26 Thread ricko8294_98
What is wrong with this code? The concept seems to simple and it's driving me nuts. I want to count the number of consecutive days an array, (say RSI(21) is above a threshhold, (say 50) but to revert to zero if it falls below that threshhold. Here is the code, which does not seem to work. The

[amibroker] Re: Off Topic - Purported Humor and a question

2007-09-26 Thread gp_sydney
I use an old version of Paint Shop Pro for this, but would otherwise probably use Irfanview. Regards, GP --- In amibroker@yahoogroups.com, "Joe Landry" <[EMAIL PROTECTED]> wrote: > > Hi Tomascz - This is trivial but I'm wondering what tool you're using to clip and paste your screen shots like th

[amibroker] Re: plotshapes problem

2007-09-26 Thread richcb750
Anyone? I'm new to AFL, so let me know if I'm doing something completely wrong. Thanks. --- In amibroker@yahoogroups.com, "richcb750" <[EMAIL PROTECTED]> wrote: > > Anybody have any ideas on this? > > Thanks. > > --- In amibroker@yahoogroups.com, "richcb750" wrote: > > > > The following formu

[amibroker] Re: IB Backfill period, has it changed?

2007-09-26 Thread Barry Scarborough
That was it. Thanks. Barry --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > Barry, > > The length is controlled from the plugin menu. > http://www.amibroker.com/guide/h_ib.html > > You may have switched it to something less than 30 days. > > > > Best regards

Re: [amibroker] Re: buy/sell arrows (Volume Price Confirmation Indicator)

2007-09-26 Thread ziad aljalsi
TRY DO ADD THIS (NOT TESTED) PlotShapes((Buy*1)+(Sell*2),IIf(Buy,colorGreen,colorRed) ); Allen <[EMAIL PROTECTED]> wrote: What am I doing wrong. After following the instructions listed below I still am unable to display the arrows on the chart. What am I doing wrong?? --- In am

[amibroker] Re: buy/sell arrows (Volume Price Confirmation Indicator)

2007-09-26 Thread Allen
What am I doing wrong. After following the instructions listed below I still am unable to display the arrows on the chart. What am I doing wrong?? --- In amibroker@yahoogroups.com, "Fred" <[EMAIL PROTECTED]> wrote: > > Run backtest ... Then right click on the tradelist in the AA window > and

[amibroker] I NEED HELP

2007-09-26 Thread ziad aljalsi
WE KNOW IF ANY BODY DRWA TREND LINE OR RAY IF IT WAS UP TREND THE VALUE OF THE LINE GOING UP EVRE NEW BAR IS THERE ANY WAY OR FORMULA TO SHOW THE END VALUE OF THE LINE WRITTEN ON THE TREND OR NEXT TO IT AND GETTING CHANGE EVRE NEW BAR THANK YOU ALL Send instant messages to your online fr

[amibroker] Re: Off Topic - Purported Humor and a question

2007-09-26 Thread Al
i found Tomasz's RoboScreenCapture at cnet.com for download and a adobe statement that they have ceased to support in 05. I have used PrintKey for about ten years. It is the best little utility I have. Lots of features I use for capture and printing. Was free at one point, and I have seen fr

Re: [amibroker] IB Backfill period, has it changed?

2007-09-26 Thread Xavi
And if I want more than 30 days? On 9/26/07, Tomasz Janeczko <[EMAIL PROTECTED]> wrote: > >Barry, > > The length is controlled from the plugin menu. > http://www.amibroker.com/guide/h_ib.html > > You may have switched it to something less than 30 days. > > > Best regards, > Tomasz Janeczko > a

[amibroker] Replay tickdata for simulation

2007-09-26 Thread martin.uhlich
Hi, it would not be easy for me to present my question. I didn´t use this language for a long time. So it could be that my question ist answered somewhere here in this group, but my search was not successful. May be I used not the right key words. Sorry then… Im a newby! I´m interested in a s

[amibroker] Considering AmiBroker for Charting

2007-09-26 Thread hardrockgeo
Greetings to the group: I am close to purchasing AmiBroker. I am looking for charting software that can display multiple charts on one screen. I want to be able to create chart groups/books for strong sectors and scan them for tradeable patterns. Can AB perform this type of function. If no

[amibroker] SetStudyRay( StartX,EndX, StartY,EndY );

2007-09-26 Thread pierre8rou
Hello, I try to set STUDY in AFL formula like something like that : Warning it's pseudo AFL code : SetStudyRay( StartX,EndX, StartY,EndY ); Where StartX is Date + Time EndX is quotations. Thanks, Pierre

Re: [amibroker] Off Topic - Purported Humor and a question

2007-09-26 Thread Ronald Davis
Joe, TJ is not the only super programer in POLAND. I use MW snap3 made by another one of those great Polish programmers. Ron D http://www.mirekw.com/ === - Original Message - From: Tomasz Janeczko To: amib

Re: [amibroker] Off Topic - Purported Humor and a question

2007-09-26 Thread Tomasz Janeczko
Hello, I simply switch mail format to "HTML" and then use "Insert picture" in Outlook Express. To make a screenshot with annotations I am using RoboScreenCapture from company that was called "eHelp" but it was taken over by Macromedia several years ago and then Macromedia was taken over by Adob

RE: [amibroker] Moving intraday quotes from one Amibroker database to another

2007-09-26 Thread Jerry Gress
Tony, Try www.OpenTick.com, for free you get historical tick data, and with data plug can chart or merge into Amibroker. Jerry Gress Stockton, Ca. -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tony Sent: Tuesday, September 25, 2007 9:06 PM To:

[amibroker] Re: QT Projected Volume

2007-09-26 Thread Mike
Thanks! It looks like the new release (5.0) added the necessary functions: GetPlaybackDateTime() DateTimeConvert() (5.0 added the necessary time conversation formats!) And Thanks to TJ for the new functions!

[amibroker] Off Topic - Purported Humor and a question

2007-09-26 Thread Joe Landry
Hi Tomascz - This is trivial but I'm wondering what tool you're using to clip and paste your screen shots like the one attached here. I'm looking forward to seeing you again Feb in Las Vegas at the AB Conference. Maybe we'll get the holy grail at last from one of the members of the conferen

Re: [amibroker] Re: Could someone point in the right direction...

2007-09-26 Thread Steve Dugas
You are welcome Tony. Thanks for the code! Steve - Original Message - From: "Tony" <[EMAIL PROTECTED]> To: Sent: Tuesday, September 25, 2007 11:52 PM Subject: [amibroker] Re: Could someone point in the right direction... > Steve, > > I wanted to thank you again for your help... > >

Re: [amibroker] IB Backfill period, has it changed?

2007-09-26 Thread Tomasz Janeczko
Barry, The length is controlled from the plugin menu. http://www.amibroker.com/guide/h_ib.html You may have switched it to something less than 30 days. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "Barry Scarborough" <[EMAIL PROTECTED]> To: Sent: Wednesday,

[amibroker] IB Backfill period, has it changed?

2007-09-26 Thread Barry Scarborough
The plug-in says IB provides 20 day backfill for customers. I am a customer, I pay more than the their minimum in fees monthly and just tried to backfill data for IBM and only got 4 days. Has something changed in IB or their TWS? The TWS I am using is java version 1.6.0_02 and the build is 877.

[amibroker] Re: AB system into TradeSim Database

2007-09-26 Thread justinwonono
Ok thanks franc, I'll check what I've done wrong. Regards --- In amibroker@yahoogroups.com, "oceanchimes" <[EMAIL PROTECTED]> wrote: > > Justinwonono > I used a call to the include file in my AFL. Then ran a > backtest/exploration for the period using AA filter for all stocks. > Worked as expecte

[amibroker] Re: please help

2007-09-26 Thread jeffro861
It give me the result of one stock and then it craps out and gives me this error message: { sine = sin( (Cum(1)-pkOffset+Periods/4)/Periods * 6.283185 ); } if ( LastValue( ValueWhen(BCpk OR BCtr,BCtr,1) ) ) //RECENT ANCHOR POINT IS A TROUGH { sine = sin( (Cum(1)-trOffset+Periods*3/4)