[amibroker] Re: Guppy code- sqeeze and prices is above guppies

2009-08-02 Thread Paul Ho
Can you write down the squeeze in English. I presume Guppysqueeze should be an array of values either 0 or 1, but EMA(C-30) - EMA(C, 60) is a floating point array and EMA(C,60) - EMA(C,60) will always be 0. /Paul. --- In amibroker@yahoogroups.com, "shahariar4" wrote: > > Dear All: > > Below is

[amibroker] Re: multiple db as solutionfor slowness

2009-08-02 Thread Paul Ho
dn = datenum(); select = dn >= startdn and dn < enddn; .. loop if(select[i]) export away --- In amibroker@yahoogroups.com, "murthysuresh" wrote: > > my charts were running slower in 1 minute resolution vs 5 minutes. it turns > out that the culprit was the no of quotes that it was using. s

Re: [amibroker] Re: Windows 7

2009-08-02 Thread Tomasz Janeczko
Yes, as long as you check if all devices you want to connect come with 64-bit drivers compatible with Win7 you can use your existing computer with Win7 64. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: Henrik Rasmussen To: amibroker@yahoogroups.com Sent

RE: [amibroker] PlotShape

2009-08-02 Thread Thomas Z.
Hello, You need to plot the price and to call Equity(1). Short = Cross(C, MA(C, 50)); Cover = 0; ApplyStop( stopTypeNBar, stopModeBars, 1 ); Equity(1); Plot(C, "Price", 1, 128); PlotShapes( Cover* shapeDownArrow, colorRed, 0, H ); Thomas www.PatternExplorer.com ---

[amibroker] Re: A Challenge for all you code wizards .....

2009-08-02 Thread shahariar4
HI NightStalker: Did you find a way to code the guppy sqeeze? If you did, could you pls share that?I am trying a similiar thing... Thanks, Shahariar --- In amibroker@yahoogroups.com, Profernator wrote: > > Hiya , this is what you may need to do : > > sHORT mOVING aVERGAES > SMA1 > SMA2 > SM

[amibroker] Re: Help with trading system

2009-08-02 Thread treatmentinprogress
So what are you looking for? code suggestions or a coder to do this for you? Are you coding this yourself? It's not a 5 minute job to do all these things! --- In amibroker@yahoogroups.com, "pstaffieri" wrote: > > Require a system that is user friendly where I can load on a nightly basis > th

[amibroker] Verifying syntax cause error 29 in all panes

2009-08-02 Thread James
I am working on a formula I cobbled together and if I verify the syntax, it causes error 29 in every pane in every window. The formula is not in any panes or charts. Does anyone know what might be causing this? James

[amibroker] Re: New file uploaded to amibroker

2009-08-02 Thread bluueskyy
RE: ABKeyState plugin I've never tried using it with AA, but you can try it and then put in _Trace statements to see if it is working. I don't have any vision on how it would be useful in AA, but I don't use AA a whole lot either. I primarily use the key capture to assist me in entering inf

[amibroker] Re: New file uploaded to amibroker

2009-08-02 Thread sidhartha70
Do you execute through IB...?? --- In amibroker@yahoogroups.com, "bluueskyy" wrote: > > RE: ABKeyState plugin > > I've never tried using it with AA, but you can try it and then put in _Trace > statements to see if it is working. I don't have any vision on how it would > be useful in AA, but

[amibroker] Re: AB has for Win32 stopped working problem

2009-08-02 Thread pernin22
Hi folks, I join the opinion of Tomasz. BTW, there could be a way to increase the RAM amount This way is at http://www.eboostr.com/ but remenber, it is just a hekp, not THE sikytion to all your memory problems. Regards, --- In amibroker@yahoogroups.com, "Tomasz Janec

[amibroker] Calculate Composites - no ADLine Data

2009-08-02 Thread Patrick
I downloaded an updated version of the AMIBroker data from IntelliCom Consulting. (They are posted in the help area and maintain industry groups ). Anyway. I have used an updated copy from them in the past. I ran Symbols->Calculate Composites -- Checked All Quotes -- Checked number of advancin

[amibroker] Re: Calculate Composites - no ADLine Data

2009-08-02 Thread Patrick
Did some digging, figured out I had to set the base index again after installing a new DB.

[amibroker] Can someone pls help with this coding problem

2009-08-02 Thread iceboundbug
Hello all, I would appreciate if someone can please help with this coding problem - it is detailed in the code itself. Thanks in advance / pi = 3.14; cosinepart[0] = 0; WindowSize = 50; Maxpwr = 0; x = BarIndex(); for( period = 8; period <= Windo

Re: [amibroker] PlotShape

2009-08-02 Thread Rick Osborn
Tried it - didn't work. Seems to me that with Cover = 0, nothing will plot Best Regards Rick Osborn From: Thomas Z. To: amibroker@yahoogroups.com Sent: Sunday, August 2, 2009 6:08:57 AM Subject: RE: [amibroker] PlotShape Hello, You need to plot the pric

Re: [amibroker] PlotShape

2009-08-02 Thread Graham
try this Short = 1; // add this so it will have some entries Cover = 0; ApplyStop( stopTypeNBar, stopModeBars, 1 ); Equity(1,0); CoverPrice=O; PlotShapes( (Cover>0)* shapeDownArrow, colorRed, 0, H ); Equity(1); will only give results after a backtest, Equity(1,0); will show it on the chart wit