Search the web
Sign In
New User? Sign Up
amibroker · AmiBroker User's List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 139906 - 139935 of 139936   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
139906
Dennis ... Apologies for the 'air swings' ... I am striving to understand something I know very little about, and do it in an AB context, without having to go...
brian_z111
Offline Send Email
Jul 2, 2009
10:04 pm
139907
Tomasz, ... Why are the price arrays setup before parsing ... any special reason? Why does the QuickAFL process need to interact with data, during the first...
brian_z111
Offline Send Email
Jul 2, 2009
10:21 pm
139908
Thank you for you help. This works, but it is a lot of trouble when you just want a print out to look at a chart and verify some numbers. It seems like there...
James
jamesmemphis
Offline Send Email
Jul 2, 2009
11:25 pm
139909
What is "ort" in the last line? ________________________________ From: umrperumal <umrperumal@...> To: amibroker@yahoogroups.com Sent: Thursday, July 2,...
Bob Waits
bobwaits2
Offline Send Email
Jul 2, 2009
11:42 pm
139910
Hi Herman, I was starting to probe the subject of 'optimal RT performance' in Dennis's thread. Trading systems has to be at least as important as desiging them...
brian_z111
Offline Send Email
Jul 3, 2009
1:35 am
139911
That approach doesn't work for me, since I am running real time and I need an up to date reference. The holes is destroying a very nice chart. There must be...
jorgen_wallgren
Offline Send Email
Jul 3, 2009
3:12 am
139912
Hi Bob, Sorry there was some mistake while copying. Shall be thankful if it could be converted into AFL. The correct metastock formula is as under : ...
Perumal Ramasamy
umrperumal
Offline Send Email
Jul 3, 2009
3:40 am
139913
Brian, If you are only working on 100 or 1000 bars, none of this matters as far as I am concerned. Just use all the bars in an array operation, or use fewer...
Dennis Brown
see3d
Offline Send Email
Jul 3, 2009
4:06 am
139914
Tomasz has given examples in the past. there is a way to have pretty much just lines. but I havent used it for awhile, so I've forgotten. Try looking after...
Paul Ho
paultsho
Offline Send Email
Jul 3, 2009
4:16 am
139915
Jorgen, I have not tried this, but perhaps you could think about it this way. You just need a dummy reference array as you main ticker. One with no holes....
Dennis Brown
see3d
Offline Send Email
Jul 3, 2009
5:18 am
139916
Dennis, I really did expect you to be asleep at this time of my day. ... Understood .... I just used that as the easily remembered example that I have been...
brian_z111
Offline Send Email
Jul 3, 2009
5:30 am
139917
Hi Mubashar : Thanks for ur info..for this code rather than certain percentage , some log value is used.......
shahariar4
Offline Send Email
Jul 3, 2009
7:54 am
139918
hi Edward, I do read replies...for some reason when I searched for my prior post it did'nt come up, so I thought it had'nt been posted. Thanks for your code,...
gborrageiro
Offline Send Email
Jul 3, 2009
9:24 am
139919
ok great. Sorry for my annoyed reply but sometimes I give detailed responses and never find out if my response is even read which kind off takes away the...
Edward Pottasch
ed2000nl
Offline Send Email
Jul 3, 2009
10:11 am
139920
hi Edward, Why do you utilize the buy and short price from the previous bar? Buy = Ref( Buy, -1 ); Short = Ref( Short, -1 ); thx...
gborrageiro
Offline Send Email
Jul 3, 2009
10:32 am
139921
That's a very interesting idea Dennis! I also came up with another idea. To collect the longer timeframe Minute() Array and use that one as a reference. Which...
jorgen_wallgren
Offline Send Email
Jul 3, 2009
10:58 am
139922
the code is just an example and I believe I used your setup system: Buy = ( Cross( MA( C, 10 ), MA( C, 50 ) ) ) * timearray; Buy = Ref(Buy,-1); BuyPrice = O; ...
Edward Pottasch
ed2000nl
Offline Send Email
Jul 3, 2009
11:03 am
139923
Re: [amibroker] Re: Speeding up code ??? See capture below... It may be possible (i haven't tried it) by partitioning code and running them in their own panes...
Herman
psytek2
Offline Send Email
Jul 3, 2009
11:38 am
139924
Re[2]: [amibroker] Re: Speeding up code ??? I forgot to mention that you can also use the AB High-Precision timer to get finer execution control than the timed...
Herman
psytek2
Offline Send Email
Jul 3, 2009
12:50 pm
139925
Thanks Herman, I didn't pick up the capture from the web messages. Is it an attachment or image ... I can probably get it later from Purebytes? Very...
brian_z111
Offline Send Email
Jul 3, 2009
2:39 pm
139926
Re: [amibroker] Re: Speeding up code ??? the image was copied into the posted email. I think it was Fred who introduced cloning. of course, when trading in...
Herman
psytek2
Offline Send Email
Jul 3, 2009
3:13 pm
139927
Herman, That was one of the best descriptions of the various methods that can be used for speed optimizations I have seen. It really shows the variety of ways...
Dennis Brown
see3d
Offline Send Email
Jul 3, 2009
3:55 pm
139928
Brian, Herman's explanations in the "Speeding up code ???" thread explain it better than I could. BR, Dennis...
Dennis Brown
see3d
Offline Send Email
Jul 3, 2009
4:00 pm
139929
Ed, For what it is worth, it was your replies to my very first post that got me over the hump and on my way to solving my problem. It was also the spirit and...
Mike
sfclimbers
Offline Send Email
Jul 3, 2009
4:33 pm
139930
Could you please post the code that now runs? I am also interested in pyramiding on the short side and would like to see how you programmed it. Thanks Larry...
onelkm
Offline Send Email
Jul 3, 2009
4:38 pm
139931
Hi, Amibroker cannot use more than 440 MB RAM even if I set the max. Megabytes to 1000 in the preferences. Also, the cumulative CPU usage cannot be more than...
zozuzoza
Offline Send Email
Jul 3, 2009
5:24 pm
139932
Hello, The RAM usage in the preferences is a maximum limit. If AmiBroker does not need to use that maximum for that particular optimization it won't use that...
Tomasz Janeczko
amibroker
Offline Send Email
Jul 3, 2009
7:22 pm
139933
ok thanks Mike, regards, Ed ... From: Mike To: amibroker@yahoogroups.com Sent: Friday, July 03, 2009 6:32 PM Subject: [amibroker] Re: pyramiding - problems...
Edward Pottasch
ed2000nl
Offline Send Email
Jul 3, 2009
10:01 pm
139934
hi, the code is attached in reply to the first question about pyramiding by gborrageiro. I will post some code what I have on this tomorrow that enters 3...
Edward Pottasch
ed2000nl
Offline Send Email
Jul 3, 2009
10:05 pm
139935
hi, I attach some code that might be interesting to some and illustrates what I was saying about problems when using signals based on a cross. It is based on...
Edward Pottasch
ed2000nl
Offline Send Email
Jul 3, 2009
10:59 pm
Messages 139906 - 139935 of 139936   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help