Re: [amibroker] ADLine tutorial question

2010-03-24 Thread Paul Radge
Has anyone else been able to set up the ADLine for asx stocks using the methods described in the tutorial,,,??? - Original Message - From: Paul Radge To: amibroker@yahoogroups.com Sent: Wednesday, March 24, 2010 4:34 AM Subject: [amibroker] ADLine tutorial question

[amibroker] ADLine tutorial question

2010-03-23 Thread Paul Radge
Hi all, I have been reading Weinsteins book about looking for divergence on the NYSE ADLine and then dug around and found ADLine turtorial 4/2000 newsletter.I subscribe to asx data so i thought i'd go ahead and try to create a ADLine using that base index. Following the tutorial; I've

Re: [amibroker] Re: Graphing beyond the data

2009-01-08 Thread Paul Radge
trading days and will often land on non-trading days which cannot be plotted. Depending on what you want, you could put the f dates in the title or use a spreadsheet to calculate and chart the spiral. Bill - Original Message - From: Paul Radge To: amibroker@yahoogroups.com

Re: [amibroker] Re: Graphing beyond the data

2009-01-06 Thread Paul Radge
Pit, i spent sometime with wavemechanic (he's very clever) i put together a spiral ala Carolan but i'm afraid to say that the only way of measuring time was in trading days not Calendar days as per Carolan.I cross checked what i created with true Carolan theory and the error increased with

Re: [amibroker] Re: backtesting a watchlist problem

2008-10-13 Thread Paul Radge
on the best way to test a system is to collect very short time frame data, tick, 5 second or minute and play that back into your formula using BarReplay and see what it does. Intra bar action is a real eye opener. Barry --- In amibroker@yahoogroups.com, "Paul Radge"

Re: [amibroker] Re: backtesting a watchlist problem

2008-10-13 Thread Paul Radge
k, 5 second or minute and play that back into your formula using BarReplay and see what it does. Intra bar action is a real eye opener. Barry --- In amibroker@yahoogroups.com, "Paul Radge" <[EMAIL PROTECTED]> wrote: > > Hi Barry, > Many thanks for your

Re: [amibroker] Re: backtesting a watchlist problem

2008-10-12 Thread Paul Radge
a, "Slow MA(" + NumToStr(pSlow, 1.0) + ")", colorRed,styleLine); PlotShapes(shapeUpArrow * Buy,colorBrightGreen);// PlotShapes(shapeDownArrow * Sell,colorRed); Filter = Buy OR Sell; AddColumn(V,"volume"); AddColumn(RSI(15),"rsi"); --- In amib

[amibroker] backtesting a watchlist problem

2008-10-12 Thread Paul Radge
Hi , Looking for some help again please , re the code below and explorations/backtest reports, r=8; t=13; Plot(Close, "Price", colorBlack, styleBar); Plot(MA(Close,r),"r-MA",colorBlue,styleLine); Plot(MA(Close,t),"t-MA",colorRed,styleLine); MA1length=Optimize("ma1length",3,2,50,1); MA

Re: [amibroker] AFL Wizard or formula editor

2008-10-07 Thread Paul Radge
cond1=ma(c,30); cond2=c; longsetup=cross(cond2,cond1); buy=ref(longsetup,-1); buyprice=open; the only worry here is that i'm able to answer the question , which leads me to believe i'm actually learning, (unless i blew it ?) warm regards Paul - Original Message - From: electricwal

Re: [amibroker] Re: processor power question

2008-10-03 Thread Paul Radge
- In amibroker@yahoogroups.com, "Paul Radge" <[EMAIL PROTECTED]> wrote: > > Hi , > i've recently upgraded my pc to a AMD 9750 quad core with 4 gig of ram ,whilst running a optimization i noticed that the processor's were only running at 25%. >

[amibroker] processor power question

2008-09-30 Thread Paul Radge
Hi , i've recently upgraded my pc to a AMD 9750 quad core with 4 gig of ram ,whilst running a optimization i noticed that the processor's were only running at 25%. In preferences there's cache size and max megabytes settings,,i'm wondering if this is where i can let Amibroker have some m

Re: [amibroker] backtesting

2008-09-29 Thread Paul Radge
: [amibroker] backtesting 1#J is INFINITY. You need to make sure that your positionscore does NOT include division by zero or other calculation that yields infinite result. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: Paul Radge To

[amibroker] backtesting

2008-09-29 Thread Paul Radge
Hi Howard, here's a smagit of an exploration run on the 23rd ,,,a backtest on the 24th had the system pick "AQR" for some reason,as you can see the score column has several of these 1.#J's which is a little odd. i'm not sure this is worth spending much more time on,, regards Paul

Re: [amibroker] backtesting

2008-09-29 Thread Paul Radge
--- Original Message - From: Howard B To: amibroker@yahoogroups.com Sent: Monday, September 29, 2008 9:33 PM Subject: Re: [amibroker] backtesting Hi Paul -- Can you post the code your are using, along with the symbols in the watchlist, and the settings you are using?

Re: [amibroker] Access Violation ??? Amibroker lock up ???

2008-09-28 Thread Paul Radge
well this fault appears to have cleared it's self up , confused, but moving on Paul - Original Message - From: Paul Radge To: amibroker@yahoogroups.com Sent: Monday, September 29, 2008 11:07 AM Subject: [amibroker] Access Violation ??? Amibroker lock up ??? Amibrok

[amibroker] Access Violation ??? Amibroker lock up ???

2008-09-28 Thread Paul Radge
Amibroker is locking up on me when backtesting or exploring ,,, code c005 descrition Access Violation 11181OE7 i'm using version 5.10 (i recently had a new machine built and simply copied the directory's across onto a new hard drive and archived the old one and then updated to v5.10 ,was

Re: [amibroker] backtesting

2008-09-28 Thread Paul Radge
Paul - Original Message - From: Paul Radge To: amibroker@yahoogroups.com Sent: Saturday, September 27, 2008 10:25 PM Subject: Re: [amibroker] backtesting Hi Howard, I just returned from the Alpine region of Victoria and downloaded the mass's of

Re: [amibroker] backtesting

2008-09-27 Thread Paul Radge
, ////// On Mon, Sep 22, 2008 at 4:04 AM, Paul Radge <[EMAIL PROTECTED]> wrote: Hi all, i recently read a few posts here in the forum and learnt about the function "positionscore".As a non

[amibroker] backtesting

2008-09-22 Thread Paul Radge
Hi all, i recently read a few posts here in the forum and learnt about the function "positionscore".As a non programer i find the forum very usefull. From those posts i've tried to follow a similar line and test a day trading system,,,like many of my ideas and notions though it may bar

[amibroker] close to 3 decimal places

2008-01-15 Thread Paul Radge
Hi all, close only goes to 2 decimal places and i'd like to use to 3 decimal places for stocks with prices like 26.5c or 9.6c ie .265 and .096 any advise please, Paul

[amibroker] ma cross over question,,,,,

2007-11-27 Thread Paul Radge
Hi all, can someone please kindly point me in the right direction or simply tell me the answer to this, Filter= ema(c,5)crossed over ema(c,10) ,BUT within the last 10 periods i know how to do it for cross over today but i want the filter to look for the cross over "within" the las