Re: [amibroker-beta] GPU Computing Power

2007-02-02 Thread Tomasz Janeczko
Although GPUs have amazing computer power, the speed of AFL processing does not depend as largely on raw computing speed but on the speed of MEMORY, which is fixed. I learned this lesson doing tests on multi-core setups. Even 2 core CPU waits for memory when doing simple array

Re: [amibroker-ts] Re: volatility stop like in Ensignsoftware - help me code it in

2007-02-02 Thread Edward Pottasch
procedure needs additional line of code. procedure findEntriesAndExits_proc(EntrySignal,ExitSignal,TrailStop,ProfitTaker) { global Sell; global SellPrice; global Cover; global CoverPrice; global Buy; global BuyPrice; global Short; global ShortPrice; global StopLine; Sell = 0;

Re: [amibroker] Fasttrack plugin not available in File-database settings

2007-02-02 Thread Tomasz Janeczko
Hello, You need to setup FastTrack itself on this computer. Specifically you need FASTTRACK.DLL inside your Windows folder and this file is installed by FastTrack for the web setup program. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: engelsda [EMAIL

Re: [amibroker] Studies Layers question

2007-02-02 Thread Ton Sieverding
Question 2: Can anyone confirm this behavior. If so, I will file a report on feedback. If have tried to simulate what you are saying but without success. For me the hor. line tool works fine. Whatever I do, it just stays where it is ... Ton. - Original Message - From: Terry

[amibroker] Re: Use AFL to create two charts

2007-02-02 Thread dralexchambers
Excellent - and thanks! That is what I am looking for. Alex PS- And yes, I am a newbie. This board has been very helpful in getting my understanding of AFL together.

Re: [amibroker] Help ! Small problem after Vista Upgrade

2007-02-02 Thread Tomasz Janeczko
Hello,o Glad I could help. However I am wondering where exactly this message comes from because there is no such text in AmiBroker. Would it be possible to get screenshot, please ? Best regards, Tomasz Janeczko amibroker.com - Original Message - From: Don Lindberg To:

[amibroker] Filtering with many criteria?

2007-02-02 Thread carlacash26
I have 5 criteria I want to filter in a explorer. I want a list of stocks that fill all of the 5 criteria. It doesnt't seem to work if I try to do it like this: Filter= (criteria1); Filter= (criteria2); Filter= (criteria3); Filter= (criteria4); Filter= (criteria5); Any idea? :(

[amibroker] Referencing the value in a previous bar

2007-02-02 Thread dralexchambers
I have some code - below - that creates stop losses for each bar, then amends the stop loss of each buy signal (long trade entry day only) to that of the longsetup day. LSUP = {Long setup condition here} for (i=0; iBarCount; i++) { LongSetup[i] = LSUP[i]; LongStop[i]

Re: [amibroker] Filtering with many criteria?

2007-02-02 Thread kailash pareek
hi, try this Filter= (criteria1)and(criteria2)and(criteria3) and (criteria4)and (criteria5); johnny --- carlacash26 [EMAIL PROTECTED] wrote: I have 5 criteria I want to filter in a explorer. I want a list of stocks that fill all of the 5 criteria. It doesnt't seem to work if I try to

[amibroker] ValueWhen problems

2007-02-02 Thread dralexchambers
I have some code - below - that creates stop losses for each bar, then amends the stop loss of each buy signal (long trade entry day only) to that of the longsetup day. LSUP = {Long setup condition here} for (i=0; iBarCount; i++) { LongSetup[i] = LSUP[i]; LongStop[i] = Low[i-1]- (Low[i-1] *

[amibroker] Re: ValueWhen problems

2007-02-02 Thread itmwh
In your codes, ValueWhen(Longsetup[i],Longstop,1) is an array, not a number. Try this one: aa=valuewhen(longsetup,longstop,1) for (i=1; iBarCount; i++) { if (Buy[i]==1 AND Buy[i-1]==0) {Longstop[i] = aa[i]} } Cheers/ Tom --- In amibroker@yahoogroups.com, dralexchambers [EMAIL

[amibroker] EW OSC

2007-02-02 Thread sai20_2000
Friends I had this peice of easy language code for EW Oscillator .Iam trying to convert it in to AFL but not able to get what the barnumber and var function in amibroker stands for so not able to plot the breakout bands on the oscillator. Any help is highly appreciated. EASY Language CODE:

[amibroker] Re: ValueWhen problems

2007-02-02 Thread dralexchambers
Nice one! Problem solved.

[amibroker] Future Candle

2007-02-02 Thread eboarder777
Hi, is it possible to calculate and draw candles for the future? Greetings

[amibroker] Amibroker trial

2007-02-02 Thread ftstrades
I dowloaded amibroker trial vesion for a month, I'm not ableto see the indicator list under insert nor able to see a list of criteria under the indicator builder. Is this function disabled in the trial version or how do I insert indicators otherwise. Thanks

Re: [amibroker] Amibroker trial

2007-02-02 Thread Tomasz Janeczko
Indicator Builder ? From where did you get this trial. Version 4.80 does NOT have indicator builder at all. Legitimate trial versions are here: http://www.amibroker.com/download.html Best regards, Tomasz Janeczko amibroker.com - Original Message - From: ftstrades [EMAIL PROTECTED] To:

RE: [amibroker] Filter Trick

2007-02-02 Thread Ken Close
Graham: Thanks for the reminder (new for me). For those who are relatively new, yet might be interested in using this command, I found how to use it non-obvious. After playing around with it, I discovered that it is like the Excel function that finds the number of the character in the total

[amibroker] Re: Studies Layers question

2007-02-02 Thread Daniel T
Hi, Why don't you use CVS for version management of your source code? In CVS you don't need to rename files and therefore you won't have this problem. WinCVS software is free and available at http://www.wincvs.org/ Cheers, Daniel --- In amibroker@yahoogroups.com, Terry [EMAIL PROTECTED] wrote:

Re: [amibroker] Re: Studies Layers question

2007-02-02 Thread Joe Landry
Hi Daniel.. Conceptually this is not new to me, but when I go to the CVS site it looks like a complete approach for tracking versions, and I'm not sure which flavor I should download. Do you have a recommendation for use with AB AFL and jscripts? Thanks JOE - Original Message -

[amibroker] Re: Filtering with many criteria?

2007-02-02 Thread carlacash26
Thanks both of you, seem to work better like that! :) --- In amibroker@yahoogroups.com, kailash pareek [EMAIL PROTECTED] wrote: hi, try this Filter= (criteria1)and(criteria2)and(criteria3) and (criteria4)and (criteria5); johnny --- carlacash26 [EMAIL PROTECTED] wrote: I

[amibroker] AmiBroker 4.90.0 Release Candidate 1

2007-02-02 Thread Tomasz Janeczko
Hello, AmiBroker 4.90.0 rc1 available now: http://www.amibroker.com/devlog/2007/02/02/amibroker-490-release-candidate-1/ Note that this is not yet official - it is release candidate software - something like beta - if you want to get official you will need to wait a bit more. The difference

[amibroker] Backtester: not selling out on same day as entry

2007-02-02 Thread dralexchambers
I have some backtester code below. Despite setting the AllowSameBarExit option to True, the position is not being sold on the same day. See this JPG for my explanation: http://www.chambers-media.com/01.jpg The black arrow is the setup day The green arrow is the buy day The blue line is a

Re: [amibroker] Backtester: not selling out on same day as entry

2007-02-02 Thread Tomasz Janeczko
This is because in your formula you are using ExRem. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: dralexchambers [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Friday, February 02, 2007 4:56 PM Subject: [amibroker] Backtester: not selling out on same day

[amibroker] Re: Backtester: not selling out on same day as entry

2007-02-02 Thread dralexchambers
I have to use ExRem - if I don't I get signals all over the chart, for example, multiple sell signals!

RE: [amibroker] Help ! Small problem after Vista Upgrade

2007-02-02 Thread Don Lindberg
Tomasz, Can't give you a screen shot because I have fixed problem so it doesn't come up any more. My guess is that it is a Vista message, not an AmiBroker message. Sorry I couldn't be of more help. Don Lindberg _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [amibroker] Re: Backtester: not selling out on same day as entry

2007-02-02 Thread Tomasz Janeczko
No you don't have to. Equity(1) is much better alternative. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: dralexchambers [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Friday, February 02, 2007 5:25 PM Subject: [amibroker] Re: Backtester: not selling out

RE: [amibroker] Studies Layers question

2007-02-02 Thread Terry
Ton, Thanks for testing. When I draw it the first time, it works. If I later try to move it by dragging, one end or the other jumps to a price point. This using the Horizontal line tool. I have since found you can move it EXACTLY by changing properties and specifying a new price. --

[amibroker] Re: script to add to watchlists

2007-02-02 Thread murthysuresh
--- In amibroker@yahoogroups.com, Eric H. Tao [EMAIL PROTECTED] wrote: Hi guys, what wscript editor are you using? and our formula editor doesn't parse CBI object in real time, make it hard to debug. Do we have a alternative or is it already in our to-do list? Thank you Eric I use

Re: [amibroker] AllowSameBarExit not working

2007-02-02 Thread Graham
try this LongStop = ref(Low,-1) - 0.0010; -- Cheers Graham AB-Write Professional AFL Writing Service Yes, I write AFL code to your requirements http://www.aflwriting.com On 02/02/07, dralexchambers [EMAIL PROTECTED] wrote: I have some backtester code below. Despite setting the

Re: [amibroker] Re: Filtering with many criteria?

2007-02-02 Thread Wes Smith
You may also want to consider using OR instead of AND, depending on your requirements. ALL conditions must be true .. filter= (criteria1)and(criteria2)and(criteria3) ANY conditions can be true .. filter= (criteria1) or (criteria2) or (criteria3) - Original Message From: carlacash26

[amibroker] Synchronize multiple timeframes

2007-02-02 Thread houston_rb
In Tradestation you are able to synchronize the charts across multiple timeframes. Is this possible in AB or on the feature enhancement list? http://flatwallet.blogspot.com/2007/02/tie-form.html

[amibroker] Re: My First system

2007-02-02 Thread brian.z123
First a little philosophy (ideas rule!). Words do not have absolute meanings. They can have different meanings to different people and also vary depending on the context in which they are used. The most important thing is to be 100% clear on what they mean to you. Don't be afraid to step

Re: [amibroker] Exploration hangs with iq and esignal

2007-02-02 Thread Yuki Taga
Hi Terry, Thanks for reminding me about this. It's just one of many things I haven't gotten around to doing yet. ^_^ Yuki Friday, February 2, 2007, 1:30:40 AM, you wrote: T Yuki, T Have you used Categories-Groups to setup custom time frames for your T different tickers, especially futures

[amibroker] plot nr7 on a indicator

2007-02-02 Thread murthysuresh
Hello I am trying to plot a NR7- smallest range in 7 days. But i keep getting error. here is my code. can someone point where i did wrong. rang=High-Low; nr7=IIf(rang=LLV(rang,7),shapeDigit7,shapeNone)); PlotShapes(nr7,colorGreen);

Re: [amibroker] plot nr7 on a indicator

2007-02-02 Thread Graham
Bracket count was necessary, and the == instead of = to equate 2 values One thing remember the rest of the plotshapes function inputs in case you want to plot them on some other type of chart. rang=High-Low; nr7=IIf(rang==LLV(rang,7),shapeDigit7,shapeNone); PlotShapes(nr7,colorGreen,0,L,0); also

Re: [amibroker] Re: My First system

2007-02-02 Thread Yuki Taga
Hi Brian, Saturday, February 3, 2007, 9:16:58 AM, you wrote: bz First a little philosophy (ideas rule!). It's like a husband and wife: They better figure they need each other equally (in this case ideas and actions, rather than husbands and wives), or there is going to be trouble. An action

[amibroker] OT: Internet Explorer 7.0

2007-02-02 Thread Ara Kaloustian
I tried to upgrade t IE 7 as part of normal Windows upgrades, but it did not install properly. This is my second attempt. When I start explorer, it does not load fully. It does register in the processes in Task Manager, but does not show up in the applications tab. Can not connect to my router