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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 127246 - 127275 of 127275   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
127246
Thanks Buddy. Thanks very much. cas <darshan_age@...> wrote: Hello everyone , to know more on vsa visit this thread ...
Ehtesham
jab_rupkotha05
Offline Send Email
Jul 25, 2008
9:00 am
127247
Still NO GO. I am loading the code in the AA, select a watchlist, run an Individual backtest, and Refresh the WorkSpace. I get the BT report with individual ...
Herman
psytek2
Offline Send Email
Jul 25, 2008
9:36 am
127248
Works for me. _____ From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf Of Herman Sent: Friday, 25 July 2008 7:37 PM To:...
Paul Ho
paultsho
Offline Send Email
Jul 25, 2008
9:46 am
127249
Herman, You forgot the CORRECTION I mentioned: StaticVarSetText( "Symbol", Name() ); must NOT be called unconditionally, but THIS way: ...
Tomasz Janeczko
amibroker
Offline Send Email
Jul 25, 2008
9:49 am
127250
Thanks Paul, please confirm that you see an individual composite for each ticker tested in the watchlist. if you do, please explain your procedure. I use AB...
Herman
psytek2
Offline Send Email
Jul 25, 2008
9:54 am
127251
Herman I used Tomasz's correction and I got a composite for each symbol in the watchlist. _____ From: amibroker@yahoogroups.com...
Paul Ho
paultsho
Offline Send Email
Jul 25, 2008
10:07 am
127252
Thank you TJ :-) you saved the day once more ! Great stuff. If someone is wondering why I wanted this program... You can design trading systems and use...
Herman
psytek2
Offline Send Email
Jul 25, 2008
10:14 am
127253
Dear sir, i also want to draw the bottom line and top line in the candle...of 12'o Clock one hour  candle..in automatic while 5 min chart...going time...pls...
Manikandan MS
projectmani
Offline Send Email
Jul 25, 2008
10:18 am
127254
Fred, thanks for the new version. However, I'm afraid that the zip file is not complete. I can't find the afl files and IO.ico. Regards, Thomas...
Thomas Ludwig
tlu1024
Offline Send Email
Jul 25, 2008
12:13 pm
127255
Hi, I'm trying to calculate a moving average over a number of values which are based on a certain condition. For example (if close > 20 period MA, return range...
pmxgs
Offline Send Email
Jul 25, 2008
2:27 pm
127256
Hello, This is just something I was wondering about because some traders I know use TS and might get AB if they think they could get a significant speed...
Dennis Brown
see3d
Offline Send Email
Jul 25, 2008
2:33 pm
127257
Hello, That depends on the algorithm, number of bars and the coding, but if you are using AmiBroker's array functions you should get speed up from 4x to 20x or...
Tomasz Janeczko
amibroker
Offline Send Email
Jul 25, 2008
2:51 pm
127258
Hi If you go in View…Intraday , you can select if you want to see 24 hours , day only , night only, day and night…etc… If I have a 24 hours a day...
miche1a
Offline Send Email
Jul 25, 2008
3:03 pm
127259
Hi, Try timenum()>093000 and timenum()<160000 for daily. Louis ... Hi, Try timenum()>093000 and timenum()<160000 for daily. Louis 2008/7/25 miche1a <...
Louis P.
rockprog80
Offline Send Email
Jul 25, 2008
3:05 pm
127260
Thanks Tomasz, I will relay the information. Best regards, Dennis...
Dennis Brown
see3d
Offline Send Email
Jul 25, 2008
3:37 pm
127261
hi, i have afl to draw murrey math line. is there any exploration to scan stocks which crosses 1/8 5/8 lines or which is trading betwwen 5/8 and 2/8 line i...
mahest72
Offline Send Email
Jul 25, 2008
3:38 pm
127262
I asked a similar question about nulls in a stdev calculation and received Tomasz answer at http://finance.groups.yahoo.com/group/amibroker/message/127041 Not...
Ken Close
ken45140
Offline Send Email
Jul 25, 2008
6:23 pm
127263
Hello, I'd like to change a calculation as I get within n periods of the end of an array in real time. if (BarIndex() <= LastValue(BarIndex) - n) do this; else...
John Bollinger
bbands
Offline Send Email
Jul 25, 2008
6:56 pm
127264
Hi - Would something like this work for you? NewArray = IIF( BarIndex() <= LastValue(BarIndex) - n, A + B, C + D ); Steve ... From: "John Bollinger"...
Steve Dugas
djs44us
Offline Send Email
Jul 25, 2008
7:15 pm
127265
This may not be exactly what you're looking for, but it does show how to plot a vertical line "n" bars to the left of the last bar. Hope this helps.. Lal ... N...
Lal
klal25
Offline Send Email
Jul 25, 2008
7:59 pm
127266
John, I'm not an afl expert, but think you will need to use a loop. Ex: Z=BarIndex()-LastValue(BarIndex())-n>0; for (i=0; i<Barcount; i++) //you may want to...
monitorit
Offline Send Email
Jul 25, 2008
9:12 pm
127267
Hello, You need to write that way: x = DoThis(); y = DoThat(); result = IIF( BarIndex() <= LastValue( BarIndex() - n, x, y ); In other words perform...
Tomasz Janeczko
amibroker
Offline Send Email
Jul 25, 2008
9:25 pm
127268
Hi, I got the idea for this approach from the AFL Library code for Elder's SafeZone stop. I think it will do what you want. arrayperiod = 20; arrayamounts =...
Joe
j0etr4der
Offline Send Email
Jul 25, 2008
10:55 pm
127269
Hi Ton, Did you try to scroll through data, and change symbols? I still get that empty result for the red line very often... Thanks, Louis ... Hi Ton, Did you...
Louis P.
rockprog80
Offline Send Email
12:43 am
127270
Hello, Is the AFL code for the Linear Regession Study available? I would like to be able to place the study on a chart starting and ending on selscted dates...
gyowell2000
Offline Send Email
1:08 am
127271
You can play with the code below, but please verify its accuracy. herman function DrawLinRegLine( LastPoint, LookBack, Array, Extend ) { BI = BarIndex(); ...
Herman
psytek2
Offline Send Email
1:59 am
127272
take a look at the canned indicator for portfolio equity. It has an option for linear Reg. just port it over to your own need. _____ From:...
Paul Ho
paultsho
Offline Send Email
3:39 am
127273
When I use the following, and Explore in Automatic Analysis, I get the result as 'B' or 'S'. AddColumn(IIf( RSI() ,66,83),"RSI",formatChar, IIf( RSI() >= 45 OR...
Vinay Gakkhar.
vgakkhar
Offline Send Email
4:10 am
127274
When I use the following, and Explore in Automatic Analysis, I get the result as 'B' or 'S'. AddColumn (IIf( RSI() ,66,83),"RSI", formatChar, IIf( RSI() >= 45...
Vinay Gakkhar.
vgakkhar
Offline Send Email
4:14 am
127275
Use this Addcolumn(IIF(RSI()>45, ASC("Y"), ASC("N")), "RSI", formatchar,......)...
Paul Ho
paultsho
Offline Send Email
4:55 am
Messages 127246 - 127275 of 127275   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