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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 59651 - 59680 of 143725   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
59651
Maybe there's recent info available on this subject but i don't find it. If it will be available for which date is planned to be? best regards Luigi...
Luigi
mummariello
Offline Send Email
Mar 1, 2004
8:42 am
59652
thx! works for finding the "High". 2 following questions. 1. how to test the high is a real peak? high can be a lower high or a higher high. 2. how to check if...
hongyu lu
hl_107
Offline Send Email
Mar 1, 2004
8:56 am
59653
Hello, The values in the title generated by Plot function are displayed with 2 digits to preserve screen space and this is hard coded in AB (%.2f formatting...
Tomasz Janeczko
amibroker
Offline Send Email
Mar 1, 2004
10:20 am
59654
Good day, I was wondering if the following is possible with AB: I want to count the number of stocks depending on my own criteria, like, something like: Number...
WKRAG@...
koronbock
Offline Send Email
Mar 1, 2004
11:28 am
59655
Hello, is it possible to track the value of a basket of say 20 stocks real-time and then make AB to issue an alert if the basket value (not just an...
IVA GmbH
funnybiz@...
Send Email
Mar 1, 2004
11:50 am
59656
Try this: // Exploration Buy=Sell=Short=Cover=0; SetOption("NoDefaultColumns",False); New10DayHigh = H>Ref(H,-10); CloseUp3 = C>1.03*Ref(C,-1); VolumeUp =...
Herman van den Bergen
psytek2
Offline Send Email
Mar 1, 2004
12:41 pm
59657
Thanks Tomasz...will use the "Title" statement in the mean time... Thanks again. ... with 2 digits ... formatting sequence is used internally). ... this is ......
nurudinkaba
Offline Send Email
Mar 1, 2004
1:58 pm
59658
Hello, is it possible to track the value of a basket of say 20 stocks real-time and then make AB to issue an alert if the basket value (not just an...
IVA GmbH
funnybiz@...
Send Email
Mar 1, 2004
2:20 pm
59659
Herman, thanks a lot! You are a genius! Werner ... the ... Service....
WKRAG@...
koronbock
Offline Send Email
Mar 1, 2004
4:00 pm
59660
George, This may be a start... Plot(C,"",colorBlack,styleCandle); x=!Cum(1)%10; Plot(x,"",colorRed,styleHistogram|styleOwnScale|styleNoLabel); Someone else...
Perry Lentine
perrylentine
Offline Send Email
Mar 1, 2004
4:18 pm
59661
It's quite doable ... as long as your system is not particularly slow ... From: IVA GmbH To: amibroker@yahoogroups.com Sent: Monday, March 01, 2004 3:47 AM ...
Ara Kaloustian
Akaloustian
Offline Send Email
Mar 1, 2004
4:38 pm
59662
Ara, if you donīt mind: would it also be possible to detect stocks that show, letīs say volume of at least 150% of their 50 day moving average volume? I...
IVA GmbH
funnybiz@...
Send Email
Mar 1, 2004
5:26 pm
59663
Thanks Perry Do you remember the heading for that particular email? George Loyd ... From: "Perry Lentine" <lentino@...> To: <amibroker@yahoogroups.com>...
George Loyd
grloyd
Offline Send Email
Mar 1, 2004
5:27 pm
59664
Marcus, Finding the condition is a matter of x=ma(v,50)*1.5...... the challenge is more technical. Esignal will not allow you to scan anywhere near 8000 stocks...
Jayson
jayson2000_2002
Offline Send Email
Mar 1, 2004
5:35 pm
59665
Hi Herman and Werner, In order to insure that today's High 'made a new 10 day high' (ie, is greater than ANY High in the last 10 days), would you not want to...
john gibb
jgibb1us
Offline Send Email
Mar 1, 2004
7:11 pm
59666
Correct statement is: New10DayHigh = HHVBars( H, 10 ) == 0; or (the other way) New10DayHigh = HHV( H, 10 ) == H; Greater then (>) is incorrect because HHV...
Tomasz Janeczko
amibroker
Offline Send Email
Mar 1, 2004
7:15 pm
59667
No... Sorry ... From: George Loyd [mailto:grloyd@...] Sent: Monday, March 01, 2004 10:52 AM To: amibroker@yahoogroups.com Subject: Re: [amibroker]...
Perry Lentine
perrylentine
Offline Send Email
Mar 1, 2004
7:28 pm
59668
When the vertical lines are plotted on the price chart, the standard default horizontal dotted lines on the y-axis are overwritten. How can I restore these...
scourt2000
Offline Send Email
Mar 1, 2004
7:29 pm
59669
Steve, I don't remember telling you that it is not possible to plot grid lines. In fact you just need to go to Indicator Builder and mark "MIDDLE" checkbox in...
Tomasz Janeczko
amibroker
Offline Send Email
Mar 1, 2004
7:51 pm
59670
If I want to backtest with Intraday data (say 15 minute), how can I reference daily indicators and data (e.g., previous close) for the same symbol? Per usual...
danielwardadams
Offline Send Email
Mar 1, 2004
8:15 pm
59671
Tomasz, My original e-mail had to do with changing the background color based on price being above or below a moving average. You provided a solution for me...
scourt2000
Offline Send Email
Mar 1, 2004
8:25 pm
59672
George, I found it... The thread begins at: http://groups.yahoo.com/group/amibroker/message/56143 Perry Lentine ... From: George Loyd...
Perry Lentine
perrylentine
Offline Send Email
Mar 1, 2004
8:40 pm
59673
Yes, these is often an easy answer from the help files TimeFrameGetPrice( "C", inDaily, -1 ) - gives previous day close when working on intraday data Cheers, ...
Graham
kavemanperth
Offline Send Email
Mar 1, 2004
10:13 pm
59674
Was able to snag a copy of Tim's white paper that someone kindly posted on an AB site and just getting to reading it. I remember vaguely some discussion going...
Joseph Landry
rob61roy
Offline Send Email
Mar 1, 2004
10:30 pm
59675
Check the amibroker-ts forum for posts around the jan 13, 2004 with the subject of "# bars loaded" and Cedar Creek Trading as the "from". d _____ From: Joseph...
dingo
dingodigital
Offline Send Email
Mar 1, 2004
10:40 pm
59676
Scourt2000, You can use the PlotGrid() function. Anthony ... From: "scourt2000" <stevehite@...> To: <amibroker@yahoogroups.com> Sent: Monday, March 01,...
Anthony Faragasso
ajf1111us2000
Offline Send Email
Mar 1, 2004
10:49 pm
59677
George, These will plot vertical lines for Month and Day... //Plot(IIf(Day() > Ref(Day(),-1),1,0),"",colorWhite,styleHistogram|styleOwnScale); ...
Anthony Faragasso
ajf1111us2000
Offline Send Email
Mar 1, 2004
10:50 pm
59678
The adaptive T3 DLL was the first posted on the AmiBroker-DLL list (post #6, 5/17/2002) and you can follow the thread there. The HBT3A.DLL can be downloaded...
Herman van den Bergen
psytek2
Offline Send Email
Mar 1, 2004
11:15 pm
59679
Anthony, If I try to use PlotGrid() with the example I've given below, the dots will still not overwrite the areas of the chart that I multi- colored. Plug in...
scourt2000
Offline Send Email
Mar 1, 2004
11:22 pm
59680
Hello again Jayson, your answer is somewhat sobering :-( Would you have a clue how I then could track a stock basketīs value otherwhise in REAL-TIME???? ...
IVA GmbH
funnybiz@...
Send Email
Mar 1, 2004
11:32 pm
Messages 59651 - 59680 of 143725   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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