Hello, Equity plot is correct. This bug affected only single % system drawdown and only in the *portfolio* beta backtest report. As I explained before %...
If we speak for automatic channel recognition, you may see http://www.amibroker.com/library/detail.php?id=105 and find out +ascending channel "a ll" ...
Hello, It makes actually no sense in doing this that way because it will NOT lead to correct results. AGAIN: if you have regular buy/sell/short/cover rules you...
Of course you may transfer the code in any Group or WatchList and see if the results are interesting. I will post a full code, including my reply to Ken. I...
Two new semi-automatic parallel channels are added at http://www.amibroker.com/library/detail.php?id=105 after Phsst interesting request. Dimitris Tsokakis...
Hello, Perhaps I must consider again Darvas Box , the "blind" backtest of darvas is not profitable (depend of course of the test period). probably with a...
... Q3 uploading... (ncftp says we should wait 39 min) Q2 is partial on the server; i have thought I have sent final archive to; unfortunately just after that...
Hi I am just starting to try to "program" AB and one thing I want to do is to put on my (built in) price chart information about the watch list that the ...
Peter, regardless of all I have read in the help files and on this forum I have never been able to do any changes to the built-in charts. I therefor always use...
hi, I'm still in the process of learning AFL I found the following code, // Pullback System # 1 condition1 = ref(c,-2) < ref(c,-3) and ref(c,-1) < ref(c,-2); ...
Hi Steve, Did you manage to upload your presentations to the files section ? Thanks Leo ... was given by my Fort Collins buddy: Dave Chamness. Tell me what...
Hi, All In AA such as Scan or Explore, I was trying to refer hourly price array (close, open, high, low) with hourly bar interval chart. However, what I always...
/* SELECT THE VEHICLE TO TRADE A STOCK OR THE WHOLE MARKET WITH THE CONVEX-CONCAVE PRINCIPLE */ // 1. SMOOTHING PREPARATION function IIR2( input, f0, f1, f2 ) ...
Sjaak, All you have to do in http://groups.yahoo.com/group/amibroker/message/48903 described method refers to the // 2. VEHICLE SELECTION POPULATION=100;// set...
Just change the timeframe in the Settings window of AA Cheers, Graham http://groups.msn.com/ASXShareTrading http://groups.msn.com/FMSAustralia ... From: Harvey...
would be good. in the mean time, I sometimes prefix certain names with a space, to put them at one end as a group. you could also put a digit at the start of...
Dave I suggest you read the release notes provided with the beta release, under section entitled "Things Not Implemented yet in portfolio backtester" Cheers, ...
The 68% thing is essentially the plateau thing. You're right, in the end, you will only select one parameter setting. However, for example, if your test...
doh. I did. hope I'm not being that careless with my coding and system design. wish I slept more/better... dave Dave I suggest you read the release notes...
somewhat, yes, it makes sense. not completely sure how to quantify this though. the range of values constituting a plateau, within which 68% of values should...
Here is Darvas's own description. P.51. "Within this trend stocks moved in a series of frames, or what I began to call "boxes". They would oscillate fairly...
I am try to use the SPX as a signal to buy and sell stocks. When the event happens the first time, it is a buy signal. When the same event happens a day (or...
Hello, It is not available as of now, but of course planned. If you look at the READ ME file accompanying beta you will see the following list: Things NOT...
Hi Stan - how about something like this? fast=5; slow=6; FstC=EMA(C,fast);SloC=EMA(C,slow); Cond1 = Cross(FstC,SloC); Buy= Cond1; Buys = Cum( Buy ); Sell = Buy...