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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 120646 - 120675 of 127275   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
120646
Using Amibroker 4.90.5, all of a sudden, over half my window panes in all my layouts are blank except for the message: "Error: Formula file not found or empty...
Keith McCombs
keithmccombs
Offline Send Email
Mar 1, 2008
6:27 pm
120647
Hello, I remember seeing an example to convert Prices coordinates to Pixel coordinates, but i can't find it. Would anyone remember how to do it? Many thanks! ...
Herman
psytek2
Offline Send Email
Mar 1, 2008
6:51 pm
120648
I do not know what message number it the below was so just copied it from my favorites under low level graphics. Begin: Patrick, No, it is not on to-do list. ...
Jerry Gress
thegress
Offline Send Email
Mar 1, 2008
7:05 pm
120649
Hi Guys, I am doing some optimization on a system and ran into a small problem. If I am optimizing with a minimum volume parameter I get many more trades with...
Sidney Kaiser
skbiker
Offline Send Email
Mar 1, 2008
7:16 pm
120650
Thank you! that will do. I wonder however how GraphxSpace = figures in this. I'll have to test it. thanks again! herman For tips on developing Real-Time...
Herman
psytek2
Offline Send Email
Mar 1, 2008
7:56 pm
120651
I just can't manage to line up pixel plots with price charts. I copy my testing code below. I need is to line up horizontal and vertical lines produced with...
Herman
psytek2
Offline Send Email
Mar 1, 2008
10:38 pm
120652
How does the area devoted to the x/y axes and their labels figure into this? Doesn't this assume that 100% of the pane is devoted to chart data? Joseph Biran ...
J. Biran
jbiran
Offline Send Email
Mar 1, 2008
11:02 pm
120653
Anybody can help? Thanks, Louis ... return of...
louisprefontaine
louisprefont...
Offline Send Email
Mar 1, 2008
11:19 pm
120654
I am tring to make sure the scaling works well. i always had trouble on charts when there are 1-2 vol bars that are > 7 times 15 day ma volume. the subsequent...
murthysuresh
Offline Send Email
Mar 1, 2008
11:41 pm
120655
I've been using AB for years, but I'm not much of a programmer and have never delved into the custom backtester. Could someone point me to some good sample...
ges
gesges
Offline Send Email
Mar 1, 2008
11:41 pm
120656
When I draw lines using GFX they cover the entire AmiBroker window, including the area over the axis. Also consider the effect of GrapxSpace. See my demo code...
Herman
psytek2
Offline Send Email
Mar 1, 2008
11:53 pm
120657
Wouldn't you basically just want to cap the big-volume days? You could try playing with this to see if it gives what you want... Steve AvgVol = LastValue( MA(...
Steve Dugas
djs44us
Offline Send Email
Mar 2, 2008
1:17 am
120658
Herman, Perhaps if you make 4 params, 2 for x axis, and 2 for y axis for -- scaling m + offset b: mx+b. Then adjust the parameters visually in real time until...
Dennis Brown
see3d
Offline Send Email
Mar 2, 2008
1:19 am
120659
Are you concerned that the highest bar in the default version is not the highest in the scaled version? As for printing unscaled volume values you can use...
wavemechanic
wd13x6
Offline Send Email
Mar 2, 2008
1:33 am
120660
Hello All, Can anyone offer some help regarding a coding problem, which I'm having? Basically I want to search for a "pattern" which consists of: 1. On the...
chorlton_c_hardy
chorlton_c_h...
Offline Send Email
Mar 2, 2008
3:32 am
120661
Like This? Detrend = Close * log (Ref(O,-2) / Ref(O,-1)) - log(MA(C/Ref(C,-1),BarIndex()-1)); Plot(Detrend,"Detrended Returns",6,1); Plot(0.00,"",2,1); ... ...
Mr. Valley
valleymj
Offline Send Email
Mar 2, 2008
3:37 am
120662
Hi again, In addition to my original question, I will need to add further conditions which will allow me to assess each of the various bars of the complete...
chorlton_c_hardy
chorlton_c_h...
Offline Send Email
Mar 2, 2008
3:42 am
120663
The approach I would take is to create a single indicator from your two, taking the difference. Then I would loop through all the bars looking for the start...
Dennis Brown
see3d
Offline Send Email
Mar 2, 2008
3:49 am
120664
Something Like this? IndA= Close; IndB = MA(Ref(C,-5),5); Middle = Close < MA(C,34); Cond1 = Cross(IndA,IndB); Cond2 = Cross(IndA,IndB); Cond3 = Middle ; ...
Mr. Valley
valleymj
Offline Send Email
Mar 2, 2008
3:56 am
120665
Hi Dennis, Thanks for the prompt reply. Please accept my apologies but I'm a newbie to AB (and progamming) so would really welcome some further help if thats...
chorlton_c_hardy
chorlton_c_h...
Offline Send Email
Mar 2, 2008
4:18 am
120666
Hi Mr Valley, Thanks for the reply & the code. Would it be possible for you to explain a few things though as my coding knowledge is pretty basic? 1. I think...
chorlton_c_hardy
chorlton_c_h...
Offline Send Email
Mar 2, 2008
4:34 am
120667
Please explain what IndA and IndB are as it would make it much easier to determine what you are trying to accomplish? Example? ... From:...
Mr. Valley
valleymj
Offline Send Email
Mar 2, 2008
4:41 am
120668
Rounding off my contribution on this topic. Most of my work, so far, has been based around EOD data (exclusively in stocks). I consider that daily bars are the...
brian_z111
Offline Send Email
Mar 2, 2008
4:47 am
120669
For the philosophers. Speaking rather loosely, I think we can consider CHAOS as absolute (randomess) OR as unitary dis-order. As a metaphysician I also have to...
brian_z111
Offline Send Email
Mar 2, 2008
4:55 am
120670
Of course, no worries. Ind_A = Daily Range of an individual Bar (diff between High & Low) Ind_B = Smoothed version of the above In this example I want to find...
chorlton_c_hardy
chorlton_c_h...
Offline Send Email
Mar 2, 2008
5:07 am
120671
The indicator conditions (above and below) can be defined with cross(a, b) and cross(b, a). Getting info on the bars between those two points can be done by...
wavemechanic
wd13x6
Offline Send Email
Mar 2, 2008
5:27 am
120672
Do you mean like this? IndA= Ref(H,-1)-Ref(L,-1); IndB = EMA(IndA,14 ); Middle = IndA < IndB ; Plot(IndA,"Daily Range",5,1); Plot(IndB ,"Smooth Daily...
Mr. Valley
valleymj
Offline Send Email
Mar 2, 2008
6:07 am
120673
I asked this before and got some info from Herman and others, it seems like it is possible After thinking about it this is what I come up with: Have a...
Kendall "Bruce" Hawkins
tonkadad
Offline Send Email
Mar 2, 2008
6:09 am
120674
Hi members, I have a small list of scrips in Favourites List. When I use short cut keys "Alt + RightArrow" for changing symbols within favourites, i get the...
umrperumal
Offline Send Email
Mar 2, 2008
6:22 am
120675
Hi Bill, Thanks for your comments. I'll take a look at the BarIndex() function and see what example code is available. Cheers... ... (a, b) and cross(b, a)....
chorlton_c_hardy
chorlton_c_h...
Offline Send Email
Mar 2, 2008
6:32 am
Messages 120646 - 120675 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